|
@@ -318,7 +318,7 @@ class Talent extends AdminController {
|
|
|
$parent_industry_fields = implode(",", $industry_field_new);
|
|
|
$where[] = ["d2.code", "in", $parent_industry_fields];
|
|
|
$industry_field_old = \app\common\model\Dict::alias("d1")->field("d1.*,d2.`name` as pname")->leftJoin("new_talent_dict d2", "d1.pid=d2.id")->order("name asc")->where($where)->select();
|
|
|
- return ["enterprise" => $enterprises, "talent_conditions" => $conditions, "industry_field_old" => $industry_field_old];
|
|
|
+ return ["enterprises" => $enterprises, "talent_conditions" => $conditions, "industry_field_old" => $industry_field_old];
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -1011,7 +1011,7 @@ class Talent extends AdminController {
|
|
|
}
|
|
|
if ($unpass_companyIds) {
|
|
|
sort($unpass_companyIds);
|
|
|
- $delay = 7 * 24 * 3600; //7天的秒数
|
|
|
+ $delay = 9 * 24 * 3600; //9天的秒数
|
|
|
queue("app\job\Talent", ["type" => 1, "id" => $talent_info["id"]], $delay); //加入部门审核超期处理队列,延迟7天执行
|
|
|
TalentLogApi::writeDeptLogs($talent_info["id"], $unpass_companyIds, TalentState::FST_VERIFY_PASS);
|
|
|
|