Browse Source

Merge branch 'develop' of zhengxifeng/zc100 into master

zhengxifeng 5 months ago
parent
commit
4d914075b8

+ 48
- 8
application/api/controller/Diyajax.php View File

@@ -176,9 +176,9 @@ class Diyajax extends Base
176 176
     public function getZcDjList(){
177 177
 
178 178
          $name = [
179
-             '技术员职称',
180
-             '助理职称',
181
-             '中级职称',
179
+             '技术员',
180
+             '助理工程师',
181
+             '中级工程师',
182 182
              '副高级职称',
183 183
              '正高级职称'
184 184
          ];
@@ -273,12 +273,52 @@ class Diyajax extends Base
273 273
         $param = request()->param();
274 274
         $param['id'] = (int)$param['id']; //职称ID
275 275
         $param['xl'] = (int)$param['xl']; //学历
276
+        $param['dj'] = (int)$param['dj']; //等级
277
+
278
+/*        $param['id'] = 18; //职称ID
279
+        $param['xl'] = 3; //学历
280
+        $param['dj'] = 18; //等级*/
276 281
 
277 282
         if(!empty($param['id'])){
278
-            $map_ids = Db::name('zc_zs')
283
+
284
+            //查找专业绑定的证书
285
+            /*$map_ids = Db::name('zc_zs')
279 286
                 ->where('zc_id', $param['id'])
280 287
                 ->where('is_del', 0)
281
-                ->column('map_id');
288
+                ->column('map_id');*/
289
+
290
+            //查找规则 是否有相关证书要求
291
+            $zc_list_ids = Db::name('zcwd_position')
292
+                ->where('type', $param['id'])  //职称id
293
+                ->where('sbdj', $param['dj'])   //等级id
294
+                ->column('id');
295
+
296
+            //var_dump($zc_list_ids);
297
+
298
+            $xl_list_ids = Db::name('zcwe_position')
299
+                ->where('type','in',$zc_list_ids) //注规则
300
+                ->where('xlyq', $param['xl'])  //学历要求符合的
301
+                ->column('id');
302
+
303
+            //var_dump($xl_list_ids);
304
+
305
+
306
+            $map_list = Db::name('zcwf_position')
307
+                ->field('id,zhengshu')
308
+                ->where('type_son', 'in',$xl_list_ids)
309
+                ->select();
310
+
311
+            //var_dump($map_list);
312
+
313
+            $map_ids = [];
314
+            foreach ($map_list as $k=>$v){
315
+                if(!empty($v['zhengshu'])){
316
+                    $zhengshu = json_decode($v['zhengshu'],true);
317
+                    foreach ($zhengshu as $k1=>$v1){
318
+                        $map_ids[] = (int)$v1;
319
+                    }
320
+                }
321
+            }
282 322
 
283 323
             //调用等级
284 324
             $list = Db::name('zczs_position')
@@ -432,9 +472,9 @@ class Diyajax extends Base
432 472
 
433 473
 
434 474
         $name = [
435
-            1000000001=>'技术员职称',
436
-            1000000002=>'助理职称',
437
-            1000000003=>'中级职称',
475
+            1000000001=>'技术员',
476
+            1000000002=>'助理工程师',
477
+            1000000003=>'中级工程师',
438 478
             1000000004=>'副高级职称',
439 479
             1000000005=>'正高级职称'
440 480
         ];

+ 2
- 2
application/api/model/v1/Zc.php View File

@@ -472,7 +472,7 @@ class Zc extends Base{
472 472
                 'type'        => $gid, //所属职称主规则id
473 473
                 'type_son'        => $xid, //所属上级学历id
474 474
                 'is_zs' => 1,
475
-                'zhengshu' => json_encode([$sid]),
475
+                'zhengshu' => json_encode([(int)$sid]),
476 476
                 'sjnx' => json_encode([$rowData[0][9]]),
477 477
             ])->find();
478 478
         if($oen){
@@ -503,7 +503,7 @@ class Zc extends Base{
503 503
                 'bysj' =>0,
504 504
                 'bysj_time' => 0,
505 505
                 'is_zs' => 1,
506
-                'zhengshu' => json_encode([$sid]),
506
+                'zhengshu' => json_encode([(int)$sid]),
507 507
                 'sjnx' => json_encode([$rowData[0][9]]),
508 508
                 'gzyq' => json_encode([]),
509 509
                 'qttj' => '',

+ 1
- 1
template/pc/components/index/step.htm View File

@@ -545,7 +545,7 @@
545 545
 
546 546
                                 <?php
547 547
                                 //下载文件地址
548
-                                if(strpos($extend_info['sbdj'],'级') !== false){
548
+                                if(strpos($extend_info['sbdj'],'级') !== false){
549 549
                                     $base_url = './uploads/pdf/2/';
550 550
                                     $map_area = ['吉林','内蒙古','新疆','天津','陕西','山东'];
551 551
                                     $map_file = [

+ 2
- 0
template/pc/js/botstrap-step/scripts.js View File

@@ -176,6 +176,7 @@ jQuery(document).ready(function() {
176 176
             }
177 177
 
178 178
             var xl = $('#choose5').val();
179
+            var dj = $('#choose3').val();
179 180
 
180 181
             //调用证书
181 182
             $('#loadingModal').modal('show');
@@ -185,6 +186,7 @@ jQuery(document).ready(function() {
185 186
                 dataType: 'json', // 指定响应数据为JSON
186 187
                 data: {
187 188
                     id: a,
189
+                    dj: dj,
188 190
                     xl: xl,
189 191
                 },
190 192
                 success: function (data) {

Loading…
Cancel
Save