123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- <?php
-
-
- namespace app\api\model\v1;
-
- use think\Db;
- use think\Cache;
-
- class Zc extends Base{
-
- /*
- * 添加职称
- */
- public function zcPos($name){
- //查询是否存在
- $name = trim($name);
- $row = Db::name('zc_position')->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([(int)$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([(int)$sid]),
- 'sjnx' => json_encode([$rowData[0][9]]),
- 'gzyq' => json_encode([]),
- 'qttj' => '',
- );
- $insertID = Db::name('zcwf_position')->insertGetId($data);
- return $insertID;
- }
- }
- }
|