Selaa lähdekoodia

修改部门自动驳回时如果highProcess没有大于3(如果没有曾经通过部门或者通过复审都不会大于3),则等于3

sugangqiang 2 vuotta sitten
vanhempi
commit
36ca09f907
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      app/job/Talent.php

+ 1 - 1
app/job/Talent.php

@@ -105,7 +105,7 @@ class Talent {
                         $save["id"] = $talent_info["id"];
                         $save["modify_files"] = implode(",", $modify_files);
                         $save["checkState"] = $checkState;
-                        $save["highProcess"] = $talent_info["highProcess"] > 4 ? $talent_info["highProcess"] : 4;
+                        $save["highProcess"] = $talent_info["highProcess"] > 3 ? $talent_info["highProcess"] : 3;
                         $save["first_dept_check_time"] = null;
                         $save["re_check_companys"] = null;
                         TalentModel::update($save);