|
@@ -749,17 +749,21 @@ class VerifyApi {
|
|
|
}
|
|
|
if ($item["state"] == TalentState::SCND_SUBMIT) {
|
|
|
if ($item["last_state"] == TalentState::FST_VERIFY_REJECT) {
|
|
|
- $item["checkState"] = "待审核(重新提交)";
|
|
|
+ $item["checkState"] = "待初审(重新提交)";
|
|
|
} else {
|
|
|
- $item["checkState"] = "待初审";
|
|
|
+ $item["checkState"] = "待初审(首次提交)";
|
|
|
}
|
|
|
} else if ($item["state"] == TalentState::FST_VERIFY_PASS) {
|
|
|
if (!$item["companyIds"] || $item["pass_dept_check"] == 1) {
|
|
|
- $item["checkState"] = "初审通过,待复审";
|
|
|
+ $item["checkState"] = "待复核(初审通过)";
|
|
|
}
|
|
|
if ($item["pass_dept_check"] == 0) {
|
|
|
- $item["checkState"] = "初审通过,待部门审核";
|
|
|
+ $item["checkState"] = "待部门并审";
|
|
|
}
|
|
|
+ } else if ($item["state"] == TalentState::DEPT_VERIFY_REJECT) {
|
|
|
+ $item["checkState"] = "待初审(部门并审驳回)";
|
|
|
+ } else if ($item["state"] == TalentState::DEPT_VERIFY_PASS) {
|
|
|
+ $item["checkState"] = "待复核(部门并审通过)";
|
|
|
} else {
|
|
|
$item["checkState"] = TalentState::getStateName($item["state"]);
|
|
|
}
|