|
@@ -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
|
}
|