付款申请单 候补发票

This commit is contained in:
程小伟 2025-05-12 17:50:50 +08:00
parent 842c50ca6a
commit df607a24d3
1 changed files with 8 additions and 3 deletions

View File

@ -101,9 +101,14 @@ public class SupplementInvoiceBillPlugin extends PaymentApplyEditUI {
}
SaveServiceHelper.save(invArr);//发票保存
log.info("SupplementInvoiceBillPlugin:发票保存");
this.getView().showTipNotification("保存成功");
if(invArr.length>0){
SaveServiceHelper.save(invArr);//发票保存
log.info("SupplementInvoiceBillPlugin:发票保存");
this.getView().showTipNotification("保存成功");
}else{
this.getView().showTipNotification("发票保存失败!");
}
}
}