KeyPersonnel.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. namespace catchAdmin\yunying\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\yunying\model\KeyPersonnel as keyPerSonnelModel;
  7. use catcher\Utils;
  8. use catcher\library\excel\Excel;
  9. use PhpOffice\PhpSpreadsheet\IOFactory;
  10. use think\facade\Env;
  11. use think\facade\Db;
  12. class KeyPersonnel extends CatchController
  13. {
  14. protected $keyPerSonnelModel;
  15. public function __construct(KeyPerSonnelModel $keyPerSonnelModel)
  16. {
  17. $this->keyPerSonnelModel = $keyPerSonnelModel;
  18. }
  19. /**
  20. * 列表
  21. * @time 2022年10月25日 11:27
  22. * @param Request $request
  23. */
  24. public function index(Request $request) : \think\Response
  25. {
  26. return CatchResponse::paginate($this->keyPerSonnelModel->getList());
  27. }
  28. /**
  29. * 保存信息
  30. * @time 2022年10月25日 11:27
  31. * @param Request $request
  32. */
  33. public function save(Request $request) : \think\Response
  34. {
  35. // var_dump($request->post());
  36. return CatchResponse::success($this->keyPerSonnelModel->storeBy($request->post()));
  37. }
  38. /**
  39. * 读取
  40. * @time 2022年10月25日 11:27
  41. * @param $id
  42. */
  43. public function read($id) : \think\Response
  44. {
  45. return CatchResponse::success($this->keyPerSonnelModel->findBy($id));
  46. }
  47. /**
  48. * 更新
  49. * @time 2022年10月25日 11:27
  50. * @param Request $request
  51. * @param $id
  52. */
  53. public function update(Request $request, $id) : \think\Response
  54. {
  55. return CatchResponse::success($this->keyPerSonnelModel->updateBy($id, $request->post()));
  56. }
  57. /**
  58. * 删除
  59. * @time 2022年10月25日 11:27
  60. * @param $id
  61. */
  62. public function delete($id) : \think\Response
  63. {
  64. return CatchResponse::success($this->keyPerSonnelModel->deleteBy($id));
  65. }
  66. /**
  67. * 导入车辆
  68. *
  69. * @time 2022年02月15日
  70. * @param Excel $excel
  71. * @param DeviceExport $deviceExport
  72. * @throws \PhpOffice\PhpSpreadsheet\Exception
  73. * @return \think\response\Json
  74. */
  75. public function importExcel(Request $request)
  76. {
  77. $url = $request->post('url');
  78. if (!$url) {
  79. return CatchResponse::fail('请上传文件');
  80. }
  81. $creator_id = $request->post('creator_id');
  82. //解析地址
  83. $parse_url = parse_url($url)['path'];
  84. //载入excel表格
  85. $objPHPExcel = IOFactory::load(public_path() . $parse_url);
  86. //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
  87. // $nameArr = $objPHPExcel->getSheetNames();
  88. //获取表的数量
  89. $sheetCount = $objPHPExcel->getSheetCount();
  90. $fail = 0; //失败条数
  91. $success = 0; //成功条数
  92. $total = 0; //总共设备数
  93. $data = []; //设备数据
  94. //循环读取每一张表
  95. for ($index = 0; $index < $sheetCount; $index++) {
  96. //设置当前要读取的表
  97. $sheet = $objPHPExcel->getSheet($index); //excel中的第一张sheet
  98. // var_dump($sheet);exit;
  99. $highestRow = $sheet->getHighestRow(); // 取得总行数
  100. // var_dump($highestRow);
  101. if ($highestRow <= 1) {
  102. continue;
  103. }
  104. $card_type_id = Db::table("sys_dict_type")->where('code', 'CARD_TYPE_OPTION')->value('id');
  105. $total += $highestRow - 1;
  106. for ($j = 2; $j <= $highestRow; $j++) {
  107. $arr = array(); //每条设备信息
  108. $arr['name'] = strtoupper(trim($sheet->getCell("A" . $j)->getFormattedValue()));
  109. $arr['gender'] = strtoupper(trim($sheet->getCell("B" . $j)->getFormattedValue()));
  110. $card_type_text = strtoupper(trim($sheet->getCell("C" . $j)->getFormattedValue()));
  111. $arr['card_type'] = Db::table("sys_dict_data")->where('type_id', $card_type_id)->whereLike('value','%'.$card_type_text.'%')->cache(60)->value('code');
  112. $arr['card_number'] = strtoupper(trim($sheet->getCell("D" . $j)->getFormattedValue()));
  113. $arr['rfid_sn'] = strtoupper(trim($sheet->getCell("E" . $j)->getFormattedValue()));
  114. $arr['address'] = strtoupper(trim($sheet->getCell("F" . $j)->getFormattedValue()));
  115. $arr['guardians_name'] = strtoupper(trim($sheet->getCell("G" . $j)->getFormattedValue()));
  116. $arr['guardians_gender'] = strtoupper(trim($sheet->getCell("H" . $j)->getFormattedValue()));
  117. $arr['guardians_phone'] = strtoupper(trim($sheet->getCell("I" . $j)->getFormattedValue()));
  118. $arr['guardians_address'] = strtoupper(trim($sheet->getCell("J" . $j)->getFormattedValue()));
  119. array_push($data,$arr);
  120. }
  121. }
  122. array_unique($data, SORT_REGULAR);
  123. // // var_dump($data);return CatchResponse::success();
  124. $success = $this->keyPerSonnelModel->limit(100)->insertAll($data);
  125. if ($success) {
  126. return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . ($total-$success) . '条');
  127. }
  128. return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
  129. }
  130. }