Your Name 5 months ago
parent
commit
37ef12842c

+ 57
- 0
application/api/controller/Diyajax.php View File

@@ -782,5 +782,62 @@ TRUNCATE TABLE ey_zcdj_position;
782 782
         echo "</pre>";
783 783
     }
784 784
 
785
+    /*
786
+     * 验证重复的数据  证书和学历 的zhengshu 和 zhengshu2 两个字段的问题  导入的时候 以后要看下
787
+     * /api/Diyajax/zsChongHandle
788
+     */
789
+    public function zsChongHandle(){
790
+        $list = Db::name('zcwf_position')
791
+            ->select();
792
+
793
+        foreach ($list as $key => $item) {
794
+
795
+            $zhengshu = str_replace('"', '', $item['zhengshu']);
796
+            if(empty($zhengshu)){
797
+                $zhengshu = "[]";
798
+            }
799
+            Db::name('zcwf_position')->where('id', $item['id'])->update(['zhengshu' => $zhengshu]);
800
+
801
+
802
+            /*$oen = Db::name('zcwf_position')
803
+                ->where([
804
+                    'type'        => $item['type'], //所属职称主规则id
805
+                    'type_son'        => $item['type_son'], //所属上级学历id
806
+                    'is_zs' => 1,
807
+                    //'zhengshu' => json_encode([(int)$sid]),
808
+                    'sjnx' => $item['sjnx'],
809
+                ])->find();*/
810
+        }
811
+
812
+    }
785 813
 
814
+    /*
815
+    * 验证重复的数据  证书和学历 的zhengshu 和 zhengshu2 两个字段的问题  导入的时候 以后要看下
816
+    * /api/Diyajax/zsChongHandle2
817
+    */
818
+    public function zsChongHandle2(){
819
+        //$list = Db::name('zcwf_position')->select();
820
+        //$oens = [];
821
+        for ($i=1;$i<=500;$i++) {
822
+            $item = Db::name('zcwf_position')
823
+                ->where(['status' => 1,'id'=>$i])
824
+                ->find();
825
+            if(!empty($item)) {
826
+                $oen = Db::name('zcwf_position')
827
+                    ->where([
828
+                        'type' => $item['type'], //所属职称主规则id
829
+                        'type_son' => $item['type_son'], //所属上级学历id
830
+                        'is_zs' => 1,
831
+                        'status' => 1,
832
+                        'zhengshu' => $item['zhengshu'],
833
+                        'sjnx' => $item['sjnx'],
834
+                    ])->where('id', '<>', $item['id'])->column('id');
835
+                //$oens = array_merge($oen, $oens);
836
+                Db::name('zcwf_position')->where('id', 'in', $oen)->update(['status' => 0,'is_del'=>1]);
837
+                echo '---->' . json_encode($oen) . '-' . $item['id'] . '<br/>';
838
+            }else{
839
+                echo '----><br/>';
840
+            }
841
+        }
842
+    }
786 843
 }

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

@@ -126,7 +126,7 @@ class Zc extends Base{
126 126
                         ->where('is_del', 0)
127 127
                         ->find();
128 128
                     if ($row) {
129
-                        $list_ids[] = $row['id'];
129
+                        $list_ids[] = (int)$row['id'];
130 130
                     } else {
131 131
                         //首次创建 以职称为分类名称
132 132
                         $zy_id = Db::name('zczy_position')->insertGetId([
@@ -136,7 +136,7 @@ class Zc extends Base{
136 136
                             'add_time' => time(),
137 137
                             'update_time' => time()
138 138
                         ]);
139
-                        $list_ids[] = $zy_id;
139
+                        $list_ids[] = (int)$zy_id;
140 140
                     }
141 141
                 }
142 142
             }

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

@@ -556,7 +556,28 @@
556 556
                                         '陕西' => '陕西中级专业对应表',
557 557
                                         '山东' => '山东中级专业对应表',
558 558
                                     ];
559
-                                } else {
559
+                                }else if(strpos($extend_info['sbdj'],'副高') !== false){
560
+                                    $base_url = './uploads/pdf/1/';
561
+                                    $map_area = ['广西','河北','吉林','内蒙古','山东','天津','新疆','陕西'];
562
+                                    $map_file = [
563
+                                        '广西' => '广西副高评审条件及专业表',
564
+                                        '河北' => '河北副高评审条件及专业表',
565
+                                        '吉林' => '吉林副高评审条件及专业表',
566
+                                        '内蒙古' => '内蒙古副高评审条件及专业表',
567
+                                        '山东' => '山东副高评审条件及专业表',
568
+                                        '天津' => '天津副高评审条件及专业表',
569
+                                        '新疆' => '新疆副高评审条件及专业表',
570
+                                        '陕西' => '陕西副高评审条件及专业表',
571
+                                    ];
572
+                                } else if(strpos($extend_info['sbdj'],'正高') !== false){
573
+                                    $base_url = './uploads/pdf/0/';
574
+                                    $map_area = ['河北','吉林','内蒙古'];
575
+                                    $map_file = [
576
+                                        '河北' => '河北正高评审条件及专业表',
577
+                                        '吉林' => '吉林正高评审条件及专业表',
578
+                                        '内蒙古' => '内蒙古正高评审条件及专业表',
579
+                                    ];
580
+                                }else {
560 581
                                     $base_url = '';
561 582
                                     $map_area = [];
562 583
                                     $map_file = [];

Loading…
Cancel
Save