Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Zc.php 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. <?php
  2. namespace app\api\model\v1;
  3. use think\Db;
  4. use think\Cache;
  5. class Zc extends Base{
  6. /*
  7. * 添加职称
  8. */
  9. public function zcPos($name){
  10. //查询是否存在
  11. $name = trim($name);
  12. $row = Db::name('zc_position')->where('title',$name)->find();
  13. if($row){
  14. return $row['id'];
  15. }else{
  16. $id = Db::name('zc_position')->insertGetId([
  17. 'title' => $name,
  18. 'intro' => '0',
  19. 'type' => 0, //地区 默认全国
  20. 'dj_group_id' => 0, //等级分组
  21. 'add_time' => time(),
  22. 'update_time' => time(),
  23. ]);
  24. return $id;
  25. }
  26. }
  27. /*
  28. * 插入等级和等级分类
  29. */
  30. public function zcTypeAndDj($aid,$name){
  31. //查询职称等级组id
  32. $one = Db::name('zc_position')->where(['id'=>$aid])->find();
  33. //dj_group_id
  34. //查询是否存在
  35. $row = Db::name('zcdj_position')
  36. ->where('title',$name)
  37. ->where('type',$one['dj_group_id'])
  38. ->find();
  39. if($row){
  40. //存在
  41. return $row['id'];
  42. }else{
  43. //新增
  44. if((int)$one['dj_group_id'] > 0){
  45. //已有等级分组 但是没有该等级 新增
  46. $id = Db::name('zcdj_position')->insertGetId([
  47. 'title' => $name,
  48. 'intro' => '0',
  49. 'type' => $one['dj_group_id'], //所属分组
  50. 'add_time' => time(),
  51. 'update_time' => time(),
  52. ]);
  53. return $id;
  54. }else{
  55. //存在手动添加的相同等级信息 只是未绑定职称 忽略这种情况
  56. //不同等级分组 可能存在等级名称相同 允许存在这种情况
  57. //创建新分组
  58. $cid = Db::name('zc_type')->insertGetId([
  59. 'name' => $one['title'],
  60. 'pid' => 25,
  61. 'level' => 1,
  62. 'add_time' => time(),
  63. 'update_time' => time(),
  64. 'catid' => 3
  65. ]);
  66. //创建等级
  67. $did = Db::name('zcdj_position')->insertGetId([
  68. 'title' => $name,
  69. 'type' => $cid,
  70. 'intro' => '0',
  71. 'add_time' => time(),
  72. 'update_time' => time()
  73. ]);
  74. //绑定职称
  75. Db::name('zc_position')->where(['id'=>$aid])->update([
  76. 'dj_group_id' => $cid
  77. ]);
  78. return $did;
  79. }
  80. }
  81. }
  82. /*
  83. * 新增妆业
  84. */
  85. public function zczyAdd($aid,$rowData){
  86. $one = Db::name('zc_position')->where(['id'=>$aid])->find();
  87. //查询分类是否存在
  88. $two = Db::name('zc_type')->where([
  89. 'pid' => 23, //默认都属于计算机
  90. 'level' => 1,
  91. 'is_del' => 0,
  92. 'name' => $one['title'],
  93. 'catid' => 2,
  94. ])->find();
  95. if($two){
  96. $yid = $two['id'];
  97. }else{
  98. //创建分类
  99. $yid = Db::name('zc_type')->insertGetId([
  100. 'name' => $one['title'],
  101. 'pid' => 23,
  102. 'level' => 1,
  103. 'add_time' => time(),
  104. 'update_time' => time(),
  105. 'catid' => 2
  106. ]);
  107. }
  108. //处理分类
  109. $list_ids = [];
  110. foreach ($rowData[0] as $k=>$v){
  111. if($k >= 10){
  112. if(!empty($v)) {
  113. //查询专业是否存在 不考虑分类
  114. $row = Db::name('zczy_position')
  115. ->where('title', $v)
  116. //->where('type',$yid)
  117. ->where('is_del', 0)
  118. ->find();
  119. if ($row) {
  120. $list_ids[] = $row['id'];
  121. } else {
  122. //首次创建 以职称为分类名称
  123. $zy_id = Db::name('zczy_position')->insertGetId([
  124. 'title' => $v,
  125. 'type' => $yid,
  126. 'intro' => '0',
  127. 'add_time' => time(),
  128. 'update_time' => time()
  129. ]);
  130. $list_ids[] = $zy_id;
  131. }
  132. }
  133. }
  134. }
  135. return $list_ids;
  136. }
  137. /*
  138. * 职称绑定专业
  139. */
  140. public function bindZcZy($aid,$yids){
  141. //删除旧数据
  142. Db::name('zc_zy')
  143. ->where(['zc_id'=>$aid,'is_del'=>0])
  144. ->update(['is_del'=>1,'del_time'=>time()]);
  145. //插入新数据
  146. $map_data = [];
  147. foreach ($yids as $k => $v) {
  148. $map_data[] = [
  149. 'map_id' => $v, //专业的id
  150. 'zc_id' => $aid,
  151. 'add_time' => time(),
  152. 'is_del' => 0,
  153. 'del_time' => 0
  154. ];
  155. }
  156. Db::name('zc_zy')->insertAll($map_data);
  157. }
  158. //添加证书
  159. public function ZsZcAdd($aid,$name){
  160. $one = Db::name('zc_position')->where(['id'=>$aid])->find();
  161. //查询证书分类是否存在
  162. $two = Db::name('zc_type')->where([
  163. 'pid' => 17, //默认都属于计算机
  164. 'level' => 1,
  165. 'is_del' => 0,
  166. 'name' => $one['title'],
  167. 'catid' => 1,
  168. ])->find();
  169. if(empty($two)){
  170. //插入证书分类
  171. $sid = Db::name('zc_type')->insertGetId([
  172. 'name' => $one['title'],
  173. 'pid' => 17,
  174. 'level' => 1,
  175. 'add_time' => time(),
  176. 'update_time' => time(),
  177. 'catid' => 1
  178. ]);
  179. }else{
  180. $sid = $two['id'];
  181. }
  182. //查询证书是否存在
  183. $row = Db::name('zczs_position')
  184. ->where('title',$name)
  185. ->where('type',$sid) //要不要绑定分类
  186. ->where('is_del',0)
  187. ->find();
  188. if($row){
  189. return $row['id'];
  190. }else{
  191. //首次创建 以职称为分类名称
  192. $zs_id = Db::name('zczs_position')->insertGetId([
  193. 'title' => $name,
  194. 'type' => $sid,
  195. 'intro' => '0',
  196. 'add_time' => time(),
  197. 'update_time' => time()
  198. ]);
  199. return $zs_id;
  200. }
  201. }
  202. /*
  203. * 证书绑定职称
  204. */
  205. public function bingZs($aid,$zids){
  206. //删除旧数据
  207. Db::name('zc_zs')
  208. ->where(['zc_id'=>$aid,'is_del'=>0])
  209. ->update(['is_del'=>1,'del_time'=>time()]);
  210. //插入新数据
  211. $map_data = [];
  212. foreach ($zids as $k => $v) {
  213. $map_data[] = [
  214. 'map_id' => $v, //专业的id
  215. 'zc_id' => $aid,
  216. 'add_time' => time(),
  217. 'is_del' => 0,
  218. 'del_time' => 0
  219. ];
  220. }
  221. Db::name('zc_zs')->insertAll($map_data);
  222. }
  223. /*
  224. * 证书绑定学历
  225. */
  226. public function zsBindXl($sid,$rowData){
  227. $xl = $rowData[0][4];
  228. $xl_str = [
  229. '博士' => 6,
  230. '硕士' => 5,
  231. //'研究生' => 60,
  232. //'双学位' => 50,
  233. '本科' => 4,
  234. '大专' => 3,
  235. '高技' => 2,
  236. '中专' => 1,
  237. ];
  238. if(!empty($xl)){
  239. //同一职称下 不同学历 可能存在相同证书名称
  240. //判断大小
  241. $bdxl = Db::name('zczs_position')->where(['id'=>$sid])->value('bdxl');
  242. $xl_num = $xl_str[$xl];
  243. //已绑定学历且大于当前学历 执行更新
  244. if(empty($bdxl) || !empty($bdxl) && (int)$bdxl > (int)$xl_num){
  245. Db::name('zczs_position')->where(['id'=>$sid])->update(['bdxl'=>$xl_num]);
  246. }
  247. }
  248. }
  249. /*
  250. * 添加主规则记录 返回id
  251. */
  252. public function addZcwd($aid,$did,$rowData){
  253. //地区
  254. $area = $rowData[0][1];
  255. if(!empty($area)){
  256. //查询地区
  257. $a = Db::name('citysite')
  258. ->where('name','like','%'.$area)
  259. ->find();
  260. $sf = $a['id'];
  261. $cs = 0;
  262. //判断是否城市
  263. if((int)$a['level'] === 2){
  264. //查询省份
  265. $b = Db::name('citysite')
  266. ->where('id','=',$a['parent_id'])
  267. ->find();
  268. $sf = $b['id']; //省份
  269. $cs = $a['id']; //城市
  270. }
  271. }else{
  272. //默认全国
  273. $sf = 28;
  274. $cs = 0;
  275. }
  276. $zc = Db::name('zcwd_position')->where([
  277. 'type' => $aid, //职称ID
  278. 'sf' => $sf,
  279. 'cs' => $cs,
  280. 'sbdj' => $did,
  281. 'is_del' => 0
  282. ])->find();
  283. if($zc){
  284. return $zc['id'];
  285. }else{
  286. //标题
  287. $title = $rowData[0][0].'-'.$rowData[0][2].'-'.$rowData[0][1];
  288. //查询是否已存在该规则
  289. $data = array(
  290. 'title' => $title,
  291. 'type' => $aid, //职称ID
  292. 'intro' => '0', //备注
  293. 'admin_id' => 1,
  294. 'lang' => 'cn',
  295. 'add_time' => getTime(),
  296. 'update_time' => getTime(),
  297. 'sf' => $sf,
  298. 'cs' => $cs,
  299. 'sbdj' => $did,
  300. 'is_ega' => 0,
  301. 'ega_0' => 23,
  302. 'ega_1' => 60,
  303. 'byzy' => 0,
  304. 'zhengshu2' => '',
  305. 'xlyq' => 0,
  306. 'xxlx' => 0,
  307. 'bysj' => 0,
  308. 'bysj_time' => 0,
  309. 'is_zs' => 0,
  310. 'zhengshu' => '',
  311. 'sjnx' => 0,
  312. 'gzyq' => json_encode([]),
  313. 'qttj' => '',
  314. 'orderno' => date('YmdHis',time()).rand(1000,9999)
  315. );
  316. $insertID = Db::name('zcwd_position')->insertGetId($data);
  317. return $insertID;
  318. }
  319. }
  320. /*
  321. * 添加学历
  322. * 3学历 应该是 学校类型
  323. * 4学历条件
  324. * 5毕业年限
  325. * 6年龄
  326. * 7专业要求()一致
  327. */
  328. public function addZcXi($gid,$yids,$rowData){
  329. //年龄
  330. $nl = $rowData[0][6];
  331. if(empty($nl)){
  332. $is_ega = 0;
  333. $ega_0 = 18;
  334. $ega_1 = 99;
  335. }else{
  336. $is_ega = 1;
  337. $ega_0 = $nl;
  338. $ega_1 = 99;
  339. }
  340. //专业要求
  341. $zyyq = $rowData[0][7];
  342. if($zyyq == '一致'){
  343. $byzy = 1; //要求
  344. }else{
  345. $byzy = 0; //不要求
  346. }
  347. //学历要求
  348. $xlyq_str = $rowData[0][4];
  349. $xl_str = [
  350. '博士' => 6,
  351. '硕士' => 5,
  352. //'研究生' => 60,
  353. //'双学位' => 50,
  354. '本科' => 4,
  355. '大专' => 3,
  356. '高技' => 2,
  357. '中专' => 1,
  358. ];
  359. $xlyq = 0;
  360. if(isset($xl_str[$xlyq_str])){
  361. $xlyq = $xl_str[$xlyq_str];
  362. }
  363. //学校类型
  364. $xxlx_str = $rowData[0][3];
  365. if($xxlx_str == '不限'){
  366. $xxlx = 0;
  367. }else if($xxlx_str == '全日制'){
  368. $xxlx = 1;
  369. }else if($xxlx_str == '非全日制'){
  370. $xxlx = 2;
  371. }else{
  372. //为空
  373. $xxlx = 0;
  374. }
  375. //毕业年限
  376. $bynx = $rowData[0][5];
  377. if(empty($bynx)){
  378. //不要求
  379. $bysj = 0;
  380. $bynx = 0;
  381. }else{
  382. $bysj = 1;
  383. }
  384. //判断是否存在 该规则
  385. $oen = Db::name('zcwe_position')
  386. ->where([
  387. 'type'=>$gid, //规则id
  388. 'is_del' => 0,
  389. 'is_ega' => $is_ega,
  390. 'ega_0' => $ega_0,
  391. 'ega_1' => $ega_1,
  392. 'byzy' => $byzy, //专业要求
  393. 'zhengshu2' => json_encode($yids,JSON_UNESCAPED_UNICODE),
  394. 'xlyq' => $xlyq, //学历要求
  395. 'xxlx' => $xxlx, //学校类型
  396. 'bysj' => $bysj, //
  397. 'bysj_time' => $bynx,
  398. ])->find();
  399. if($oen){
  400. //存在
  401. return $oen['id'];
  402. }else{
  403. //新增学历
  404. //标题
  405. $title = $rowData[0][0].'-'.$rowData[0][2].'-'.$rowData[0][1].'-'.$rowData[0][4];
  406. //查询是否已存在该规则
  407. $data = array(
  408. 'title' => $title,
  409. 'type' => $gid, //职称ID
  410. 'intro' => '0', //备注
  411. 'admin_id' => 1,
  412. 'lang' => 'cn',
  413. 'add_time' => getTime(),
  414. 'update_time' => getTime(),
  415. 'sf' => 0,
  416. 'cs' => 0,
  417. 'sbdj' => 0,
  418. 'is_ega' => $is_ega,
  419. 'ega_0' => $ega_0,
  420. 'ega_1' => $ega_1,
  421. 'byzy' => $byzy, //专业要求
  422. 'zhengshu2' => json_encode($yids,JSON_UNESCAPED_UNICODE),
  423. 'xlyq' => $xlyq, //学历要求
  424. 'xxlx' => $xxlx, //学校类型
  425. 'bysj' => $bysj, //
  426. 'bysj_time' => $bynx,
  427. 'is_zs' => 0,
  428. 'zhengshu' => '',
  429. 'sjnx' => 0,
  430. 'gzyq' => json_encode([]),
  431. 'qttj' => ''
  432. );
  433. $insertID = Db::name('zcwe_position')->insertGetId($data);
  434. return $insertID;
  435. }
  436. }
  437. /*
  438. * 添加证书规则
  439. */
  440. public function addZsGz($gid,$xid,$sid,$rowData){
  441. $oen = Db::name('zcwf_position')
  442. ->where([
  443. 'type' => $gid, //所属职称主规则id
  444. 'type_son' => $xid, //所属上级学历id
  445. 'is_zs' => 1,
  446. 'zhengshu' => json_encode([(int)$sid]),
  447. 'sjnx' => json_encode([$rowData[0][9]]),
  448. ])->find();
  449. if($oen){
  450. return $oen['id'];
  451. }else{
  452. //标题
  453. $title = $rowData[0][0].'-'.$rowData[0][2].'-'.$rowData[0][1].'-'.$rowData[0][4];
  454. // 添加广告位置表信息
  455. $data = array(
  456. 'title' => $title,
  457. 'type' => $gid, //所属职称主规则id
  458. 'type_son' => $xid, //所属上级学历id
  459. 'intro' => '0', //备注
  460. 'admin_id' => 1,
  461. 'lang' => 'cn',
  462. 'add_time' => getTime(),
  463. 'update_time' => getTime(),
  464. 'sf' => 0,
  465. 'cs' => 0,
  466. 'sbdj' => 0,
  467. 'is_ega' => 0,
  468. 'ega_0' => 0,
  469. 'ega_1' => 0,
  470. 'byzy' => 0,
  471. 'zhengshu2' => '',
  472. 'xlyq' => 0,
  473. 'xxlx' => 0,
  474. 'bysj' =>0,
  475. 'bysj_time' => 0,
  476. 'is_zs' => 1,
  477. 'zhengshu' => json_encode([(int)$sid]),
  478. 'sjnx' => json_encode([$rowData[0][9]]),
  479. 'gzyq' => json_encode([]),
  480. 'qttj' => '',
  481. );
  482. $insertID = Db::name('zcwf_position')->insertGetId($data);
  483. return $insertID;
  484. }
  485. }
  486. }