Browse Source

津补贴初审搜索状态存在问题修复

sugangqiang 9 months ago
parent
commit
3cd25ee940
1 changed files with 3 additions and 3 deletions
  1. 3 3
      app/admin/controller/TalentAllowance.php

+ 3 - 3
app/admin/controller/TalentAllowance.php

@@ -1854,7 +1854,7 @@ class TalentAllowance extends AdminController {
             } else {
                 if ($process == 1) {
                     switch ($query["checkState"]) {
-                        case 0:     //保存未提交
+                        case -2:     //保存未提交
                             $where[] = ["checkState", "=", 1];
                             break;
                         case 1:
@@ -1866,11 +1866,11 @@ class TalentAllowance extends AdminController {
                         case 3:     //通过
                             $where[] = ["checkState", "in", [15, 20, 30, 25]];
                             break;
-                        case 4:     //重新提交
+                        case 9:     //重新提交
                             $where[] = ["checkState", "=", 5];
                             $where[] = ["highProcess", ">=", $process];
                             break;
-                        case 5:     //上级驳回
+                        case 4:     //上级驳回
                             $where[] = ["checkState", "=", 13];
                             break;
                     }