|
@@ -29,58 +29,25 @@ class ExpireVerifyChecker extends Command {
|
|
|
}
|
|
|
|
|
|
protected function execute(Input $input, Output $output) {
|
|
|
- $data["id"] = 2;
|
|
|
- $data["updateTime"] = date("Y-m-d H:i:s");
|
|
|
- Db::table("new_schedule")->save($data);exit();
|
|
|
$where = [];
|
|
|
$where[] = ["active", "=", 1];
|
|
|
$where[] = ["type", "=", \app\common\state\ProjectState::TALENT];
|
|
|
- $batch = \app\common\model\Batch::where($where)->find();
|
|
|
- if ($batch && $batch["submitEndTime"] && strtotime($batch["submitEndTime"]) < time()) {
|
|
|
- //存在激活的批次,并且有设置提交截止时间,且已经超过截止时间,则检查此批次的申报是否存在尚在审批的申请(不包括通过复审的申请),全部以失败处置
|
|
|
- }
|
|
|
-
|
|
|
- $where[] = ["e.type", "=", 1];
|
|
|
- $where[] = ["ti.checkState", "=", TalentState::SCND_SUBMIT];
|
|
|
- $where[] = ["tl.state", "in", [TalentState::SCND_SUBMIT, TalentState::DEPT_VERIFY_REJECT, TalentState::REVERIFY_REJECT]];
|
|
|
- $jjrc_count = Talent::alias("ti")
|
|
|
- ->leftJoin("un_enterprise e", "e.id=ti.enterprise_id")
|
|
|
- ->leftJoin("(select mainId,last_state,new_state,state,createTime from new_talent_checklog where md5(concat(createTime,mainId,`type`)) in (select md5(concat(max(createTime),mainId,`type`)) from `new_talent_checklog` where `type`=1 and `step` is null and active=1 and typeFileId is null group by mainId,`type`)) tl", "`tl`.`mainId`=ti.id")
|
|
|
- ->where($where)->count();
|
|
|
-
|
|
|
- $where = [];
|
|
|
- $where[] = ["e.type", "=", 2];
|
|
|
- $where[] = ["ti.checkState", "=", TalentState::SCND_SUBMIT];
|
|
|
- $where[] = ["tl.state", "in", [TalentState::SCND_SUBMIT, TalentState::DEPT_VERIFY_REJECT, TalentState::REVERIFY_REJECT]];
|
|
|
- $ic_count = Talent::alias("ti")
|
|
|
- ->leftJoin("un_enterprise e", "e.id=ti.enterprise_id")
|
|
|
- ->leftJoin("(select mainId,last_state,new_state,state,createTime from new_talent_checklog where md5(concat(createTime,mainId,`type`)) in (select md5(concat(max(createTime),mainId,`type`)) from `new_talent_checklog` where `type`=1 and `step` is null and active=1 and typeFileId is null group by mainId,`type`)) tl", "`tl`.`mainId`=ti.id")
|
|
|
- ->where($where)->count();
|
|
|
- $codes = ["talentInfo_first"];
|
|
|
- $menuIds = MenuApi::getMenuIdsByCodes($codes);
|
|
|
-
|
|
|
- $where = [];
|
|
|
- $where[] = ["menuid", "in", $menuIds];
|
|
|
- $roleIds = SysRelation::where($where)->group("roleid")->having("count(*)=" . count($codes))->column("roleid");
|
|
|
-
|
|
|
- $where = [];
|
|
|
- $where[] = ["status", "=", 1];
|
|
|
- $where[] = ["roleid", "<>", 1];
|
|
|
- $regstr = ",(" . implode("|", $roleIds) . "),";
|
|
|
- $whereRaw = "concat(',',roleid,',') REGEXP '$regstr'";
|
|
|
- $users = User::where($where)->whereRaw($whereRaw)->select();
|
|
|
- foreach ($users as $user) {
|
|
|
- switch ($user["type"]) {
|
|
|
- case 1:
|
|
|
- if ($jjrc_count > 0 && $user["phone"]) {
|
|
|
- queue("app\job\Messenger", ["type" => 2, "userId" => $user["id"], "name" => $user["name"], "phone" => $user["phone"], "count" => $jjrc_count]);
|
|
|
- }
|
|
|
- break;
|
|
|
- case 2:
|
|
|
- if ($ic_count > 0 && $user["phone"]) {
|
|
|
- queue("app\job\Messenger", ["type" => 2, "userId" => $user["id"], "name" => $user["name"], "phone" => $user["phone"], "count" => $ic_count]);
|
|
|
- }
|
|
|
- break;
|
|
|
+ $whereRaw = sprintf("submitEndTime is not null and submitEndTime<>'' and submitEndTime < '%s'", date("Y-m-d H:i:s"));
|
|
|
+ $batchs = \app\common\model\Batch::where($where)->whereRaw($whereRaw)->select();
|
|
|
+ if ($batchs) {
|
|
|
+ unset($where);
|
|
|
+ //存在激活的批次,并且有设置提交截止时间,且已经超过截止时间,则检查此批次的申报是否存在驳回或者尚在保存未提交状态
|
|
|
+ foreach ($batchs as $batch) {
|
|
|
+ $where[] = ["e.type", "=", $batch["source"]];
|
|
|
+ $where[] = ["ti.checkState", "=", TalentState::SCND_SAVE];
|
|
|
+ $where[] = ["apply_year", "in", $batch["batch"]];
|
|
|
+ $list = Talent::alias("ti")
|
|
|
+ ->leftJoin("un_enterprise e", "e.id=ti.enterprise_id")
|
|
|
+ ->field("ti.*,e.type as enterpriseType")
|
|
|
+ ->where($where)->select();
|
|
|
+ foreach ($list as $ti) {
|
|
|
+ queue("app\job\Talent", ["type" => 2, "talentInfo" => $ti]);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|