| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 | 
							- <?php
 
- namespace app\enterprise\controller;
 
- use app\enterprise\common\EnterpriseController;
 
- use think\facade\Db;
 
- use app\common\api\EnterpriseApi;
 
- use app\common\state\IntegralState;
 
- use app\common\api\IntegralRecordApi;
 
- use app\common\api\TalentLogApi;
 
- use app\common\state\ProjectState;
 
- use app\enterprise\validate\IntegralValidator;
 
- use think\exception\ValidateException;
 
- /**
 
-  * Description of 积分申报
 
-  *
 
-  * @author sgq
 
-  */
 
- class Integral extends EnterpriseController {
 
-     public function index() {
 
-         return view();
 
-     }
 
-     public function list() {
 
-         $res = IntegralRecordApi::getList($this->request->param());
 
-         return json($res);
 
-     }
 
-     /**
 
-      * 积分申报入口
 
-      */
 
-     public function apply(\think\Request $request) {
 
-         $type = $this->user["type"];
 
-         $param = $request->param();
 
-         $id = isset($param["id"]) ? $param["id"] : 0;
 
-         $info = IntegralRecordApi::getOne($id);
 
-         $ep = EnterpriseApi::getOne($this->user["uid"]);
 
-         if ($info) {
 
-             $info["real_state"] = TalentLogApi::getLastLog($id, ProjectState::INTEGRAL)["state"];
 
-         }
 
-         if ($info && in_array($info["checkState"], [IntegralState::VERIFY_PASS, IntegralState::REVERIFY_PASS, IntegralState::REVERIFY_FAIL])) {
 
-             return $this->view($request);
 
-             exit();
 
-         }
 
-         if ($request->isPost()) {
 
-             $checkState = $info["checkState"] ?: 0;
 
-             if ($checkState == IntegralState::SAVE || $checkState == 0) {
 
-                 $this->save($info, $request, IntegralState::SAVE);
 
-             } else if (in_array($checkState, [IntegralState::VERIFY_FAIL, IntegralState::REVERIFY_FAIL])) {
 
-                 $res = ["msg" => "审核失败,不能再保存"];
 
-                 echo sprintf("<script>parent.IntegralInfoDlg.infoCallback(%s);</script>", json_encode($res));
 
-                 exit;
 
-             }
 
-             $res = ["msg" => "已提交审核,请耐心等待"];
 
-             echo sprintf("<script>parent.IntegralInfoDlg.infoCallback(%s);</script>", json_encode($res));
 
-             exit;
 
-         }
 
-         $checkState = $info["checkState"] ?: 0;
 
-         $info["enterprise"] = $ep;
 
-         return view("", ["year" => date("Y"), "checkState" => $checkState, "row" => $info]);
 
-     }
 
-     public function view(\think\Request $request) {
 
-         switch ($this->user["type"]) {
 
-             case 1:
 
-                 $tpl = "view"; //晋江人才
 
-                 break;
 
-             case 2:
 
-                 $tpl = "ic_view"; //集成电路
 
-                 break;
 
-         }
 
-         $id = $request->param("id");
 
-         $info = \app\common\api\VerifyApi::getTalentInfoById($id);
 
-         return view($tpl, ["row" => $info]);
 
-     }
 
-     /**
 
-      * 提交表单(新:混合基础信息人才申报信息)晋江人才
 
-      */
 
-     private function submitToCheck() {
 
-         $params = $this->request->param();
 
-         $id = $params["id"];
 
-         $info = IntegralRecordApi::chkIsOwner($id, $this->user["uid"]);
 
-         if ($info) {
 
-             $info["real_state"] = TalentLogApi::getLastLog($id, ProjectState::INTEGRAL)["state"];
 
-         }
 
-         $checkState = $info["checkState"];
 
-         if ($checkState == IntegralState::SAVE || !$id) {
 
-             $field_dict = [
 
-                 "name" => "姓名",
 
-                 "card_type" => "证件类型",
 
-                 "card_number" => "证件号码",
 
-                 "phone" => "手机号码",
 
-                 "email" => "电子邮箱"
 
-             ];
 
-             $no_empty = ["name", "card_type", "card_number", "phone", "email"];
 
-             $return = [];
 
-             foreach ($no_empty as $key) {
 
-                 if (!$params[$key]) {
 
-                     $return[] = sprintf("请填写“%s”", $field_dict[$key]);
 
-                 }
 
-             }
 
-             if (count($return) > 0) {
 
-                 $res = ["msg" => implode("<br>", $return)];
 
-                 echo sprintf("<script>parent.IntegralInfoDlg.submitCallback(%s);</script>", json_encode($res));
 
-                 exit;
 
-             }
 
-             $insertDetailList = [];
 
-             $tmp_item_ids = [];
 
-             $projectTypes = $params["projectType"];
 
-             $projectIds = $params["projectId"];
 
-             $item_ids = $params["item_id"];
 
-             $amounts = $params["amount"];
 
-             $detailCounts = count($item_ids);
 
-             $ft_ids = [];
 
-             for ($i = 0; $i < $detailCounts; $i++) {
 
-                 if (!in_array($item_ids[$i], $tmp_item_ids)) {
 
-                     $tmp_item_ids[] = $item_ids[$i];
 
-                 }
 
-                 if (!is_numeric($amounts[$i]) || $amounts[$i] < 0) {
 
-                     throw new ValidateException(sprintf("第%d个积分标准项的数额填写错误,应填入大于0的数字", $i + 1));
 
-                 }
 
-                 $integralItemInfo = \app\common\api\IntegralItemApi::getOne($item_ids[$i]);
 
-                 if (!$integralItemInfo) {
 
-                     throw new ValidateException(sprintf("第%d个积分标准项不存在", $i + 1));
 
-                 }
 
-                 $ft_ids = array_filter(array_merge($ft_ids, array(explode(",", $integralItemInfo["fileTypeId"]))));
 
-             }
 
-             if (count($tmp_item_ids) != $detailCounts) {
 
-                 throw new ValidateException("同一个申报中,同一个积分标准不能申报多次");
 
-             }
 
-             if ($ft_ids) {
 
-                 $whr = [];
 
-                 if ($id) {
 
-                     $whr[] = ["mainId", "=", $id];
 
-                     $whr[] = ["type", "=", ProjectState::INTEGRAL];
 
-                 } else {
 
-                     if ($params["uploadFiles"])
 
-                         $whr[] = ["id", "in", $params["uploadFiles"]];
 
-                 }
 
-                 $whr[] = ["typeId", "in", $ft_ids];
 
-                 $distinct_filetypes = Db::table("new_talent_file")->where($whr)->distinct(true)->field("typeId")->select();
 
-                 $upload_type_counts = count($distinct_filetypes);
 
-                 if ($upload_type_counts != count($ft_ids)) {
 
-                     $res = ["msg" => "请留意附件上传栏中带*号的内容均为必传项,请上传完整再提交审核"];
 
-                     echo sprintf("<script>parent.IntegralInfoDlg.submitCallback(%s);</script>", json_encode($res));
 
-                     exit;
 
-                 }
 
-             }
 
-             return $this->save($info, $this->request, IntegralState::SUBMIT);
 
-         } else if (in_array($checkState, [IntegralState::VERIFY_FAIL, IntegralState::REVERIFY_FAIL, IntegralState::ZX_FAIL, IntegralState::ANNOUNCED_REVERIFY_FAIL, IntegralState::PUBLISH_FAIL])) {
 
-             $res = ["msg" => "审核失败,不能再提交审核"];
 
-             echo sprintf("<script>parent.IntegralInfoDlg.submitCallback(%s);</script>", json_encode($res));
 
-             exit;
 
-         }
 
-         $res = ["msg" => "已提交审核,请耐心等待"];
 
-         echo sprintf("<script>parent.IntegralInfoDlg.submitCallback(%s);</script>", json_encode($res));
 
-         exit;
 
-     }
 
-     /**
 
-      * 保存申报表单
 
-      * @param type $info talent_info
 
-      * @param type $param request->param();
 
-      */
 
-     private function save($info, \think\Request $request, $checkState) {
 
-         try {
 
-             $param = $request->param();
 
-             $batch = \app\common\api\BatchApi::getValidBatch(ProjectState::INTEGRAL, $this->user["type"]);
 
-             if (!$batch) {
 
-                 throw new ValidateException("不在人才认定申报申请时间内");
 
-             }
 
-             $data["batch_id"] = $batch["id"];
 
-             validate(IntegralValidator::class)->check($param);
 
-             $id = $param["id"];
 
-             $files = $param["uploadFiles"];
 
-             if ($id) {
 
-                 if (!$info || $info["id"] != $id || $info["enterprise_id"] != $this->user["uid"]) {
 
-                     throw new ValidateException("没有对应的积分申报信息");
 
-                 }
 
-             }
 
-             $all_valid_keys = ["name", "card_type", "card_number", "phone", "email"];
 
-             foreach ($all_valid_keys as $key) {
 
-                 $data[$key] = trim($param[$key]);
 
-             }
 
-             $insertDetailList = [];
 
-             $item_ids = $param["item_id"];
 
-             $amounts = $param["amount"];
 
-             $detailCounts = count($item_ids);
 
-             for ($i = 0; $i < $detailCounts; $i++) {
 
-                 if (!is_numeric($amounts[$i]) || $amounts[$i] < 0) {
 
-                     throw new ValidateException(sprintf("第%d个积分标准项的数额填写错误,应填入大于0的数字", $i + 1));
 
-                 }
 
-                 $insertDetailList[] = [
 
-                     "id" => getStringId(),
 
-                     "record_id" => "",
 
-                     "item_id" => $item_ids[$i],
 
-                     "amount" => $amounts[$i],
 
-                     "unit" => ""
 
-                 ];
 
-             }
 
-             if ($info["real_state"] == IntegralState::VERIFY_REJECT) {
 
-                 //真实状态是驳回,需要判断什么字段可以提交                
 
-                 $modify_fields = array_filter(explode(",", $info["modify_fields"]));
 
-                 $tmp_data = $data;
 
-                 $data = [];
 
-                 foreach ($modify_fields as $field) {
 
-                     $data[$field] = $tmp_data[$field];
 
-                 }
 
-                 $tmp_item_ids = [];
 
-                 if (!$info["modify_files"]) {
 
-                     $insertDetailList = []; //不能修改项目,清空
 
-                 }
 
-             }
 
-             $data["checkState"] = $checkState;
 
-             $data["id"] = $id;
 
-             $success_msg = "提交成功";
 
-             $error_msg = "提交失败";
 
-             if ($checkState == IntegralState::SAVE) {
 
-                 $success_msg = "保存成功";
 
-                 if ($data["id"]) {
 
-                     //编辑
 
-                     $data["updateTime"] = date("Y-m-d H:i:s");
 
-                     \app\common\model\IntegralRecord::update($data);
 
-                     $last_log = TalentLogApi::getLastLog($data["id"], ProjectState::INTEGRAL);
 
-                     if ($last_log["new_state"] != IntegralState::SAVE) {
 
-                         TalentLogApi::write(1, $data["id"], $checkState, "保存未提交", 1);
 
-                     } else {
 
-                         TalentLogApi::setActive($last_log["id"], 1); //更新修改时间
 
-                     }
 
-                 } else {
 
-                     //新增
 
-                     $data["id"] = getStringId();
 
-                     $data["enterprise_id"] = $this->user["uid"];
 
-                     $data["createTime"] = date("Y-m-d H:i:s");
 
-                     \app\common\model\IntegralRecord::insert($data);
 
-                     TalentLogApi::write(ProjectState::INTEGRAL, $data["id"], $checkState, "保存未提交", 1);
 
-                     $whr = [];
 
-                     $whr[] = ["fileId", "in", $files];
 
-                     $upd_checklog["mainId"] = $data["id"];
 
-                     Db::table("new_talent_checklog")->where($whr)->save($upd_checklog);
 
-                 }
 
-             } else if ($checkState == IntegralState::SUBMIT) {
 
-                 if (!$info["first_submit_time"]) {
 
-                     $data["first_submit_time"] = date("Y-m-d H:i:s");
 
-                 } else {
 
-                     $data["new_submit_time"] = date("Y-m-d H:i:s");
 
-                 }
 
-                 if ($data["id"]) {
 
-                     $data["updateTime"] = date("Y-m-d H:i:s");
 
-                     \app\common\model\IntegralRecord::update($data);
 
-                 } else {
 
-                     //新增
 
-                     $data["id"] = getStringId();
 
-                     $data["enterprise_id"] = $this->user["uid"];
 
-                     $data["createTime"] = date("Y-m-d H:i:s");
 
-                     \app\common\model\IntegralRecord::insert($data);
 
-                     $whr = [];
 
-                     $whr[] = ["fileId", "in", $files];
 
-                     $upd_checklog["mainId"] = $data["id"];
 
-                     Db::table("new_talent_checklog")->where($whr)->save($upd_checklog);
 
-                 }
 
-                 TalentLogApi::write(ProjectState::INTEGRAL, $data["id"], $checkState, "确认提交审核", 1);
 
-             } else {
 
-                 throw new ValidateException($error_msg);
 
-             }
 
-             if ($data["id"]) {
 
-                 \app\common\model\IntegralDetail::where("record_id", "=", $data["id"])->delete();
 
-                 if ($insertDetailList) {
 
-                     foreach ($insertDetailList as $insertItem) {
 
-                         $integralItemInfo = \app\common\api\IntegralItemApi::getOne($item_ids[$i]);
 
-                         $insertItem["record_id"] = $data["id"];
 
-                         $insertItem["unit"] = $integralItemInfo["unit"];
 
-                         \app\common\model\IntegralDetail::insert($insertItem);
 
-                     }
 
-                 }
 
-                 //删除多余的附件,一般是选择人才类型留下来的
 
-                 $whr = [];
 
-                 $whr[] = ["mainId", "=", $data["id"]];
 
-                 $whr[] = ["type", "=", ProjectState::INTEGRAL];
 
-                 $whr[] = ["id", "not in", $files];
 
-                 $_wait_del_files = Db::table("new_talent_file")->where($whr)->select()->toArray();
 
-                 $_logfileIds[] = [];
 
-                 foreach ($_wait_del_files as $_del_file) {
 
-                     $_logfileIds[] = $_del_file["id"];
 
-                     @unlink("storage/" . $_del_file ["url"]);
 
-                 }
 
-                 Db::table("new_talent_file")->where($whr)->delete();
 
-                 if ($_logfileIds) {
 
-                     $whr = [];
 
-                     $whr[] = ["fileId", "in", $_logfileIds];
 
-                     $_upd_checklog["description"] = "删除附件";
 
-                     $_upd_checklog["updateUser"] = sprintf("%s(%s)", $this->user["account"], $this->user["companyName"] ?: $this->user["rolename"]);
 
-                     $_upd_checklog["updateTime"] = date("Y-m-d H:i:s");
 
-                     Db::table("new_talent_checklog")->where($whr)->save($_upd_checklog);
 
-                 }
 
-                 $whr = [];
 
-                 $whr[] = ["id", "in", $files];
 
-                 Db::table("new_talent_file")->where($whr)->save(["mainId" => $data["id"]]);
 
-                 $res = ["code" => 200, "msg" => $success_msg, "obj" => ["id" => $data["id"], "checkState" => $checkState]];
 
-                 $callback = $checkState == IntegralState::SAVE ? "infoCallback" : "submitCallback";
 
-                 echo sprintf("<script>parent.IntegralInfoDlg.{$callback}(%s);</script>", json_encode($res));
 
-                 exit();
 
-             } else {
 
-                 throw new ValidateException($error_msg);
 
-             }
 
-         } catch (ValidateException $e) {
 
-             $res = ["msg" => $e->getMessage()];
 
-             $callback = $checkState == IntegralState::SAVE ? "infoCallback" : "submitCallback";
 
-             echo sprintf("<script>parent.IntegralInfoDlg.{$callback}(%s);</script>", json_encode($res));
 
-             exit();
 
-         }
 
-     }
 
-     public function delete() {
 
-         $id = $this->request->param("id");
 
-         $info = IntegralRecordApi::chkIsOwner($id, $this->user["uid"]);
 
-         if (!$info) {
 
-             return json(["msg" => "操作失败"]);
 
-         }
 
-         $checkState = $info["checkState"];
 
-         if (in_array($checkState, [0, 1])) {
 
-             $log = TalentLogApi::getLastLog($id, ProjectState::INTEGRAL);
 
-             if ($log["state"] > 1) {
 
-                 //有提交审核记录
 
-                 return json(["msg" => "该申报已提交审核,无法删除"]);
 
-             }
 
-         }
 
-         $data["id"] = $id;
 
-         $data["delete"] = 1;
 
-         \app\common\model\IntegralRecord::update($data);
 
-         return json(["msg" => "删除成功"]);
 
-     }
 
- }
 
 
  |