demand: TMS-客户账单管理--业务销账申请、财务中心销账审核、修改销账申请-增加校验-申请金额 + 已收金额 <= 运费

committer: heyu
This commit is contained in:
aike 2025-10-29 18:52:48 +08:00
parent 26b2a14a38
commit 119400c7c3

View File

@ -148,7 +148,7 @@ public class EmisWriteoffApplyServiceImpl extends EmisBaseService implements IEm
if (detail.getEmisSettleSubBill() == null) {
throw new EmisBizError("运单号 " + detail.getBillCode() + " 的子账单信息为空");
}
BigDecimal recMoney = detail.getEmisSettleBill().getRecMoney();
BigDecimal recMoney = detail.getEmisSettleSubBill().getBillFee();
if (recMoney == null) {
throw new EmisBizError("运单号 " + detail.getBillCode() + " 的账单应收金额为空");
}