| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 | <?phpnamespace app\common\api;use app\enterprise\model\Talent;use app\common\api\DictApi;use app\admin\model\Enterprise;use think\facade\Db;use app\common\model\TalentCondition;/** * Description of VerifyApi * * @author sgq */class VerifyApi {    public static function getTalentInfoById($id) {        $where = [];        $where[] = ["id", "=", $id];        $info = Talent::findOrEmpty($id)->toArray();        if ($info) {            if ($info["talent_type"]) {                $info["talentTypeName"] = DictApi::selectByParentCode("talent_type")[$info["talent_type"]];            }            if ($info["nationality"]) {                $info["nationalityName"] = DictApi::selectByParentCode("nationality")[$info["nationality"]];            }            if ($info["nation"]) {                $info["nationName"] = DictApi::selectByParentCode("nation")[$info["nation"]];            }            if ($info["politics"]) {                $info["politicsName"] = DictApi::selectByParentCode("politics")[$info["politics"]];            }            if ($info["province"]) {                $info["provinceName"] = Db::table("un_common_location")->where("code", "=", $info["province"])->findOrEmpty()["name"];            }            if ($info["city"]) {                $info["cityName"] = Db::table("un_common_location")->where("code", "=", $info["city"])->findOrEmpty()["name"];            }            if ($info["county"]) {                $info["countyName"] = Db::table("un_common_location")->where("code", "=", $info["county"])->findOrEmpty()["name"];            }            $enterprise = Enterprise::findOrEmpty($info["enterprise_id"])->toArray();            $info["enterpriseName"] = $enterprise["name"];            if ($enterprise["street"]) {                $info["street"] = $enterprise["street"];                $info["streetName"] = DictApi::selectByParentCode("street")[$enterprise["street"]];            }            if ($enterprise["industryFieldNew"]) {                $info["industryFieldName"] = DictApi::selectByParentCode("industry_field")[$enterprise["industryFieldNew"]];            }            if ($enterprise["enterpriseTag"]) {                $info["enterpriseTagName"] = DictApi::selectByParentCode("enterprise_tag")[$enterprise["enterpriseTag"]];            }            if ($info["headimgurl"]) {                $info["headimgurl"] = "/storage/" . $info["headimgurl"];            }            if ($info["talent_arrange"]) {                $info["talentArrangeName"] = DictApi::selectByParentCode("talent_arrange")[$info["talent_arrange"]];            }            if ($info["import_way"]) {                $info["importWayName"] = DictApi::selectByParentCode("import_way")[$info["import_way"]];            }            if ($info["source"]) {                $info["sourceName"] = DictApi::selectByParentCode("source")[$info["source"]];            }            if ($info["source_city"]) {                $info["sourceCityName"] = Db::table("un_common_location")->where("code", "=", $info["source_city"])->findOrEmpty()["name"];            }            if ($info["source_county"]) {                $info["sourceCountyName"] = Db::table("un_common_location")->where("code", "=", $info["source_county"])->findOrEmpty()["name"];            }            if ($info["highest_degree"]) {                $info["highestDegreeName"] = DictApi::selectByParentCode("highest_degree")[$info["highest_degree"]];            }            if ($info["talent_condition"]) {                $info["talentConditionName"] = \app\common\model\TalentCondition::findOrEmpty($info["talent_condition"])["name"];            }        }        return $info;    }    public static function getOne($id) {        return Talent::findOrEmpty($id);    }    public static function getDeptList($request) {        $where = [];        $order = trim($request->param("order")) ?: "desc";        $offset = trim($request->param("offset")) ?: 0;        $limit = trim($request->param("limit")) ?: 10;        $where[] = ["ti.checkState", "=", 7];        $where[] = ["ti.pass_dept_check", "=", 0];        $companyId = session("user")["companyId"];        $enterprise_tag_kvs = DictApi::selectByParentCode("enterprise_tag");        $count = Talent::alias("ti")                        ->leftJoin("new_talent_condition tc", "tc.id=ti.talent_condition")                        ->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")                        ->where($where)                        ->whereRaw("find_in_set(:companyId,companyIds)", ["companyId" => $companyId])->count();        $list = Talent::alias("ti")                        ->leftJoin("new_talent_condition tc", "tc.id=ti.talent_condition")                        ->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")                        ->where($where)                        ->whereRaw("find_in_set(:companyId,companyIds)", ["companyId" => $companyId])                        ->field("ti.*,e.name as enterprise_name,e.type as enterprise_type,enterpriseTag")                        ->limit($offset, $limit)->order("ti.createTime " . $order)                        ->select()->toArray();        foreach ($list as &$item) {            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江优秀人才" : "集成电路优秀人才";            $item["enterprise_tag"] = $enterprise_tag_kvs[$item["enterpriseTag"]];        }unset($item);        return ["total" => $count, "rows" => $list];    }    public static function getPublicList($params) {        $order = $params["order"];        $offset = $params["offset"];        $limit = $params["limit"];        $where = [];        if ($params["name"]) {            $where[] = ["ti.name", "like", "%" . $params["name"] . "%"];        }        if ($params["sex"]) {            $where[] = ["ti.sex", "=", $params["sex"]];        }        if ($params["checkState"]) {            $where[] = ["ti.checkState", "=", $params["checkState"]];        }        $type = $params["type"];        switch ($type) {            case 1:            case 2:                $where[] = ["ti.isPublic", "=", 1];                $where[] = ["ti.checkState", "in", [11, 13]];                break;            case 3:             //公示            case 7:             //公示预览                $where[] = ["ti.isPublic", "=", 2];                $where[] = ["ti.checkState", "in", [11, 13]];                break;            case 4:                $where[] = ["ti.isPublic", "=", 3];                $where[] = ["ti.checkState", "in", [11, 13]];                break;            case 5:            case 8:             //公布预览                $where[] = ["ti.isPublic", "=", 4];                $where[] = ["ti.checkState", "in", [11, 13]];                break;            case 6:                $where[] = ["ti.isPublic", "=", 5];                $where[] = ["ti.checkState", "in", [11, 13]];                break;        }        $enterprise_tag_kvs = DictApi::selectByParentCode("enterprise_tag");        $count = Talent::alias("ti")->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")->where($where)->count();        $list = Talent::alias("ti")->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")                        ->where($where)                        ->limit($offset, $limit)                        ->order("ti.createTime " . $order)->field("ti.*,e.name as enterpriseName,e.type as enterprise_type,enterpriseTag")->select()->toArray();        foreach ($list as &$item) {            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江优秀人才" : "集成电路优秀人才";            $item["enterprise_tag"] = $enterprise_tag_kvs[$item["enterpriseTag"]];        }unset($item);        return ["total" => $count, "rows" => $list];    }    public static function getList($request) {        $where = [];        $order = trim($request->param("order")) ?: "desc";        $offset = trim($request->param("offset")) ?: 0;        $limit = trim($request->param("limit")) ?: 10;        $process = $request->param("process");        if ($process == 3) {            return self::getDeptList($request);        }        if ($process == 4) {            $where = sprintf("(ti.checkState in (11,12,13)) or (ti.checkState=9 and ti.pass_dept_check=0) or (ti.checkState=7 and ti.pass_dept_check=1) or (ti.checkState=7 and (tc.companyIds is null or tc.companyIds = ''))");            $count = Talent::alias("ti")                            ->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")                            ->leftJoin("new_talent_condition tc", "tc.id=ti.talent_condition")                            ->whereRaw($where)->count();            $list = Talent::alias("ti")                            ->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")                            ->leftJoin("new_talent_condition tc", "tc.id=ti.talent_condition")                            ->whereRaw($where)                            ->limit($offset, $limit)                            ->order("ti.createTime " . $order)                            ->field("ti.*,e.name as enterprise_name,e.type as enterprise_type,enterpriseTag")                            ->select()->toArray();        } else {            switch ($process) {                case 1:                    $where[] = ["ti.checkState", "in", [2, -1]];                    break;                case 2:                    $where[] = ["ti.checkState", "in", [6, -2]];                    break;                case 5:                    $where[] = ["ti.checkState", ">=", 11];                    break;            }            $count = Talent::alias("ti")->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")->where($where)->count();            $list = Talent::alias("ti")->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")                            ->where($where)->limit($offset, $limit)->order("ti.createTime " . $order)->field("ti.*,e.name as enterprise_name,e.type as enterprise_type,enterpriseTag")->select()->toArray();        }        $talent_arrange_kvs = DictApi::selectByParentCode("talent_arrange");        $enterprise_tag_kvs = DictApi::selectByParentCode("enterprise_tag");        foreach ($list as &$item) {            $item["talent_type"] = $item["enterprise_type"] == 1 ? "晋江优秀人才" : "集成电路优秀人才";            $item["enterprise_tag"] = $enterprise_tag_kvs[$item["enterpriseTag"]];            $item["talentArrangeName"] = $talent_arrange_kvs[$item["talent_arrange"]];            $item["talentConditionName"] = TalentCondition::findOrEmpty($item["talent_condition"])["name"];            $last_log = TalentLogApi::getLastLog($item["id"], 1, 0, ["step", "=", null]);            $item["lastState"] = $last_log["last_state"];            $item["realState"] = $last_log["state"];        }unset($item);        return ["total" => $count, "rows" => $list];    }    public static function getExportDatas($params) {        $where[] = [];        //特殊字段处理        $fields = [];        foreach ($params as $param) {            if (!in_array($param, ["industryFieldNew", "enterpriseName", "enterpriseTag", "street"])) {                $fields[] = "ti." . $param;            }        }        $fields[] = "e.name as enterpriseName";        $fields[] = "e.industryFieldNew";        $fields[] = "e.enterpriseTag";        $fields[] = "e.street";        if (in_array("card_type", $params)) {            $cardTypes = DictApi::selectByParentCode("card_type");        }        if (in_array("industryFieldNew", $params)) {            $industry_fields = DictApi::selectByParentCode("industry_field");        }        if (in_array("enterpriseTag", $params)) {            $enterpriseTags = DictApi::selectByParentCode("enterprise_tag");        }        if (in_array("street", $params)) {            $streets = DictApi::selectByParentCode("street");        }        if (in_array("nation", $params)) {            $nations = DictApi::selectByParentCode("nation");        }        if (in_array("nationality", $params)) {            $nationalitys = DictApi::selectByParentCode("nationality");        }        if (in_array("politics", $params)) {            $politics = DictApi::selectByParentCode("politics");        }        if (in_array("talent_type", $params)) {            $talentTypes = DictApi::selectByParentCode("talent_type");        }        $sex = [1 => "男", 2 => "女"];        $list = Talent::alias("ti")->field($fields)->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")->select()->toArray();        foreach ($list as &$item) {            $item["card_type"] = $cardTypes[$item["card_type"]];            $item["industryFieldNew"] = $industry_fields[$item["industryFieldNew"]];            $item["enterpriseTag"] = $enterpriseTags[$item["enterpriseTag"]];            $item["street"] = $streets[$item["street"]];            $item["nation"] = $nations[$item["nation"]];            $item["nationality"] = $nationalitys[$item["nationality"]];            $item["politics"] = $politics[$item["politics"]];            $item["talent_type"] = $talentTypes[$item["talent_type"]];            $item["sex"] = $sex[$item["sex"]];            if (in_array("province", $params)) {                $item["province"] = Db::table("un_common_location")->where("code", "=", $item["province"])->findOrEmpty()["name"];            }            if (in_array("city", $params)) {                $item["city"] = Db::table("un_common_location")->where("code", "=", $item["city"])->findOrEmpty()["name"];            }            if (in_array("county", $params)) {                $item["county"] = Db::table("un_common_location")->where("code", "=", $item["county"])->findOrEmpty()["name"];            }        }unset($item);        return $list;    }    public static function getListByProcess($process) {        switch ($process) {            case 1:                $where[] = ["ti.checkState", "in", [2, -1]];                break;            case 2:                $where[] = ["ti.checkState", "in", [6, -2]];                break;            default:                return null;        }        return Talent::alias("ti")->leftJoin("new_enterprise e", "e.id=ti.enterprise_id")->where($where)->field("ti.*,e.agentName,e.agentPhone")->select()->toArray();    }    public static function setPublic($mainId, $state, $pass, $msg, $type = 1) {        switch ($state) {            case 2:                if ($pass) {                    $data["id"] = $mainId;                    $data["isPublic"] = $state;                    $data["checkState"] = TalentState::REVERIFY_FAIL;                    Talent::update($data);                    TalentLogApi::write($type, $mainId, [TalentState::REVERIFY_PASS, TalentState::REVERIFY_PASS, 5], $msg, 1);                    return true;                } else {                    $data["id"] = $mainId;                    $data["isPublic"] = $state;                    $data["checkState"] = TalentState::REVERIFY_FAIL;                    Talent::update($data);                    TalentLogApi::write($type, $mainId, [TalentState::REVERIFY_FAIL, TalentState::REVERIFY_FAIL, 5], $msg, 1);                    return true;                }                break;        }        return false;    }}
 |