|
@@ -1040,7 +1040,7 @@ class VerifyApi {
|
|
|
if($params['select_contract'] == '1'){
|
|
|
$temp_contract = explode(' - ',$item['labor_contract_rangetime']);
|
|
|
//dump($temp_contract);die;
|
|
|
- if(strtotime($temp_contract[1]) > time()){
|
|
|
+ if(strtotime($temp_contract[1]) > time() || $item['active'] == 0){
|
|
|
unset($list[$kkk]);
|
|
|
continue;
|
|
|
}
|
|
@@ -1089,7 +1089,7 @@ class VerifyApi {
|
|
|
}
|
|
|
} else if ($item["state"] == TalentState::FST_VERIFY_PASS || (!$item["state"] && $item["deptCheckState"])) {
|
|
|
if ($item["deptCheckState"]) {
|
|
|
- if (($item["acitve"] == 0 && $item["state"] == TalentState::FST_VERIFY_PASS) || !$item["active"]) {
|
|
|
+ if (($item["active"] == 0 && $item["state"] == TalentState::FST_VERIFY_PASS) || !$item["active"]) {
|
|
|
if ($item["resubmit"]) {
|
|
|
$item["checkState"] = "待部门并审(重新提交)";
|
|
|
} else {
|