Browse Source

驳回时状态值改正

wufeng 2 years ago
parent
commit
7cc6d611d2
1 changed files with 7 additions and 1 deletions
  1. 7 1
      app/admin/controller/Payment.php

+ 7 - 1
app/admin/controller/Payment.php

@@ -1710,7 +1710,7 @@ class Payment extends BaseController
 
         $val_hpNo = Validate::rule([
             'hpNo|回票申请编号' => 'require',
-            'status|审核状态' => 'require|number|in:4,7',
+            'status|审核状态' => 'require|number|in:4,9',
             'remark|审核备注' => 'requireIf:status:7|max:255'
         ]);
 
@@ -1774,4 +1774,10 @@ class Payment extends BaseController
         }
 
     }
+
+
+    //批量添加发票信息
+    
+
+
 }