Browse Source

费用限制错误问题

梁世豪 5 months ago
parent
commit
275d040361
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/resources/templates/annualbudget/add_apply.html

+ 2 - 2
src/main/resources/templates/annualbudget/add_apply.html

@@ -3498,11 +3498,11 @@
3498 3498
                 Message.error("费用申请的总金额,不能超过年度总预算!", 2000);
3499 3499
                 return false;
3500 3500
             } else if ($("#fjmc").val().indexOf("业务费") > -1) {
3501
-                if (sqje + ysqje > ysje * 1.2) {
3501
+                if (ysqje > ysje * 1.2) {
3502 3502
                     Message.error("业务费申请的总金额,不能超过预算金额的20%!", 2000);
3503 3503
                     return false;
3504 3504
                 }
3505
-            } else if (sqje+ysqje > ysje) {
3505
+            } else if (ysqje > ysje*1.2) {
3506 3506
                 Message.error("该科目申请的费用总金额,不能超过预算金额!", 2000);
3507 3507
                 return false;
3508 3508
             }