Commit d2c0fb16 by jianshuqin

修复BUG:费用类型的ERP会计科目为空时出纳回调失败问题

parent aed1b4b3
......@@ -467,7 +467,7 @@ public abstract class AbstractCostService implements CostService {
List<NetsuiCostinfoDto> netsuiCostInfoDtos = new ArrayList<>();
//费用系统信息
NetsuiCostinfoDto feeSysInfo = new NetsuiCostinfoDto(
costTypeResult.getNsAccountingSubjectId().toString(),
costTypeResult.getNsAccountingSubjectId() != null ? costTypeResult.getNsAccountingSubjectId().toString() : "0",
costDomain.getAmount().toString(),
costDomain.getCostReason()
);
......
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