where('title',$name)->find(); if($row){ return $row['id']; }else{ $id = Db::name('zc_position')->insertGetId([ 'title' => $name, 'intro' => '0', 'type' => 0, //地区 默认全国 'dj_group_id' => 0, //等级分组 'add_time' => time(), 'update_time' => time(), ]); return $id; } } /* * 插入等级和等级分类 */ public function zcTypeAndDj($aid,$name){ //查询职称等级组id $one = Db::name('zc_position')->where(['id'=>$aid])->find(); //dj_group_id //查询是否存在 $row = Db::name('zcdj_position') ->where('title',$name) ->where('type',$one['dj_group_id']) ->find(); if($row){ //存在 return $row['id']; }else{ //新增 if((int)$one['dj_group_id'] > 0){ //已有等级分组 但是没有该等级 新增 $id = Db::name('zcdj_position')->insertGetId([ 'title' => $name, 'intro' => '0', 'type' => $one['dj_group_id'], //所属分组 'add_time' => time(), 'update_time' => time(), ]); return $id; }else{ //存在手动添加的相同等级信息 只是未绑定职称 忽略这种情况 //不同等级分组 可能存在等级名称相同 允许存在这种情况 //创建新分组 $cid = Db::name('zc_type')->insertGetId([ 'name' => $one['title'], 'pid' => 25, 'level' => 1, 'add_time' => time(), 'update_time' => time(), 'catid' => 3 ]); //创建等级 $did = Db::name('zcdj_position')->insertGetId([ 'title' => $name, 'type' => $cid, 'intro' => '0', 'add_time' => time(), 'update_time' => time() ]); //绑定职称 Db::name('zc_position')->where(['id'=>$aid])->update([ 'dj_group_id' => $cid ]); return $did; } } } /* * 新增妆业 */ public function zczyAdd($aid,$rowData){ $one = Db::name('zc_position')->where(['id'=>$aid])->find(); //查询分类是否存在 $two = Db::name('zc_type')->where([ 'pid' => 23, //默认都属于计算机 'level' => 1, 'is_del' => 0, 'name' => $one['title'], 'catid' => 2, ])->find(); if($two){ $yid = $two['id']; }else{ //创建分类 $yid = Db::name('zc_type')->insertGetId([ 'name' => $one['title'], 'pid' => 23, 'level' => 1, 'add_time' => time(), 'update_time' => time(), 'catid' => 2 ]); } //处理分类 $list_ids = []; foreach ($rowData[0] as $k=>$v){ if($k >= 10){ if(!empty($v)) { //查询专业是否存在 不考虑分类 $row = Db::name('zczy_position') ->where('title', $v) //->where('type',$yid) ->where('is_del', 0) ->find(); if ($row) { $list_ids[] = $row['id']; } else { //首次创建 以职称为分类名称 $zy_id = Db::name('zczy_position')->insertGetId([ 'title' => $v, 'type' => $yid, 'intro' => '0', 'add_time' => time(), 'update_time' => time() ]); $list_ids[] = $zy_id; } } } } return $list_ids; } /* * 职称绑定专业 */ public function bindZcZy($aid,$yids){ //删除旧数据 Db::name('zc_zy') ->where(['zc_id'=>$aid,'is_del'=>0]) ->update(['is_del'=>1,'del_time'=>time()]); //插入新数据 $map_data = []; foreach ($yids as $k => $v) { $map_data[] = [ 'map_id' => $v, //专业的id 'zc_id' => $aid, 'add_time' => time(), 'is_del' => 0, 'del_time' => 0 ]; } Db::name('zc_zy')->insertAll($map_data); } //添加证书 public function ZsZcAdd($aid,$name){ $one = Db::name('zc_position')->where(['id'=>$aid])->find(); //查询证书分类是否存在 $two = Db::name('zc_type')->where([ 'pid' => 17, //默认都属于计算机 'level' => 1, 'is_del' => 0, 'name' => $one['title'], 'catid' => 1, ])->find(); if(empty($two)){ //插入证书分类 $sid = Db::name('zc_type')->insertGetId([ 'name' => $one['title'], 'pid' => 17, 'level' => 1, 'add_time' => time(), 'update_time' => time(), 'catid' => 1 ]); }else{ $sid = $two['id']; } //查询证书是否存在 $row = Db::name('zczs_position') ->where('title',$name) ->where('type',$sid) //要不要绑定分类 ->where('is_del',0) ->find(); if($row){ return $row['id']; }else{ //首次创建 以职称为分类名称 $zs_id = Db::name('zczs_position')->insertGetId([ 'title' => $name, 'type' => $sid, 'intro' => '0', 'add_time' => time(), 'update_time' => time() ]); return $zs_id; } } /* * 证书绑定职称 */ public function bingZs($aid,$zids){ //删除旧数据 Db::name('zc_zs') ->where(['zc_id'=>$aid,'is_del'=>0]) ->update(['is_del'=>1,'del_time'=>time()]); //插入新数据 $map_data = []; foreach ($zids as $k => $v) { $map_data[] = [ 'map_id' => $v, //专业的id 'zc_id' => $aid, 'add_time' => time(), 'is_del' => 0, 'del_time' => 0 ]; } Db::name('zc_zs')->insertAll($map_data); } /* * 证书绑定学历 */ public function zsBindXl($sid,$rowData){ $xl = $rowData[0][4]; $xl_str = [ '博士' => 6, '硕士' => 5, //'研究生' => 60, //'双学位' => 50, '本科' => 4, '大专' => 3, '高技' => 2, '中专' => 1, ]; if(!empty($xl)){ //同一职称下 不同学历 可能存在相同证书名称 //判断大小 $bdxl = Db::name('zczs_position')->where(['id'=>$sid])->value('bdxl'); $xl_num = $xl_str[$xl]; //已绑定学历且大于当前学历 执行更新 if(empty($bdxl) || !empty($bdxl) && (int)$bdxl > (int)$xl_num){ Db::name('zczs_position')->where(['id'=>$sid])->update(['bdxl'=>$xl_num]); } } } /* * 添加主规则记录 返回id */ public function addZcwd($aid,$did,$rowData){ //地区 $area = $rowData[0][1]; if(!empty($area)){ //查询地区 $a = Db::name('citysite') ->where('name','like','%'.$area) ->find(); $sf = $a['id']; $cs = 0; //判断是否城市 if((int)$a['level'] === 2){ //查询省份 $b = Db::name('citysite') ->where('id','=',$a['parent_id']) ->find(); $sf = $b['id']; //省份 $cs = $a['id']; //城市 } }else{ //默认全国 $sf = 28; $cs = 0; } $zc = Db::name('zcwd_position')->where([ 'type' => $aid, //职称ID 'sf' => $sf, 'cs' => $cs, 'sbdj' => $did, 'is_del' => 0 ])->find(); if($zc){ return $zc['id']; }else{ //标题 $title = $rowData[0][0].'-'.$rowData[0][2].'-'.$rowData[0][1]; //查询是否已存在该规则 $data = array( 'title' => $title, 'type' => $aid, //职称ID 'intro' => '0', //备注 'admin_id' => 1, 'lang' => 'cn', 'add_time' => getTime(), 'update_time' => getTime(), 'sf' => $sf, 'cs' => $cs, 'sbdj' => $did, 'is_ega' => 0, 'ega_0' => 23, 'ega_1' => 60, 'byzy' => 0, 'zhengshu2' => '', 'xlyq' => 0, 'xxlx' => 0, 'bysj' => 0, 'bysj_time' => 0, 'is_zs' => 0, 'zhengshu' => '', 'sjnx' => 0, 'gzyq' => json_encode([]), 'qttj' => '', 'orderno' => date('YmdHis',time()).rand(1000,9999) ); $insertID = Db::name('zcwd_position')->insertGetId($data); return $insertID; } } /* * 添加学历 * 3学历 应该是 学校类型 * 4学历条件 * 5毕业年限 * 6年龄 * 7专业要求()一致 */ public function addZcXi($gid,$yids,$rowData){ //年龄 $nl = $rowData[0][6]; if(empty($nl)){ $is_ega = 0; $ega_0 = 18; $ega_1 = 99; }else{ $is_ega = 1; $ega_0 = $nl; $ega_1 = 99; } //专业要求 $zyyq = $rowData[0][7]; if($zyyq == '一致'){ $byzy = 1; //要求 }else{ $byzy = 0; //不要求 } //学历要求 $xlyq_str = $rowData[0][4]; $xl_str = [ '博士' => 6, '硕士' => 5, //'研究生' => 60, //'双学位' => 50, '本科' => 4, '大专' => 3, '高技' => 2, '中专' => 1, ]; $xlyq = 0; if(isset($xl_str[$xlyq_str])){ $xlyq = $xl_str[$xlyq_str]; } //学校类型 $xxlx_str = $rowData[0][3]; if($xxlx_str == '不限'){ $xxlx = 0; }else if($xxlx_str == '全日制'){ $xxlx = 1; }else if($xxlx_str == '非全日制'){ $xxlx = 2; }else{ //为空 $xxlx = 0; } //毕业年限 $bynx = $rowData[0][5]; if(empty($bynx)){ //不要求 $bysj = 0; $bynx = 0; }else{ $bysj = 1; } //判断是否存在 该规则 $oen = Db::name('zcwe_position') ->where([ 'type'=>$gid, //规则id 'is_del' => 0, 'is_ega' => $is_ega, 'ega_0' => $ega_0, 'ega_1' => $ega_1, 'byzy' => $byzy, //专业要求 'zhengshu2' => json_encode($yids,JSON_UNESCAPED_UNICODE), 'xlyq' => $xlyq, //学历要求 'xxlx' => $xxlx, //学校类型 'bysj' => $bysj, // 'bysj_time' => $bynx, ])->find(); if($oen){ //存在 return $oen['id']; }else{ //新增学历 //标题 $title = $rowData[0][0].'-'.$rowData[0][2].'-'.$rowData[0][1].'-'.$rowData[0][4]; //查询是否已存在该规则 $data = array( 'title' => $title, 'type' => $gid, //职称ID 'intro' => '0', //备注 'admin_id' => 1, 'lang' => 'cn', 'add_time' => getTime(), 'update_time' => getTime(), 'sf' => 0, 'cs' => 0, 'sbdj' => 0, 'is_ega' => $is_ega, 'ega_0' => $ega_0, 'ega_1' => $ega_1, 'byzy' => $byzy, //专业要求 'zhengshu2' => json_encode($yids,JSON_UNESCAPED_UNICODE), 'xlyq' => $xlyq, //学历要求 'xxlx' => $xxlx, //学校类型 'bysj' => $bysj, // 'bysj_time' => $bynx, 'is_zs' => 0, 'zhengshu' => '', 'sjnx' => 0, 'gzyq' => json_encode([]), 'qttj' => '' ); $insertID = Db::name('zcwe_position')->insertGetId($data); return $insertID; } } /* * 添加证书规则 */ public function addZsGz($gid,$xid,$sid,$rowData){ $oen = Db::name('zcwf_position') ->where([ 'type' => $gid, //所属职称主规则id 'type_son' => $xid, //所属上级学历id 'is_zs' => 1, 'zhengshu' => json_encode([$sid]), 'sjnx' => json_encode([$rowData[0][9]]), ])->find(); if($oen){ return $oen['id']; }else{ //标题 $title = $rowData[0][0].'-'.$rowData[0][2].'-'.$rowData[0][1].'-'.$rowData[0][4]; // 添加广告位置表信息 $data = array( 'title' => $title, 'type' => $gid, //所属职称主规则id 'type_son' => $xid, //所属上级学历id 'intro' => '0', //备注 'admin_id' => 1, 'lang' => 'cn', 'add_time' => getTime(), 'update_time' => getTime(), 'sf' => 0, 'cs' => 0, 'sbdj' => 0, 'is_ega' => 0, 'ega_0' => 0, 'ega_1' => 0, 'byzy' => 0, 'zhengshu2' => '', 'xlyq' => 0, 'xxlx' => 0, 'bysj' =>0, 'bysj_time' => 0, 'is_zs' => 1, 'zhengshu' => json_encode([$sid]), 'sjnx' => json_encode([$rowData[0][9]]), 'gzyq' => json_encode([]), 'qttj' => '', ); $insertID = Db::name('zcwf_position')->insertGetId($data); return $insertID; } } }