|
@@ -500,12 +500,11 @@ class Talent extends AdminController {
|
|
|
return $this->fstSubmitCheck($talent_info);
|
|
|
} else if ($checkState == TalentState::FST_VERIFY_PASS) {
|
|
|
$condition = TalentConditionApi::getOne($talent_info["talent_condition"]);
|
|
|
- $companys = array_filter(impolode(",", $condition["companyIds"]));
|
|
|
+ $companys = array_filter(explode(",", $condition["companyIds"]));
|
|
|
if ($companys) {
|
|
|
- $companyIds = array_filter(explode(",", $companys));
|
|
|
- if (in_array($this->user["companyId"], $companyIds))
|
|
|
+ if (in_array($this->user["companyId"], $companys))
|
|
|
return json(["msg" => "你的部门不在并审部门列表"]);
|
|
|
- return $this->deptSubmitCheck($talent_info, $companyIds);
|
|
|
+ return $this->deptSubmitCheck($talent_info, $companys);
|
|
|
} else {
|
|
|
return $this->reSubmitCheck($talent_info);
|
|
|
}
|