瀏覽代碼

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

sugangqiang 2 年之前
父節點
當前提交
36ca09f907
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);