12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190 |
- <?php
- namespace app\enterprise\controller;
- use app\admin\model\Enterprise;
- use app\common\api\DictApi;
- use app\common\api\EnterpriseApi;
- use app\common\model\CurrentcyFileType;
- use app\common\model\TalentChecklog;
- use app\common\model\TalentCommonFile;
- use app\enterprise\model\EnterpriseRecord;
- use app\enterprise\common\EnterpriseController;
- use app\Request;
- use think\exception\ValidateException;
- use app\common\api\UploadApi;
- use app\common\state\CommonConst;
- use app\common\api\LocationApi;
- use think\facade\Db;
- class Api extends EnterpriseController {
- private $compatible_time = "2022-10-15 23:59:59";
- public function findEnterpriseChangeByPage() {
- $order = trim($this->request->param("order")) ?: "desc";
- $offset = trim($this->request->param("offset")) ?: 0;
- $limit = trim($this->request->param("limit")) ?: 10;
- $list = EnterpriseRecord::where('mainId', session("user")["uid"])->limit($offset, $limit)->order('createTime ' . $order)->select()->toArray();
- $count = count($list);
- if ($count > 0) {
- $streetList = DictApi::selectByParentCode('street');
- $typeList = DictApi::selectByParentCode('enterprise_type');
- $industryFieldNew = DictApi::selectByParentCode('industry_field');
- $medicalCommunityList = \app\common\api\Nhc::getMedicalCommunityMap();
- foreach ($list as $k => &$v) {
- $v['newIndustryFieldNewName'] = $industryFieldNew[$v['newIndustryFieldNew']];
- $v['newEnterpriseType'] = $typeList[$v['newEnterpriseType']];
- $v['newStreetName'] = $streetList[$v['newStreet']];
- $v['newMedicalCommunityName'] = $medicalCommunityList[$v["newMedicalCommunityId"]];
- }
- }
- return json(["total" => $count, "rows" => $list]);
- }
- public function findUnfinishedChangeRecord() {
- return EnterpriseRecord::where('mainId', session("user")["uid"])->where('checkState', '<>', 4)->select()->toArray();
- }
- public function toAdd() {
- $ep = Enterprise::where('id', session("user")["uid"])->find();
- $ecr = [
- "special" => $ep["special"],
- 'enterprise_id' => $ep['id'],
- 'newName' => $ep['name'],
- 'newIdCard' => $ep['idCard'],
- 'newMedicalCommunityId' => $ep["medicalCommunityId"],
- 'newIsGeneral' => $ep["isGeneral"],
- 'newStreet' => $ep['street'],
- 'newAddress' => $ep['address'],
- 'newProvince' => $ep['province'],
- 'newCity' => $ep['city'],
- 'newCounty' => $ep['county'],
- 'newLegal' => $ep['legal'],
- 'newEphone' => $ep['ephone'],
- 'newAgentName' => $ep['agentName'],
- 'newAgentEmail' => $ep['agentEmail'],
- 'newAgentPhone' => $ep['agentPhone'],
- 'type' => $ep['type'],
- 'newAgencyType' => $ep['agencyType'],
- 'newEnterpriseTag' => $ep['enterpriseTag'],
- 'newOrganizationTag' => $ep['organizationTag'],
- 'newInstitutionTag' => $ep['institutionTag'],
- 'newEnterpriseType' => $ep['enterpriseType'],
- 'newIndustryFieldNew' => $ep['industryFieldNew'],
- 'newIndustryFieldOld' => $ep['industryFieldOld'],
- 'newBankCard' => $ep['bankCard'],
- 'newBank' => $ep['bank'],
- 'newBankNetwork' => $ep['bankNetwork']
- ];
- if ($ep["imgurl"]) {
- $ecr["imgurl"] = $ep["imgurl"];
- $extension = pathinfo($ep["imgurl"])["extension"];
- if (in_array($extension, ["jpeg", "jpg", "png", "gif"])) {
- $ecr["imgurl_is_img"] = 1;
- }
- }
- if ($ep["bankImg"]) {
- $ecr["bankImg"] = $ep["bankImg"];
- $extension = pathinfo($ep["bankImg"])["extension"];
- if (in_array($extension, ["jpeg", "jpg", "png", "gif"])) {
- $ecr["bankImg_is_img"] = 1;
- }
- }
- if ($ep["domainImg"]) {
- $ecr["domainImg"] = $ep["domainImg"];
- $extension = pathinfo($ep["domainImg"])["extension"];
- if (in_array($extension, ["jpeg", "jpg", "png", "gif"])) {
- $ecr["domainImg_is_img"] = 1;
- }
- }
- if ($ep["typeImg"]) {
- $ecr["typeImg"] = $ep["typeImg"];
- $extension = pathinfo($ep["typeImg"])["extension"];
- if (in_array($extension, ["jpeg", "jpg", "png", "gif"])) {
- $ecr["typeImg_is_img"] = 1;
- }
- }
- if ($ep["beian"]) {
- $ecr["beian"] = $ep["beian"];
- $extension = pathinfo($ep["beian"])["extension"];
- if (in_array($extension, ["jpeg", "jpg", "png", "gif"])) {
- $ecr["beian_is_img"] = 1;
- }
- }
- switch ($ep['checkState']) {
- case 1:
- $ecr['checkStateName'] = '保存未提交审核';
- break;
- case 2:
- $ecr['checkStateName'] = '待审核';
- break;
- case 3:
- $ecr['checkStateName'] = '审核驳回';
- break;
- case 4:
- $ecr['checkStateName'] = '审核通过';
- break;
- case 5:
- $ecr['checkStateName'] = '重新提交';
- break;
- default:
- $ecr['checkStateName'] = '';
- }
- $template = "";
- $assigns = [];
- switch ($ep->type) {
- case CommonConst::ENTERPRISE_WJ:
- $template = "/api/hospital/to_add";
- $assigns["medicalCommunities"] = \app\common\api\Nhc::getMedicalCommunityList();
- break;
- case CommonConst::ENTERPRISE_GJ:
- $template = "/api/school/to_add";
- break;
- }
- $assigns["ecr"] = $ecr;
- return view($template, $assigns);
- }
- public function upsert() {
- $data = [
- 'id' => \StrUtil::getRequestDecodeParam($this->request, 'enterprise_id'),
- 'name' => \StrUtil::getRequestDecodeParam($this->request, 'newName'), //单位名称
- 'idCard' => \StrUtil::getRequestDecodeParam($this->request, 'newIdCard'), //统一社会信用代码
- 'medicalCommunityId' => \StrUtil::getRequestDecodeParam($this->request, 'newMedicalCommunityId'), //医共体
- 'isGeneral' => \StrUtil::getRequestDecodeParam($this->request, 'newIsGeneral'), //是否总院
- 'agentName' => \StrUtil::getRequestDecodeParam($this->request, 'newAgentName'), //人才联络员
- 'agentPhone' => \StrUtil::getRequestDecodeParam($this->request, 'newAgentPhone'), //人才联络员电话
- 'legal' => \StrUtil::getRequestDecodeParam($this->request, 'newLegal'), //法人
- 'street' => \StrUtil::getRequestDecodeParam($this->request, 'newStreet'), //镇街
- 'province' => \StrUtil::getRequestDecodeParam($this->request, 'newProvince'), //地址省
- 'city' => \StrUtil::getRequestDecodeParam($this->request, 'newCity'), //地址市
- 'county' => \StrUtil::getRequestDecodeParam($this->request, 'newCounty'), //地址县区
- 'address' => \StrUtil::getRequestDecodeParam($this->request, 'newAddress'), //地址
- 'type' => intval($this->request['type']),
- 'agencyType' => intval($this->request['newAgencyType']),
- 'enterpriseTag' => \StrUtil::getRequestDecodeParam($this->request, 'newEnterpriseTag'), //单位标签
- 'organizationTag' => \StrUtil::getRequestDecodeParam($this->request, 'newOrganizationTag'), //机构标签
- 'institutionTag' => \StrUtil::getRequestDecodeParam($this->request, 'newInstitutionTag'), //事业单位标签
- 'enterpriseType' => \StrUtil::getRequestDecodeParam($this->request, 'newEnterpriseType'), //单位类型
- 'agentEmail' => \StrUtil::getRequestDecodeParam($this->request, 'newAgentEmail'), //邮箱
- 'ephone' => \StrUtil::getRequestDecodeParam($this->request, 'newEphone'), //单位电话
- 'industryFieldNew' => \StrUtil::getRequestDecodeParam($this->request, 'newIndustryFieldNew'), //产业领域
- 'industryFieldOld' => \StrUtil::getRequestDecodeParam($this->request, 'newIndustryFieldOld'), //行业领域
- 'bankCard' => \StrUtil::getRequestDecodeParam($this->request, 'newBankCard'), //银行
- 'bank' => \StrUtil::getRequestDecodeParam($this->request, 'newBank'), //开户行
- 'bankNetwork' => \StrUtil::getRequestDecodeParam($this->request, 'newBankNetwork')//网点
- ];
- $response_object = new \stdClass();
- try {
- if (stripos($data['name'], "(")) {
- $data['name'] = str_replace('(', '(', $data['name']);
- }
- if (stripos($data['name'], ")")) {
- $data['name'] = str_replace(')', ')', $data['name']);
- }
- $ep = Enterprise::where('id', session("user")["uid"])->find();
- if (!in_array($ep["checkState"], [1, 3, 6])) {
- throw new ValidateException("审核中,请耐心等待");
- }
- switch ($ep->special) {
- case 0:
- if ($ep->type == CommonConst::ENTERPRISE_JC) {
- validate(\app\common\validate\Enterprise::class)->batch(true)->scene('jc_change')->check($data);
- } else if ($ep->type == CommonConst::ENTERPRISE_WJ) {
- validate(\app\common\validate\Hospital::class)->batch(true)->scene('change')->check($data);
- } else if ($ep->type == CommonConst::ENTERPRISE_GJ) {
- validate(\app\common\validate\School::class)->batch(true)->scene('change')->check($data);
- } else {
- if ($data["agencyType"] == 1) {
- validate(\app\common\validate\Enterprise::class)->batch(true)->scene('change')->check($data);
- } else {
- validate(\app\common\validate\Enterprise::class)->batch(true)->scene('change2')->check($data);
- }
- }
- break;
- case 1:
- validate(\app\common\validate\Enterprise::class)->batch(true)->scene('sy_change')->check($data);
- break;
- default:
- break;
- }
- $record_id = \StrUtil::getRequestDecodeParam($this->request, 'id');
- if (!$record_id) {
- $record_id = getStringId();
- $record_data = [
- 'id' => $record_id,
- 'mainId' => $data['id'],
- 'type' => $data['type'],
- 'oldAgencyType' => $ep['agencyType'],
- 'oldName' => $ep['name'],
- 'oldIdCard' => $ep['idCard'],
- 'oldMedicalCommunityId' => $ep['medicalCommunityId'],
- 'oldIsGeneral' => $ep['isGeneral'],
- 'oldIndustryFieldNew' => $ep['industryFieldNew'],
- 'oldIndustryFieldOld' => $ep['industryFieldOld'],
- 'oldStreet' => $ep['street'],
- 'oldProvince' => $ep['province'],
- 'oldCity' => $ep['city'],
- 'oldCounty' => $ep['county'],
- 'oldProvinceName' => $ep['provinceName'],
- 'oldCityName' => $ep['cityName'],
- 'oldCountyName' => $ep['countyName'],
- 'oldAddress' => $ep['address'],
- 'oldLegal' => $ep['legal'],
- 'oldEphone' => $ep['ephone'],
- 'oldAgentName' => $ep['agentName'],
- 'oldAgentEmail' => $ep['agentEmail'],
- 'oldAgentPhone' => $ep['agentPhone'],
- 'oldEnterpriseTag' => $ep['enterpriseTag'],
- 'oldOrganizationTag' => $ep['organizationTag'],
- 'oldInstitutionTag' => $ep['institutionTag'],
- 'oldEnterpriseType' => $ep['enterpriseType'],
- 'oldBankCard' => $ep['bankCard'],
- 'oldBank' => $ep['bank'],
- 'oldBankNetwork' => $ep['bankNetwork'],
- "oldImgurl" => $ep["imgurl"],
- "oldBankImg" => $ep["bankImg"],
- "oldDomainImg" => $ep["domainImg"],
- "oldTypeImg" => $ep["typeImg"],
- "oldBeian" => $ep["beian"],
- 'newAgencyType' => $data['agencyType'],
- 'newName' => htmlspecialchars($data['name']),
- 'newIdCard' => htmlspecialchars($data['idCard']),
- 'newMedicalCommunityId' => $data['medicalCommunityId'],
- 'newIsGeneral' => $data['isGeneral'],
- 'newIndustryFieldNew' => $data['industryFieldNew'],
- 'newIndustryFieldOld' => $data['industryFieldOld'],
- 'newStreet' => $data['street'],
- 'newProvince' => $data['province'],
- 'newCity' => $data['city'],
- 'newCounty' => $data['county'],
- 'newProvinceName' => $data['province'] ? LocationApi::getNameByCode($data['province']) : null,
- 'newCityName' => $data['city'] ? LocationApi::getNameByCode($data['city']) : null,
- 'newCountyName' => $data['county'] ? LocationApi::getNameByCode($data['county']) : null,
- 'newAddress' => $data['address'],
- 'newLegal' => $data['legal'],
- 'newEphone' => $data['ephone'],
- 'newAgentName' => $data['agentName'],
- 'newAgentEmail' => $data['agentEmail'],
- 'newAgentPhone' => $data['agentPhone'],
- 'newEnterpriseTag' => $data['enterpriseTag'],
- 'newOrganizationTag' => $data['organizationTag'],
- 'newInstitutionTag' => $data['institutionTag'],
- 'newEnterpriseType' => $data['enterpriseType'],
- 'newBankCard' => $data['bankCard'],
- 'newBank' => $data['bank'],
- 'newBankNetwork' => $data['bankNetwork'],
- 'checkState' => 1,
- 'createTime' => date("Y-m-d H:i:s", time()),
- 'createUser' => session("user")["uid"]
- ];
- $record_data["newImgurl"] = $ep["imgurl"];
- $record_data["newBankImg"] = $ep["bankImg"];
- $record_data["newDomainImg"] = $ep["domainImg"];
- $record_data["newTypeImg"] = $ep["typeImg"];
- $record_data["newBeian"] = $ep["beian"];
- if ($data["agencyType"] != 1) {
- $record_data["newIndustryFieldNew"] = null;
- $record_data["newIndustryFieldOld"] = null;
- $record_data["newDomainImg"] = null;
- }
- $files = $this->request->file();
- if ($files) {
- $uploadapi = new UploadApi();
- if (array_key_exists('imgurl', $files)) {
- $upload_result = $uploadapi->uploadOne($this->request->file('imgurl'), 'system');
- if ($upload_result->code == 500) {
- return \StrUtil::back($upload_result, "EpChangeEdit.callBack");
- }
- $record_data["newImgurl"] = $upload_result->filepath;
- }
- //检验附件 开户许可证
- if (array_key_exists('bankImg', $files)) {
- $upload_result1 = $uploadapi->uploadOne($this->request->file('bankImg'), 'system');
- if ($upload_result1->code == 500) {
- return \StrUtil::back($upload_result1, "EpChangeEdit.callBack");
- }
- $record_data["newBankImg"] = $upload_result1->filepath;
- }
- //检验附件 行业领域佐证材料
- if (array_key_exists('domainImg', $files) && $data['agencyType'] == 1) {
- $upload_result2 = $uploadapi->uploadOne($this->request->file('domainImg'), 'system');
- if ($upload_result2->code == 500) {
- return \StrUtil::back($upload_result2, "EpChangeEdit.callBack");
- }
- $record_data["newDomainImg"] = $upload_result2->filepath;
- }
- //检验附件 三种类型企业上传材料
- if (array_key_exists('typeImg', $files)) {
- $upload_result4 = $uploadapi->uploadOne($this->request->file('typeImg'), 'system');
- if ($upload_result4->code == 500) {
- return \StrUtil::back($upload_result4, "EpChangeEdit.callBack");
- }
- $record_data["newTypeImg"] = $upload_result4->filepath;
- }
- //检验附件 人才联络员备案表
- if (array_key_exists('beian', $files)) {
- $upload_result3 = $uploadapi->uploadOne($this->request->file('beian'), 'system');
- if ($upload_result3->code == 500) {
- return \StrUtil::back($upload_result3, "EpChangeEdit.callBack");
- }
- $record_data["newBeian"] = $upload_result3->filepath;
- }
- }
- if (!$record_data["newImgurl"]) {
- throw new ValidateException("请上传营业执照");
- }
- if ($ep->special == 0) {
- if (!$record_data["newBankImg"] && ($ep->type == CommonConst::ENTERPRISE_NORMAL || $ep->type == CommonConst::ENTERPRISE_WJ)) {
- throw new ValidateException("请上传开户许可证/基本存款账户信息");
- }
- if ($ep->type == CommonConst::ENTERPRISE_NORMAL && $data['agencyType'] == 1 && !$record_data["newDomainImg"]) {
- throw new ValidateException("请上传行业领域佐证材料");
- }
- if (in_array($record_data["newEnterpriseType"], ["guishang", "gaoxinjishu", "zhuanjingtexin"]) && !$record_data["newTypeImg"]) {
- throw new ValidateException("规上、高新技术、专精特新企业需要上传佐证材料");
- }
- if (!in_array($record_data["newEnterpriseType"], ["guishang", "gaoxinjishu", "zhuanjingtexin"])) {
- $record_data["newTypeImg"] = null;
- }
- }
- if (!$record_data["newBeian"]) {
- throw new ValidateException("请上传人才联络员信息备案表");
- }
- EnterpriseRecord::create($record_data);
- $log = [
- 'id' => getStringId(),
- 'mainId' => $record_data['id'],
- 'category' => 'enterprise_change',
- 'type' => 10,
- 'active' => 1,
- 'state' => 1,
- 'step' => 100,
- 'stateChange' => '保存未提交',
- 'description' => '机构信息变更记录添加成功',
- 'createTime' => date("Y-m-d H:i:s", time()),
- 'createUser' => '用户'
- ];
- $success_msg = "添加成功";
- //$res = ['msg' => '添加成功', 'code' => 200, 'obj' => $record_data];
- } else {
- $record = EnterpriseRecord::find($record_id);
- $ep = Enterprise::where('id', session("user")["uid"])->find();
- $record->oldAgencyType = $ep['agencyType'];
- $record->oldName = $ep['name'];
- $record->oldIdCard = $ep['idCard'];
- $record->oldMedicalCommunityId = $ep['medicalCommunityId'];
- $record->oldIsGeneral = $ep['isGeneral'];
- $record->oldIndustryFieldNew = $ep['industryFieldNew'];
- $record->oldIndustryFieldOld = $ep['industryFieldOld'];
- $record->oldStreet = $ep['street'];
- $record->oldProvince = $ep['province'];
- $record->oldCity = $ep['city'];
- $record->oldCounty = $ep['county'];
- $record->oldProvinceName = $ep['provinceName'];
- $record->oldCityName = $ep['cityName'];
- $record->oldCountyName = $ep['countyName'];
- $record->oldAddress = $ep['address'];
- $record->oldLegal = $ep['legal'];
- $record->oldEphone = $ep['ephone'];
- $record->oldAgentName = $ep['agentName'];
- $record->oldAgentEmail = $ep['agentEmail'];
- $record->oldAgentPhone = $ep['agentPhone'];
- $record->oldEnterpriseTag = $ep['enterpriseTag'];
- $record->oldOrganizationTag = $ep['organizationTag'];
- $record->oldInstitutionTag = $ep['institutionTag'];
- $record->oldEnterpriseType = $ep['enterpriseType'];
- $record->oldBankCard = $ep['bankCard'];
- $record->oldBank = $ep['bank'];
- $record->oldBankNetwork = $ep['bankNetwork'];
- if ($record->checkState == 1) {
- $record->newAgencyType = $data['agencyType'];
- $record->newName = htmlspecialchars($data['name']);
- $record->newIdCard = htmlspecialchars($data['idCard']);
- $record->newMedicalCommunityId = htmlspecialchars($data['medicalCommunityId']);
- $record->newIsGeneral = htmlspecialchars($data['isGeneral']);
- if ($data["agencyType"] == 1) {
- $record->newIndustryFieldNew = $data['industryFieldNew'];
- $record->newIndustryFieldOld = $data['industryFieldOld'];
- } else {
- $record->newIndustryFieldNew = null;
- $record->newIndustryFieldOld = null;
- }
- $record->newStreet = $data['street'];
- $record->newProvince = $data['province'];
- $record->newCity = $data['city'];
- $record->newCounty = $data['county'];
- $record->newAddress = $data['address'];
- $record->newLegal = $data['legal'];
- $record->newEphone = $data['ephone'];
- $record->newAgentName = $data['agentName'];
- $record->newAgentEmail = $data['agentEmail'];
- $record->newAgentPhone = $data['agentPhone'];
- $record->newEnterpriseTag = $data['enterpriseTag'];
- $record->newOrganizationTag = $data['organizationTag'];
- $record->newInstitutionTag = $data['institutionTag'];
- $record->newEnterpriseType = $data['enterpriseType'];
- $record->newBankCard = $data['bankCard'];
- $record->newBank = $data['bank'];
- $record->newBankNetwork = $data['bankNetwork'];
- } else {
- $fields = array_filter(explode(",", $record->modify_fields));
- for ($i = 0; $i < count($fields); $i++) {
- $key = lcfirst(substr($fields[$i], 3));
- $record[$fields[$i]] = $data[$key]; //仅可修改选择的字段
- }
- }
- $record->newProvinceName = $data['province'] ? LocationApi::getNameByCode($data['province']) : null;
- $record->newCityName = $data['city'] ? LocationApi::getNameByCode($data['city']) : null;
- $record->newCountyName = $data['county'] ? LocationApi::getNameByCode($data['county']) : null;
- if (!$record["newImgurl"]) {
- if (strtotime($record["createTime"]) < strtotime($this->compatible_time)) {
- $where = [];
- $where[] = ["mainId", "=", $record_id];
- $where[] = ["api", "=", "businessLicense"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $record["newImgurl"] = $_uploadFile["url"];
- } else {
- $record["newImgurl"] = $ep["imgurl"];
- }
- }
- }
- if (!$record["newBankImg"]) {
- if (strtotime($record["createTime"]) < strtotime($this->compatible_time)) {
- $where = [];
- $where[] = ["mainId", "=", $record_id];
- $where[] = ["api", "=", "businessBank"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $record["newBankImg"] = $_uploadFile["url"];
- } else {
- $record["newBankImg"] = $ep["bankImg"];
- }
- }
- }
- if (!$record["newDomainImg"]) {
- if (strtotime($record["createTime"]) < strtotime($this->compatible_time)) {
- $where = [];
- $where[] = ["mainId", "=", $record_id];
- $where[] = ["api", "=", "businessDomain"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $record["newDomainImg"] = $_uploadFile["url"];
- } else {
- $record["newDomainImg"] = $ep["domainImg"];
- }
- }
- }
- if (!$record["newBeian"]) {
- if (strtotime($record["createTime"]) < strtotime($this->compatible_time)) {
- $where = [];
- $where[] = ["mainId", "=", $record_id];
- $where[] = ["api", "=", "businessBeian"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $record["newBeian"] = $_uploadFile["url"];
- } else {
- $record["newBeian"] = $ep["beian"];
- }
- }
- }
- $files = $this->request->file();
- if ($files) {
- $uploadapi = new UploadApi();
- $modify_files = array_filter(explode(",", $record->modify_files)); //["newImgurl", "newBankImg", "newDomainImg", "newTypeImg", "newBeian"];
- if (strtotime($record->createTime) < strtotime($this->compatible_time)) {
- //旧typeid需要转换成新的禁用文件格式
- $oldtypes = ["1161965644164075522" => "newImgurl", "1518753449987148467" => "newImgurl", "1518328155588131269" => "newBankImg", "1518926324960220206" => "newBankImg",
- "1518941016720463523" => "newDomainImg", "1519109971871948101" => "newBeian", "1519185486755815382" => "newBeian"];
- foreach ($modify_files as $key => $_typeId) {
- if ($oldtypes[$_typeId]) {
- $modify_files[$key] = $oldtypes[$_typeId];
- }
- }
- }
- $uploadAllowed = $record->checkState == 1 || ($record->checkState != 1 && in_array("newImgurl", $modify_files)) ? true : false;
- if (array_key_exists('imgurl', $files) && $uploadAllowed) {
- $upload_result = $uploadapi->uploadOne($this->request->file('imgurl'), 'system');
- if ($upload_result->code == 500) {
- return \StrUtil::back($upload_result, "EpChangeEdit.callBack");
- }
- $record["newImgurl"] = $upload_result->filepath;
- }
- //检验附件 开户许可证
- $uploadAllowed = $record->checkState == 1 || ($record->checkState != 1 && in_array("newBankImg", $modify_files)) ? true : false;
- if (array_key_exists('bankImg', $files) && $uploadAllowed) {
- $upload_result1 = $uploadapi->uploadOne($this->request->file('bankImg'), 'system');
- if ($upload_result1->code == 500) {
- return \StrUtil::back($upload_result1, "EpChangeEdit.callBack");
- }
- $record["newBankImg"] = $upload_result1->filepath;
- }
- //检验附件 行业领域佐证材料
- $uploadAllowed = $record->checkState == 1 || ($record->checkState != 1 && in_array("newDomainImg", $modify_files)) ? true : false;
- if (array_key_exists('domainImg', $files) && $uploadAllowed) {
- $upload_result2 = $uploadapi->uploadOne($this->request->file('domainImg'), 'system');
- if ($upload_result2->code == 500) {
- return \StrUtil::back($upload_result2, "EpChangeEdit.callBack");
- }
- $record["newDomainImg"] = $upload_result2->filepath;
- }
- //检验附件 规上、高新技术、专精特新企业需要上传佐证材料
- $uploadAllowed = $record->checkState == 1 || ($record->checkState != 1 && in_array("newTypeImg", $modify_files)) ? true : false;
- if (array_key_exists('typeImg', $files) && $uploadAllowed) {
- $upload_result4 = $uploadapi->uploadOne($this->request->file('typeImg'), 'system');
- if ($upload_result4->code == 500) {
- return \StrUtil::back($upload_result4, "EpChangeEdit.callBack");
- }
- $record["newTypeImg"] = $upload_result4->filepath;
- }
- //检验附件 人才联络员备案表
- $uploadAllowed = $record->checkState == 1 || ($record->checkState != 1 && in_array("newBeian", $modify_files)) ? true : false;
- if (array_key_exists('beian', $files) && $uploadAllowed) {
- $upload_result3 = $uploadapi->uploadOne($this->request->file('beian'), 'system');
- if ($upload_result3->code == 500) {
- return \StrUtil::back($upload_result3, "EpChangeEdit.callBack");
- }
- $record["newBeian"] = $upload_result3->filepath;
- }
- }
- if (!$record["newImgurl"]) {
- throw new ValidateException("请上传营业执照");
- }
- if ($ep->special == 0) {
- if (!$record["newBankImg"] && ($ep->type == CommonConst::ENTERPRISE_NORMAL || $ep->type == CommonConst::ENTERPRISE_WJ)) {
- throw new ValidateException("请上传开户许可证/基本存款账户信息");
- }
- if ($ep->type == CommonConst::ENTERPRISE_NORMAL && $data["agencyType"] == 1 && !$record["newDomainImg"]) {
- throw new ValidateException("请上传行业领域佐证材料");
- }
- if ($data["agencyType"] != 1) {
- $record["newDomainImg"] = null;
- }
- if (in_array($record->newEnterpriseType, ["guishang", "gaoxinjishu", "zhuanjingtexin"]) && !$record["newTypeImg"]) {
- throw new ValidateException("规上、高新技术、专精特新企业需要上传佐证材料");
- }
- if (!in_array($record->newEnterpriseType, ["guishang", "gaoxinjishu", "zhuanjingtexin"])) {
- $record["newTypeImg"] = null;
- }
- }
- if (!$record["newBeian"]) {
- throw new ValidateException("请上传人才联络员信息备案表");
- }
- $record->updateTime = date("Y-m-d H:i:s");
- $record->updateUser = session("user")["uid"];
- $record->save();
- $log = [
- 'id' => getStringId(),
- 'category' => 'enterprise_change',
- 'mainId' => '',
- 'type' => 10,
- 'active' => 1,
- 'state' => 1,
- 'step' => 100,
- 'stateChange' => '保存未提交',
- 'description' => '机构信息变更记录修改成功',
- 'createTime' => date("Y-m-d H:i:s", time()),
- 'createUser' => '用户'
- ];
- $success_msg = "修改成功";
- //$res = ['msg' => '修改成功', 'code' => 200, 'obj' => $record];
- }
- TalentChecklog::create($log);
- $response_object->id = $record_id;
- $response_object->code = 200;
- $response_object->msg = $success_msg;
- return \StrUtil::back($response_object, "EpChangeEdit.callBack");
- //return json($res);
- } catch (ValidateException $e) {
- $response_object->code = 500;
- $response_object->msg = is_array($e->getError()) ? implode("<br>", $e->getError()) : $e->getError();
- return \StrUtil::back($response_object, "EpChangeEdit.callBack");
- //return json(["msg" => array_pop($error), 'code' => 500]);
- }
- }
- public function toUpdate() {
- $id = trim($this->request['id']);
- $ecr = EnterpriseRecord::findOrEmpty($id);
- $ep = Enterprise::where('id', $ecr->mainId)->find();
- $ecr["special"] = $ep["special"];
- $time = $this->compatible_time;
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $_files = explode(",", $ecr["modify_files"]);
- $_new_files = [];
- foreach ($_files as $_file) {
- $where = [];
- $where[] = ["id", "=", $_file];
- $_filetype = CurrentcyFileType::where($where)->find();
- switch ($_filetype["api"]) {
- case "businessLicense":
- $_new_files[] = "newImgurl";
- break;
- case "businessBank";
- $_new_files[] = "newBankImg";
- break;
- case "businessDomain";
- $_new_files[] = "newDomainImg";
- break;
- case "businessBeian";
- $_new_files[] = "newBeian";
- break;
- default:
- $_new_files[] = $_file;
- break;
- }
- }
- $ecr["modify_files"] = implode(",", $_new_files);
- }
- //营业执照
- if (!$ecr["newImgurl"]) {
- //兼容旧filetype
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $where = [];
- $where[] = ["mainId", "=", $id];
- $where[] = ["api", "=", "businessLicense"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $ecr["newImgurl"] = $_uploadFile["url"];
- } else {
- $ecr["newImgurl"] = $ep["imgurl"];
- }
- }
- }
- if ($ecr["newImgurl"]) {
- $pathinfo = pathinfo($ecr["newImgurl"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["imgurl_is_img"] = 1;
- }
- }
- //备案表
- if (!$ecr["newBeian"]) {
- //兼容旧filetype
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $where = [];
- $where[] = ["mainId", "=", $id];
- $where[] = ["api", "=", "businessBeian"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $ecr["newBeian"] = $_uploadFile["url"];
- } else {
- $ecr["newBeian"] = $ep["beian"];
- }
- }
- }
- if ($ecr["newBeian"]) {
- $pathinfo = pathinfo($ecr["newBeian"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["beian_is_img"] = 1;
- }
- }
- //行业领域
- if (!$ecr["newDomainImg"]) {
- //兼容旧filetype
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $where = [];
- $where[] = ["mainId", "=", $id];
- $where[] = ["api", "=", "businessDomain"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $ecr["newDomainImg"] = $_uploadFile["url"];
- } else {
- $ecr["newDomainImg"] = $ep["domainImg"];
- }
- }
- }
- if ($ecr["newDomainImg"]) {
- $pathinfo = pathinfo($ecr["newDomainImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["domainImg_is_img"] = 1;
- }
- }
- //规上、高新技术、专精特新企业需要上传佐证材料
- if ($ecr["newTypeImg"]) {
- $pathinfo = pathinfo($ecr["newTypeImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["typeImg_is_img"] = 1;
- }
- }
- //开户许可证
- if (!$ecr["newBankImg"]) {
- //兼容旧filetype
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $where = [];
- $where[] = ["mainId", "=", $id];
- $where[] = ["api", "=", "businessBank"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $ecr["newBankImg"] = $_uploadFile["url"];
- } else {
- $ecr["newBankImg"] = $ep["bankImg"];
- }
- }
- }
- if ($ecr["newBankImg"]) {
- $pathinfo = pathinfo($ecr["newBankImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["bankImg_is_img"] = 1;
- }
- }
- $template = "";
- $assigns = [];
- switch ($ep->type) {
- case CommonConst::ENTERPRISE_WJ:
- $template = "/api/hospital/to_update";
- $assigns["medicalCommunities"] = \app\common\api\Nhc::getMedicalCommunityList();
- break;
- case CommonConst::ENTERPRISE_GJ:
- $template = "/api/school/to_update";
- break;
- }
- $assigns["ecr"] = $ecr;
- return view($template, $assigns);
- }
- public function submitToCheck() {
- $id = trim($this->request->post('id'));
- if (!$id) {
- return json(['msg' => '记录为空', 'code' => 500]);
- }
- $obj = EnterpriseRecord::find($id);
- if (!$obj) {
- return json(['msg' => '提交审核失败,请先填写基础信息', 'code' => 500]);
- }
- if (!in_array($obj["checkState"], [1, 3, 6])) {
- return json(['msg' => '不能重复提交审核', 'code' => 500]);
- }
- $ep = EnterpriseApi::getOne($obj->mainId);
- //20220918增加根据不同的企业类型显示不同的信息变更界面|20221014废弃使用filetype
- /* switch ($ep->special) {
- case 0:
- $org_type = 'enterpriseChange';
- break;
- case 1:
- $org_type = 'governmentChange';
- break;
- default:
- break;
- }
- $list = CurrentcyFileType::where('type', $org_type)->where('active', 1)->select();
- if (!$list || count($list) <= 0) {
- return json(['msg' => '缺少附件', 'code' => 500]);
- }
- $error_msg = "";
- foreach ($list as $k => $v) {
- if ($v['must'] == 1) {
- $count = TalentCommonFile::where('mainId', $id)->where('typeId', $v['id'])->count();
- if ($count == 0) {
- if (strlen($error_msg) == 0) {
- $error_msg = "以下为必传附件:";
- }
- $error_msg .= $v['name'] . ";";
- }
- }
- }
- if (strlen($error_msg) > 0) {
- return json(['msg' => $error_msg, 'code' => 500]);
- } */
- if ($obj['checkState'] == 3 || $obj['checkState'] == 6) {
- $obj['checkState'] = 5;
- $state = 5;
- } else {
- $obj['checkState'] = 2;
- $state = 2;
- }
- $obj->save();
- $log = [
- 'id' => getStringId(),
- 'category' => 'enterprise_change',
- 'mainId' => $id,
- 'type' => 10,
- 'active' => 1,
- 'state' => $state,
- 'step' => 100,
- 'stateChange' => "<span class='label'>待提交</span>-><span class='label label-success'>待审核</span>",
- 'description' => '提交审核',
- 'createTime' => date("Y-m-d H:i:s", time()),
- 'createUser' => '用户'
- ];
- TalentChecklog::create($log);
- return json(['msg' => '提交审核成功', 'code' => 200, 'obj' => 1]);
- }
- public function toDetail() {
- $id = trim($this->request['id']);
- if (!$id) {
- return json(['msg' => '记录为空', 'code' => 500]);
- }
- $ecr = EnterpriseRecord::find($id);
- $ep = EnterpriseApi::getOne($ecr['mainId']);
- $streetList = DictApi::selectByParentCode('street');
- $ecr["special"] = $ep["special"];
- $ecr['oldStreetName'] = $streetList[$ecr['oldStreet']];
- $ecr['newStreetName'] = $streetList[$ecr['newStreet']];
- //20220918增加根据不同的企业类型显示不同的信息变更界面
- $time = $this->compatible_time;
- //营业执照
- if (!$ecr["oldImgurl"]) {
- $ecr["oldImgurl"] = $ep["imgurl"];
- }
- if ($ecr["oldImgurl"]) {
- $pathinfo = pathinfo($ecr["oldImgurl"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["oldImgurl_is_img"] = 1;
- }
- }
- if (!$ecr["newImgurl"]) {
- //兼容旧filetype
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $where = [];
- $where[] = ["mainId", "=", $id];
- $where[] = ["api", "=", "businessLicense"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $ecr["newImgurl"] = $_uploadFile["url"];
- } else {
- $ecr["newImgurl"] = $ep["imgurl"];
- }
- }
- }
- if ($ecr["newImgurl"]) {
- $pathinfo = pathinfo($ecr["newImgurl"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["newImgurl_is_img"] = 1;
- }
- }
- //备案表
- if (!$ecr["oldBeian"]) {
- $ecr["oldBeian"] = $ep["beian"];
- }
- if ($ecr["oldBeian"]) {
- $pathinfo = pathinfo($ecr["oldBeian"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["oldBeian_is_img"] = 1;
- }
- }
- if (!$ecr["newBeian"]) {
- //兼容旧filetype
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $where = [];
- $where[] = ["mainId", "=", $id];
- $where[] = ["api", "=", "businessBeian"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $ecr["newBeian"] = $_uploadFile["url"];
- } else {
- $ecr["newBeian"] = $ep["beian"];
- }
- }
- }
- if ($ecr["newBeian"]) {
- $pathinfo = pathinfo($ecr["newBeian"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["newBeian_is_img"] = 1;
- }
- }
- //行业领域
- if (!$ecr["oldDomainImg"]) {
- $ecr["oldDomainImg"] = $ep["domainImg"];
- }
- if ($ecr["oldDomainImg"]) {
- $pathinfo = pathinfo($ecr["oldDomainImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["oldDomainImg_is_img"] = 1;
- }
- }
- if (!$ecr["newDomainImg"]) {
- //兼容旧filetype
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $where = [];
- $where[] = ["mainId", "=", $id];
- $where[] = ["api", "=", "businessDomain"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $ecr["newDomainImg"] = $_uploadFile["url"];
- } else {
- $ecr["newDomainImg"] = $ep["domainImg"];
- }
- }
- }
- if ($ecr["newDomainImg"]) {
- $pathinfo = pathinfo($ecr["newDomainImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["newDomainImg_is_img"] = 1;
- }
- }
- //规上、高新技术、专精特新企业需要上传佐证材料
- if ($ecr["oldTypeImg"]) {
- $pathinfo = pathinfo($ecr["oldTypeImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["oldTypeImg_is_img"] = 1;
- }
- }
- if ($ecr["newTypeImg"]) {
- $pathinfo = pathinfo($ecr["newTypeImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["newTypeImg_is_img"] = 1;
- }
- }
- //开户许可证
- if (!$ecr["oldBankImg"]) {
- $ecr["oldBankImg"] = $ep["bankImg"];
- }
- if ($ecr["oldBankImg"]) {
- $pathinfo = pathinfo($ecr["oldBankImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["oldBankImg_is_img"] = 1;
- }
- }
- if (!$ecr["newBankImg"]) {
- //兼容旧filetype
- if (strtotime($ecr["createTime"]) < strtotime($time)) {
- $where = [];
- $where[] = ["mainId", "=", $id];
- $where[] = ["api", "=", "businessBank"];
- $where[] = ["active", "=", 1];
- $_uploadFile = TalentCommonFile::alias("tcf")->leftJoin("new_currency_filetype ft", "ft.id=tcf.typeId")->where($where)->order("tcf.createTime desc")->find();
- if ($_uploadFile) {
- $ecr["newBankImg"] = $_uploadFile["url"];
- } else {
- $ecr["newBankImg"] = $ep["bankImg"];
- }
- }
- }
- if ($ecr["newBankImg"]) {
- $pathinfo = pathinfo($ecr["newBankImg"]);
- if (in_array($pathinfo["extension"], ["jpeg", "jpg", "png", "gif"])) {
- $ecr["newBankImg_is_img"] = 1;
- }
- }
- switch ($ep->special) {
- case 0:
- $agencyTypeList = DictApi::selectByParentCode('agency_type');
- $tagList = DictApi::selectByParentCode('enterprise_tag');
- $typeList = DictApi::selectByParentCode('enterprise_type');
- $industryFieldNew = DictApi::selectByParentCode('industry_field');
- $industry = DictApi::findDictByCode($ecr['oldIndustryFieldOld']);
- $ecr['oldIndustryFieldOldName'] = $industry['name'];
- $industry = DictApi::findDictByCode($ecr['newIndustryFieldOld']);
- $ecr['newIndustryFieldOldName'] = $industry['name'];
- $ecr['oldEnterpriseTagName'] = $tagList[$ecr['oldEnterpriseTag']];
- $ecr['newEnterpriseTagName'] = $tagList[$ecr['newEnterpriseTag']];
- $ecr['oldEnterpriseTypeName'] = $typeList[$ecr['oldEnterpriseType']];
- $ecr['newEnterpriseTypeName'] = $typeList[$ecr['newEnterpriseType']];
- $ecr['oldIndustryFieldNewName'] = $industryFieldNew[$ecr['oldIndustryFieldNew']];
- $ecr['newIndustryFieldNewName'] = $industryFieldNew[$ecr['newIndustryFieldNew']];
- $ecr['oldAgencyTypeName'] = $agencyTypeList[$ecr['oldAgencyType']];
- $ecr['newAgencyTypeName'] = $agencyTypeList[$ecr['newAgencyType']];
- break;
- case 1:
- $tagList = DictApi::selectByParentCode('institution_tag');
- $ecr['oldInstitutionTagName'] = $tagList[$ecr['oldInstitutionTag']];
- $ecr['newInstitutionTagName'] = $tagList[$ecr['newInstitutionTag']];
- break;
- case 3:
- $tagList = DictApi::selectByParentCode('organization_tag');
- $ecr['oldOrganizationTagName'] = $tagList[$ecr['oldOrganizationTag']];
- $ecr['newOrganizationTagName'] = $tagList[$ecr['newOrganizationTag']];
- break;
- default:
- break;
- }
- $oldArea = array_filter([$ecr["oldProvinceName"], $ecr["oldCityName"], $ecr["oldCountyName"]]);
- $newArea = array_filter([$ecr["newProvinceName"], $ecr["newCityName"], $ecr["newCountyName"]]);
- $ecr["newFullLocationName"] = $newArea ? implode("", $newArea) : "";
- $ecr["oldFullLocationName"] = $newArea ? implode("", $newArea) : "";
- $template = "";
- switch ($ep->type) {
- case CommonConst::ENTERPRISE_WJ:
- $template = "/api/hospital/to_detail";
- $medicalCommunityMap = \app\common\api\Nhc::getMedicalCommunityMap();
- $ecr["newMedicalCommunityName"] = $medicalCommunityMap[$ecr["newMedicalCommunityId"]];
- $ecr["oldMedicalCommunityName"] = $medicalCommunityMap[$ecr["oldMedicalCommunityId"]];
- break;
- case CommonConst::ENTERPRISE_GJ:
- $template = "/api/school/to_detail";
- break;
- }
- return view($template, ['ecr' => $ecr]);
- }
- public function gotoChangeHeadPortraitPage() {
- $uid = $this->user["uid"];
- $userInfo = EnterpriseApi::getOne($uid);
- return view("enterprise_change_head", ["headPortrait" => $userInfo["headPortrait"]]);
- }
- public function changeHeadPortrait() {
- $response = new \stdClass();
- $response->code = 500;
- $uid = $this->user["uid"];
- $userInfo = EnterpriseApi::getOne($uid);
- if ($this->request->file()) {
- $headPortrait = $this->request->file("headPortrait");
- $upload = new \app\common\api\UploadApi();
- $result = $upload->uploadOne($headPortrait, "image", "person/photo");
- if ($result->code != 200) {
- $response->msg = $result->msg;
- return \StrUtil::back($response, "ech.callback");
- }
- if ($userInfo["headPortrait"]) {
- //如果新照片符合像素要求,则删除旧照片
- $old_head_url = "storage/" . $userInfo ["headPortrait"];
- if (file_exists($old_head_url))
- @unlink($old_head_url);
- }
- $data["id"] = $uid;
- $data["headPortrait"] = $result->filepath;
- $data["updateUser"] = $uid;
- $data["updateTime"] = date("Y-m-d H:i:s");
- EnterpriseApi::updateById($data);
- $user = new \app\common\api\UserApi($userInfo["username"], "", 2);
- $user->setSession();
- $response->code = 200;
- $response->msg = "修改成功!";
- $response->url = getStoragePath($result->filepath);
- return \StrUtil::back($response, "ech.callback");
- } else {
- $response->msg = "没有上传新头像";
- return \StrUtil::back($response, "ech.callback");
- }
- }
- //注销账号
- public function closeAccount() {
- $user = $this->user;
- $table = "un_enterpriseclose_record";
- $response = new \stdClass();
- $response->code = 500;
- $where = [];
- $where[] = ["enterpriseId", "=", $user["uid"]];
- $record = Db::table($table)->where($where)->order("createTime desc")->find();
- if ($record) {
- $record["files"] = json_decode($record["files"], true);
- }
- $ep = EnterpriseApi::getOne($user["uid"]);
- if ($record["checkState"] == 3 || !$ep) {
- $response->msg = "该账号不存在";
- return \StrUtil::back($response, "EnterpriseCenter.callback");
- }
- if ($record["checkState"] == 1 || $record["checkState"] == 9) {
- $response->msg = "您的注销申请正在审核中,请耐心等候!";
- return \StrUtil::back($response, "EnterpriseCenter.callback");
- }
- $reason = \StrUtil::getRequestDecodeParam($this->request, "reason");
- if (!$reason) {
- $response->msg = "注销原因不能为空";
- return \StrUtil::back($response, "EnterpriseCenter.callback");
- }
- if (!$tmp && !$record["files"]) {
- $response->msg = "请上传附件";
- return \StrUtil::back($response, "EnterpriseCenter.callback");
- }
- $upload = new \app\common\api\UploadApi();
- $files = $this->request->file("closeAccountFiles");
- $tmp = [];
- foreach ($files as $file) {
- $result = $upload->uploadOne($file, "image", "enterprise/close_account_files");
- if ($result->code != 200) {
- $response->msg = $result->msg;
- return \StrUtil::back($response, "EnterpriseCenter.callback");
- }
- $tmp[] = $result->filepath;
- }
- Db::startTrans();
- try {
- if (\StrUtil::isEmpOrNull($record["firstSubmitTime"])) {
- $data["firstSubmitTime"] = date("Y-m-d H:i:s");
- }
- $data["newSubmitTime"] = date("Y-m-d H:i:s");
- $data["reason"] = $reason;
- $data["files"] = $tmp ? json_encode($tmp) : $record["files"];
- $data["checkState"] = $record["checkState"] == 2 ? 9 : 1;
- if ($record["id"]) {
- $data["id"] = $record["id"];
- $data["updateTime"] = date("Y-m-d H:i:s");
- $data["updateUser"] = $user["uid"];
- $res = Db::table($table)->save($data);
- } else {
- $data["id"] = getStringId();
- $data["name"] = $ep["name"];
- $data["username"] = $ep["username"];
- $data["idCard"] = $ep["idCard"];
- $data["type"] = $ep["type"];
- $data["enterpriseId"] = $user["uid"];
- $data["createTime"] = date("Y-m-d H:i:s");
- $data["createUser"] = $user["uid"];
- $res = Db::table($table)->insert($data);
- }
- $newLog = [
- 'id' => getStringId(),
- 'mainId' => $data["id"],
- 'category' => 'enterprise_change',
- 'type' => 10,
- 'typeFileId' => null,
- 'active' => 1,
- 'state' => 1,
- 'step' => 100,
- 'stateChange' => '',
- 'description' => $record["checkState"] == 2 ? '用户重新提交账户注销申请' : '用户提交账户注销申请',
- 'createTime' => date("Y-m-d H:i:s"),
- 'createUser' => $user ? sprintf("%s(%s)", $user["account"], $user["companyName"] ?: $user["rolename"]) : "系统"
- ];
- $res = Db::table("new_talent_checklog")->insert($newLog);
- $response->msg = "注销申请提交成功,请耐心等待审核";
- $response->code = 200;
- Db::commit();
- return \StrUtil::back($response, "EnterpriseCenter.callback");
- } catch (\think\db\exception\DbException $e) {
- Db::rollback();
- $response->msg = $e->getMessage();
- return \StrUtil::back($response, "EnterpriseCenter.callback");
- }
- }
- }
|