Commit 861e82e1 by jianshuqin

修复提交借还单异常问题

parent 015c895b
......@@ -138,8 +138,10 @@ public abstract class AbstractCostPlanService implements CostPlanService {
costPlanDomain.setTypeId(costTypeDomain.getId());
costPlanDomain.setTypeNo(costTypeDomain.getTypeNo());
costPlanDomain.setTypeName(costTypeDomain.getTypeName());
costPlanDomain.setAccountingSubjectId(accountingSubject.getId());
costPlanDomain.setAccountingSubjectName(accountingSubject.getName());
if (accountingSubject != null) {
costPlanDomain.setAccountingSubjectId(accountingSubject.getId());
costPlanDomain.setAccountingSubjectName(accountingSubject.getName());
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment