Users.php 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\library\Auth;
  4. use app\common\controller\Backend;
  5. use fast\Random;
  6. use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
  7. use PhpOffice\PhpSpreadsheet\Reader\Csv;
  8. use PhpOffice\PhpSpreadsheet\Reader\Xls;
  9. use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
  10. use think\Config;
  11. use think\Db;
  12. use think\exception\PDOException;
  13. use think\exception\ValidateException;
  14. /**
  15. * 用户信息管理
  16. *
  17. * @icon fa fa-users
  18. */
  19. class Users extends Backend
  20. {
  21. /**
  22. * Users模型对象
  23. * @var \app\admin\model\Users
  24. */
  25. protected $model = null;
  26. protected $searchFields = ['*'];
  27. public function _initialize()
  28. {
  29. set_time_limit(1000);
  30. parent::_initialize();
  31. $this->model = new \app\admin\model\Users;
  32. }
  33. /**
  34. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  35. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  36. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  37. */
  38. /**
  39. * 查看
  40. */
  41. public function index()
  42. {
  43. //设置过滤方法
  44. $this->request->filter(['strip_tags']);
  45. if ($this->request->isAjax()) {
  46. //如果发送的来源是Selectpage,则转发到Selectpage
  47. if ($this->request->request('keyField')) {
  48. return $this->selectpage();
  49. }
  50. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  51. $total = $this->model
  52. ->where($where)
  53. ->order($sort, $order)
  54. ->count();
  55. $list = $this->model
  56. ->where($where)
  57. ->order($sort, $order)
  58. ->limit($offset, $limit)
  59. ->select();
  60. $list = collection($list)->toArray();
  61. $result = array("total" => $total, "rows" => $list);
  62. return json($result);
  63. }
  64. // 设置下载模板文件的地址
  65. $path = config('site.url').'\template\template.xls';
  66. return $this->view->fetch('index', ['path'=>$path]);
  67. }
  68. /**
  69. * 添加
  70. */
  71. public function add()
  72. {
  73. if ($this->request->isPost()) {
  74. $params = $this->request->post("row/a");
  75. if ($params) {
  76. $params = $this->preExcludeFields($params);
  77. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  78. $params[$this->dataLimitField] = $this->auth->id;
  79. }
  80. $result = false;
  81. Db::startTrans();
  82. try {
  83. //是否采用模型验证
  84. if ($this->modelValidate) {
  85. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  86. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  87. $this->model->validateFailException(true)->validate($validate);
  88. }
  89. $result = $this->model->allowField(true)->save($params);
  90. Db::commit();
  91. } catch (ValidateException $e) {
  92. Db::rollback();
  93. $this->error($e->getMessage());
  94. } catch (PDOException $e) {
  95. Db::rollback();
  96. $this->error($e->getMessage());
  97. } catch (Exception $e) {
  98. Db::rollback();
  99. $this->error($e->getMessage());
  100. }
  101. if ($result !== false) {
  102. $this->success();
  103. } else {
  104. $this->error(__('No rows were inserted'));
  105. }
  106. }
  107. $this->error(__('Parameter %s can not be empty', ''));
  108. }
  109. return $this->view->fetch();
  110. }
  111. /**
  112. * 编辑
  113. */
  114. public function edit($ids = null)
  115. {
  116. $row = $this->model->get($ids);
  117. // 查出子单位数据
  118. $type = Db::name('type')->where('t_id',$row['user_type'])->find();
  119. // 查出父单位数据
  120. $f_type = Db::name('type')->where('t_id',$type['f_id'])->find();
  121. $row['type_fname'] = $f_type['name']; // 父单位名称
  122. $row['type_zname'] = $type['name']; // 子单位名称
  123. $row['f_id'] = $type['f_id']; // 父单位id
  124. if (!$row) {
  125. $this->error(__('No Results were found'));
  126. }
  127. $adminIds = $this->getDataLimitAdminIds();
  128. if (is_array($adminIds)) {
  129. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  130. $this->error(__('You have no permission'));
  131. }
  132. }
  133. if ($this->request->isPost()) {
  134. $params = $this->request->post("row/a");
  135. if ($params) {
  136. $params = $this->preExcludeFields($params);
  137. $result = false;
  138. Db::startTrans();
  139. try {
  140. //是否采用模型验证
  141. if ($this->modelValidate) {
  142. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  143. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  144. $row->validateFailException(true)->validate($validate);
  145. }
  146. $result = $row->allowField(true)->save($params);
  147. Db::commit();
  148. } catch (ValidateException $e) {
  149. Db::rollback();
  150. $this->error($e->getMessage());
  151. } catch (PDOException $e) {
  152. Db::rollback();
  153. $this->error($e->getMessage());
  154. } catch (Exception $e) {
  155. Db::rollback();
  156. $this->error($e->getMessage());
  157. }
  158. if ($result !== false) {
  159. $this->success();
  160. } else {
  161. $this->error(__('No rows were updated'));
  162. }
  163. }
  164. $this->error(__('Parameter %s can not be empty', ''));
  165. }
  166. $this->view->assign("row", $row);
  167. return $this->view->fetch();
  168. }
  169. /**
  170. * 简历修改或添加
  171. */
  172. public function resume($ids = NUll)
  173. {
  174. if ($this->request->isPost()) {
  175. $data = input('post.');
  176. if ($data['r_id'] == '') {
  177. // 添加简历
  178. $add = Db::name('resume')->insert($data);
  179. if ($add) {
  180. return $this->success('添加成功');
  181. } else {
  182. return $this->success('添加失败');
  183. }
  184. } else {
  185. $edit = Db::name('resume')->where('r_id',$data['r_id'])->update($data);
  186. if ($edit) {
  187. return $this->success('修改成功');
  188. } else {
  189. return $this->success('修改失败');
  190. }
  191. }
  192. }
  193. $id = input('ids');
  194. $data = Db::name('resume')->where('user_id',$id)->find();
  195. if ($data == NULL) {
  196. $data = array(
  197. 'user_id' => $id,
  198. 'r_resume' => '',
  199. 'r_rewards' => '',
  200. 'r_results' => '',
  201. 'r_id' => '',
  202. );
  203. }
  204. return $this->fetch('resume',['data' => $data]);
  205. }
  206. /**
  207. * 表格导入
  208. */
  209. public function import()
  210. {
  211. $file = $this->request->request('file');
  212. if (!$file) {
  213. $this->error(__('Parameter %s can not be empty', 'file'));
  214. }
  215. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  216. if (!is_file($filePath)) {
  217. $this->error(__('No results were found'));
  218. }
  219. //实例化reader
  220. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  221. if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
  222. $this->error(__('Unknown data format'));
  223. }
  224. $reader = new Xls();
  225. //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
  226. $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
  227. $table = $this->model->getQuery()->getTable();
  228. $database = \think\Config::get('database.database');
  229. $fieldArr = [];
  230. $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
  231. foreach ($list as $k => $v) {
  232. if ($importHeadType == 'comment') {
  233. $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
  234. } else {
  235. $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
  236. }
  237. }
  238. //加载文件
  239. $insert = [];
  240. try {
  241. if (!$PHPExcel = $reader->load($filePath)) {
  242. $this->error(__('Unknown data format'));
  243. }
  244. $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
  245. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  246. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  247. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  248. //处理图片
  249. $imageFilePath=ROOT_PATH.'public/uploads/images/' ;//图片保存目录
  250. if (!file_exists ( $imageFilePath )) {
  251. mkdir("$imageFilePath", 0777, true);
  252. }
  253. //处理图片
  254. foreach($currentSheet->getDrawingCollection() as $img) {
  255. list($startColumn,$startRow)= Coordinate::coordinateFromString($img->getCoordinates());//获取图片所在行和列
  256. $imageFileName = Random::uuid();
  257. switch($img->getMimeType()) {
  258. case 'image/jpg':
  259. case 'image/jpeg':
  260. $imageFileName.='.jpg';
  261. imagejpeg($img->getImageResource(),$imageFilePath.$imageFileName);
  262. break;
  263. case 'image/gif':
  264. $imageFileName.='.gif';
  265. imagegif($img->getImageResource(),$imageFilePath.$imageFileName);
  266. break;
  267. case 'image/png':
  268. $imageFileName.='.png';
  269. imagepng($img->getImageResource(),$imageFilePath.$imageFileName);
  270. break;
  271. }
  272. $currentSheet->setCellValue($startColumn.$startRow,'/uploads/images/'.$imageFileName);
  273. }
  274. //前两行是备注,从A3第三行开始导入
  275. for ($currentRow = 3; $currentRow <= $allRow; $currentRow++) {
  276. $values = [];
  277. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  278. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  279. $values[] = is_null($val) ? '' : $val;
  280. }
  281. $resutl[] = array();
  282. if (empty($values)) {
  283. return $this->error('文件为空',"");
  284. $resutl[$currentRow][] = '第'.$currentRow.'行数据为空';
  285. }
  286. if ($values[0] == '') {
  287. $resutl[$currentRow][] = '第'.$currentRow.'行头像不能为空';
  288. } else {
  289. $image_dir = ROOT_PATH . 'public' . $values[0];
  290. if (file_exists($image_dir)) {
  291. $images[] = $image_dir;
  292. }
  293. }
  294. if ($values[1] == '') {
  295. $resutl[$currentRow][] = '第'.$currentRow.'行姓名不能为空';
  296. }
  297. if ($values[2] == '') {
  298. $resutl[$currentRow][] = '第'.$currentRow.'行性别不能为空';
  299. }
  300. if ($values[3] == '') {
  301. $resutl[$currentRow][] = '第'.$currentRow.'行出生年月不能为空';
  302. }
  303. if ($values[4] != '') {
  304. if (gettype($values[4]) != 'integer') {
  305. $resutl[$currentRow][] = '第'.$currentRow.'行年龄格式不正确';
  306. }
  307. } else {
  308. $resutl[$currentRow][] = '第'.$currentRow.'行年龄格式不正确';
  309. }
  310. if ($values[5] == '') {
  311. $resutl[$currentRow][] = '第'.$currentRow.'行民族不能为空';
  312. }
  313. if ($values[6] == '') {
  314. $resutl[$currentRow][] = '第'.$currentRow.'行籍贯不能为空';
  315. }
  316. if ($values[7] == '') {
  317. $resutl[$currentRow][] = '第'.$currentRow.'行出生地不能为空';
  318. }
  319. if ($values[8] == '') {
  320. $resutl[$currentRow][] = '第'.$currentRow.'行政治面貌不能为空';
  321. }
  322. if ($values[9] == '') {
  323. $resutl[$currentRow][] = '第'.$currentRow.'行入党时间不能为空';
  324. }
  325. if ($values[10] == '') {
  326. $resutl[$currentRow][] = '第'.$currentRow.'行参加工作时间不能为空';
  327. }
  328. if ($values[11] == '') {
  329. $resutl[$currentRow][] = '第'.$currentRow.'行健康状况不能为空';
  330. }
  331. if ($values[12] == '') {
  332. $resutl[$currentRow][] = '第'.$currentRow.'行专业技术职务不能为空';
  333. }
  334. if ($values[13] == '') {
  335. $resutl[$currentRow][] = '第'.$currentRow.'行专业特长不能为空';
  336. }
  337. if ($values[14] == '') {
  338. $resutl[$currentRow][] = '第'.$currentRow.'行工作单位不能为空';
  339. }
  340. if ($values[15] == '') {
  341. $resutl[$currentRow][] = '第'.$currentRow.'行现任职务不能为空';
  342. }
  343. if ($values[16] == '') {
  344. $resutl[$currentRow][] = '第'.$currentRow.'行行政级别不能为空';
  345. }
  346. if ($values[17] == '') {
  347. $resutl[$currentRow][] = '第'.$currentRow.'行全日制教育学历不能为空';
  348. }
  349. if ($values[18] == '') {
  350. $resutl[$currentRow][] = '第'.$currentRow.'行全日制教育学位不能为空';
  351. }
  352. if ($values[19] == '') {
  353. $resutl[$currentRow][] = '第'.$currentRow.'行全日制教育毕业学校及专业不能为空';
  354. }
  355. if ($values[20] == '') {
  356. $resutl[$currentRow][] = '第'.$currentRow.'行在职制教育学历不能为空';
  357. }
  358. if ($values[21] == '') {
  359. $resutl[$currentRow][] = '第'.$currentRow.'行在职制教育学位不能为空';
  360. }
  361. if ($values[22] == '') {
  362. $resutl[$currentRow][] = '第'.$currentRow.'行在职制教育毕业学校及专业不能为空';
  363. }
  364. if ($values[66] == '') {
  365. $resutl[$currentRow][] = '第'.$currentRow.'行单位不能为空';
  366. } else {
  367. if ($values[66] != '无') {
  368. $arr = explode('-',$values[66]);
  369. $count = count($arr);
  370. if ($count != 2) {
  371. $resutl[$currentRow][] = '第'.$currentRow.'行单位树格式不正确(无或者乌海市纪委建委-信访室格式)';
  372. }
  373. }
  374. }
  375. }
  376. if (empty($resutl)) {
  377. return $this->error('文件为空');
  378. }
  379. foreach ($resutl as $kk=>$vv) {
  380. if (empty($vv)) {
  381. unset($resutl[$kk]);
  382. }
  383. }
  384. if (!$resutl){
  385. $resutl = array();
  386. }
  387. if (count($resutl) != 0) {
  388. foreach($images as $v) {
  389. if (isset($v) && file_exists($v)) {
  390. unlink($v);
  391. }
  392. }
  393. return $this->error('检测到错误,正在排列',"",$resutl);
  394. }
  395. //前两行是备注,从A3第三行开始导入
  396. for ($currentRow = 3; $currentRow <= $allRow; $currentRow++) {
  397. $values = [];
  398. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  399. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  400. $values[] = is_null($val) ? '' : $val;
  401. }
  402. // halt($values);
  403. if (gettype($values[3]) != 'string' ) {
  404. $values[3] = strtotime(gmdate('Y/m/d',($values[3]-25569)*24*60*60));
  405. }
  406. // echo gettype($values[9]);die;
  407. if (gettype($values[9]) != 'string') {
  408. $values[9] = strtotime(gmdate('Y/m/d',($values[9]-25569)*24*60*60));
  409. }
  410. if (gettype($values[10]) != 'string') {
  411. $values[10] = strtotime(gmdate('Y/m/d',($values[10]-25569)*24*60*60));
  412. }
  413. // 截取数组中用户基本信息
  414. $userInfo = array_slice($values,0,23);
  415. // 处理单位树
  416. $userInfo[23] = $values['66'];
  417. if ($userInfo[23] == '无') {
  418. $userInfo[23] = 6;
  419. } else if($userInfo[23] != '') {
  420. $type_name = explode("-",$userInfo[23]);
  421. // 先根据单位名称查出ftypeid
  422. $f_typeid = Db::name('type')->where('name',$type_name[0])->find();
  423. if (isset($f_typeid)) {
  424. // 查出子typeid
  425. $z_type_id = Db::name('type')
  426. ->where('name',$type_name[1])
  427. ->where('f_id',$f_typeid['t_id'])
  428. ->find();
  429. if ($z_type_id) {
  430. $userInfo[23] = $z_type_id['t_id'];
  431. } else {
  432. $userInfo[23] = 6;
  433. }
  434. } else {
  435. $userInfo[23] = 6;
  436. }
  437. } else {
  438. $userInfo[23] = 6;
  439. }
  440. // halt($userInfo);
  441. // 截取数组中简历信息
  442. $resume_test = array_slice($values,23,3);
  443. // 截取数组中社会关系数组
  444. $sociogram =array_slice($values,26,40);
  445. // 将一个一维数组平均分成n个二维数组
  446. $sociograms = [];
  447. for ($i = 0; $i <= 7; $i++) {
  448. $sociograms[] = array_slice($sociogram, $i * 5, 5);
  449. }
  450. if (isset($values[1])) {
  451. // 使用原生SQL添加用户信息
  452. $userInfo=implode("','",$userInfo);
  453. $sql = "INSERT INTO hu_users VALUES ( '' , '" .$userInfo. " ') ";
  454. $insert = Db::execute($sql);
  455. if ($insert) {
  456. // 获取用户id
  457. $userId = Db::name('user')->getLastInsID();
  458. // 插入简历信息
  459. $resume['user_id'] = $userId;
  460. $resume['r_resume'] = $resume_test[0];
  461. $resume['r_rewards'] = $resume_test[1];
  462. $resume['r_results'] = $resume_test[2];
  463. $add_resume = Db::name('resume')->insert($resume);
  464. if ($add_resume) {
  465. // 插入社会关系
  466. foreach($sociograms as $s) {
  467. if ($s[0] != '') {
  468. $sociogram_info['user_id'] = $userId;
  469. $sociogram_info['s_appellation'] = $s[0];
  470. $sociogram_info['s_name'] = $s[1];
  471. $sociogram_info['s_age'] = $s[2];
  472. $sociogram_info['s_politics'] = $s[3];
  473. $sociogram_info['s_unit'] = $s[4];
  474. Db::name('sociogram')->insert($sociogram_info);
  475. }
  476. }
  477. }
  478. }
  479. if (!empty($row)){
  480. $insert[]=$row;
  481. }
  482. }
  483. }
  484. } catch (Exception $exception) {
  485. $this->error($exception->getMessage());
  486. }
  487. if (!$insert) {
  488. $this->error(__('无数据导入'));
  489. }
  490. $num = $allRow-2;
  491. $this->success('导入成功,共'.$num.'条数据','','','3');
  492. }
  493. /**
  494. * 表格导入
  495. */
  496. public function testing()
  497. {
  498. $file = $this->request->request('file');
  499. if (!$file) {
  500. $this->error(__('未获取到文件', 'file'));
  501. }
  502. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  503. if (!is_file($filePath)) {
  504. $this->error(__('未获取到文件'));
  505. }
  506. //实例化reader
  507. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  508. if (!in_array($ext, ['xls'])) {
  509. $this->error(__('文件必须为xls'));
  510. }
  511. $reader = new Xls();
  512. //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
  513. $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
  514. $table = $this->model->getQuery()->getTable();
  515. $database = \think\Config::get('database.database');
  516. $fieldArr = [];
  517. $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
  518. foreach ($list as $k => $v) {
  519. if ($importHeadType == 'comment') {
  520. $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
  521. } else {
  522. $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
  523. }
  524. }
  525. //加载文件
  526. $insert = [];
  527. try {
  528. if (!$PHPExcel = $reader->load($filePath)) {
  529. $this->error(__('Unknown data format'));
  530. }
  531. $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
  532. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  533. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  534. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  535. //处理图片
  536. $imageFilePath=ROOT_PATH.'public/uploads/images/' ;//图片保存目录
  537. if (!file_exists ( $imageFilePath )) {
  538. mkdir("$imageFilePath", 0777, true);
  539. }
  540. //处理图片
  541. foreach($currentSheet->getDrawingCollection() as $img) {
  542. list($startColumn,$startRow)= Coordinate::coordinateFromString($img->getCoordinates());//获取图片所在行和列
  543. $imageFileName = Random::uuid();
  544. switch($img->getMimeType()) {
  545. case 'image/jpg':
  546. case 'image/jpeg':
  547. $imageFileName.='.jpg';
  548. imagejpeg($img->getImageResource(),$imageFilePath.$imageFileName);
  549. break;
  550. case 'image/gif':
  551. $imageFileName.='.gif';
  552. imagegif($img->getImageResource(),$imageFilePath.$imageFileName);
  553. break;
  554. case 'image/png':
  555. $imageFileName.='.png';
  556. imagepng($img->getImageResource(),$imageFilePath.$imageFileName);
  557. break;
  558. }
  559. $currentSheet->setCellValue($startColumn.$startRow,'/uploads/images/'.$imageFileName);
  560. }
  561. //前两行是备注,从A3第三行开始导入
  562. for ($currentRow = 3; $currentRow <= $allRow; $currentRow++) {
  563. $values = [];
  564. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  565. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  566. $values[] = is_null($val) ? '' : $val;
  567. }
  568. $resutl[] = array();
  569. if (empty($values)) {
  570. return $this->error('文件为空',"");
  571. $resutl[$currentRow][] = '第'.$currentRow.'行数据为空';
  572. }
  573. if ($values[0] == '') {
  574. $resutl[$currentRow][] = '第'.$currentRow.'行头像不能为空';
  575. }
  576. if(!empty($values[0])) {
  577. $image_dir = ROOT_PATH . 'public' . $values[0];
  578. if (file_exists($image_dir)){
  579. unlink($image_dir);
  580. }
  581. }
  582. if ($values[1] == '') {
  583. $resutl[$currentRow][] = '第'.$currentRow.'行姓名不能为空';
  584. }
  585. if ($values[2] == '') {
  586. $resutl[$currentRow][] = '第'.$currentRow.'行性别不能为空';
  587. }
  588. if ($values[3] == '') {
  589. $resutl[$currentRow][] = '第'.$currentRow.'行出生年月不能为空';
  590. } else {
  591. if ($values[3] != '无') {
  592. if (gettype($values[3]) != 'integer') {
  593. $resutl[$currentRow][] = '第'.$currentRow.'行出生年月格式不正确(无或者1970/1/1格式)';
  594. }
  595. }
  596. }
  597. if ($values[4] != '') {
  598. if (gettype($values[4]) != 'integer') {
  599. $resutl[$currentRow][] = '第'.$currentRow.'行年龄格式不正确';
  600. }
  601. } else {
  602. $resutl[$currentRow][] = '第'.$currentRow.'行年龄格式不正确';
  603. }
  604. if ($values[5] == '') {
  605. $resutl[$currentRow][] = '第'.$currentRow.'行民族不能为空';
  606. }
  607. if ($values[6] == '') {
  608. $resutl[$currentRow][] = '第'.$currentRow.'行籍贯不能为空';
  609. }
  610. if ($values[7] == '') {
  611. $resutl[$currentRow][] = '第'.$currentRow.'行出生地不能为空';
  612. }
  613. if ($values[8] == '') {
  614. $resutl[$currentRow][] = '第'.$currentRow.'行政治面貌不能为空';
  615. }
  616. if ($values[9] == '') {
  617. $resutl[$currentRow][] = '第'.$currentRow.'行入党时间不能为空';
  618. } else {
  619. if ($values[9] != '无') {
  620. if (gettype($values[9]) != 'integer') {
  621. $resutl[$currentRow][] = '第'.$currentRow.'行入党时间格式不正确(无或者1970/1/1格式)';
  622. }
  623. }
  624. }
  625. if ($values[10] == '') {
  626. $resutl[$currentRow][] = '第'.$currentRow.'行参加工作时间不能为空';
  627. } else {
  628. if ($values[10] != '无') {
  629. if (gettype($values[10]) != 'integer') {
  630. $resutl[$currentRow][] = '第'.$currentRow.'行参加工作时间格式不正确(无或者1970/1/1格式)';
  631. }
  632. }
  633. }
  634. if ($values[11] == '') {
  635. $resutl[$currentRow][] = '第'.$currentRow.'行健康状况不能为空';
  636. }
  637. if ($values[12] == '') {
  638. $resutl[$currentRow][] = '第'.$currentRow.'行专业技术职务不能为空';
  639. }
  640. if ($values[13] == '') {
  641. $resutl[$currentRow][] = '第'.$currentRow.'行专业特长不能为空';
  642. }
  643. if ($values[14] == '') {
  644. $resutl[$currentRow][] = '第'.$currentRow.'行工作单位不能为空';
  645. }
  646. if ($values[15] == '') {
  647. $resutl[$currentRow][] = '第'.$currentRow.'行现任职务不能为空';
  648. }
  649. if ($values[16] == '') {
  650. $resutl[$currentRow][] = '第'.$currentRow.'行行政级别不能为空';
  651. }
  652. if ($values[17] == '') {
  653. $resutl[$currentRow][] = '第'.$currentRow.'行全日制教育学历不能为空';
  654. }
  655. if ($values[18] == '') {
  656. $resutl[$currentRow][] = '第'.$currentRow.'行全日制教育学位不能为空';
  657. }
  658. if ($values[19] == '') {
  659. $resutl[$currentRow][] = '第'.$currentRow.'行全日制教育毕业学校及专业不能为空';
  660. }
  661. if ($values[20] == '') {
  662. $resutl[$currentRow][] = '第'.$currentRow.'行在职制教育学历不能为空';
  663. }
  664. if ($values[21] == '') {
  665. $resutl[$currentRow][] = '第'.$currentRow.'行在职制教育学位不能为空';
  666. }
  667. if ($values[22] == '') {
  668. $resutl[$currentRow][] = '第'.$currentRow.'行在职制教育毕业学校及专业不能为空';
  669. }
  670. if ($values[66] == '') {
  671. $resutl[$currentRow][] = '第'.$currentRow.'行单位不能为空';
  672. } else {
  673. if ($values[66] != '无') {
  674. $arr = explode('-',$values[66]);
  675. $count = count($arr);
  676. if ($count != 2) {
  677. $resutl[$currentRow][] = '第'.$currentRow.'行单位树格式不正确(无或者乌海市纪委建委-信访室格式)';
  678. }
  679. }
  680. }
  681. }
  682. } catch (Exception $exception) {
  683. $this->error($exception->getMessage());
  684. }
  685. if (empty($resutl)) {
  686. return $this->error('文件为空');
  687. }
  688. foreach ($resutl as $kk=>$vv) {
  689. if (empty($vv)) {
  690. unset($resutl[$kk]);
  691. }
  692. }
  693. if (!$resutl){
  694. $resutl = array();
  695. }
  696. $file_dir = ROOT_PATH . 'public' . $file;
  697. unlink($file_dir);
  698. if (count($resutl) == 0) {
  699. return $this->success('无错误字段');
  700. } else {
  701. return $this->error('检测到错误,正在排列',"users/a",$resutl);
  702. }
  703. $this->success();
  704. }
  705. public function jdump()
  706. {
  707. $data = input('get.');
  708. $data = $data['data'];
  709. $data = json_decode($data,true);
  710. // halt($data);
  711. return $this->fetch('testing',['data'=>$data]);
  712. }
  713. }