Browse Source

资金支付功能修改

ellisran 9 months ago
parent
commit
0b96af4337
1 changed files with 6 additions and 1 deletions
  1. 6 1
      app/public/js/financial_pay_detail.js

+ 6 - 1
app/public/js/financial_pay_detail.js

@@ -679,7 +679,12 @@ function checkStartFrom() {
     }
     if (notBills.length > 0) {
         for (const c of notBills) {
-            toastr.error(`合同${c.c_code}未上传发票`);
+            if (c.cid) {
+                toastr.error(`合同 ${c.c_code} 未上传发票`);
+            } else {
+                toastr.error(`收款单位 ${c.entity} 未上传发票`);
+            }
+
         }
         return false;
     }