Merge pull request 'demand: 业务确认账单报错修复' (#255) from develop into master

Reviewed-on: http://git.xdadan.loc/tanex/emis-service/pulls/255
This commit is contained in:
heyu 2025-12-03 17:57:09 +08:00
commit bd6251fa06

View File

@ -467,7 +467,10 @@ public class EmisSettleSubBillController extends EmisBaseController
bug:1688
调整为现金保留自动确认,月结调整为不自动确认
*/
EmisWaybill waybill=emisBaseService.getWaybillByBillCode(old.getBillNo());
EmisWaybill waybill = emisBaseService.getWaybillByBillCode(old.getBillNo());
if (waybill.getRealFee() == null) {
return AjaxResult.success("确认成功");
}
if(
!"2".equals(waybill.getPaymentType())
&& !"4".equals(waybill.getPaymentType())