Vehicle.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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\Vehicle as vehicleModel;
  7. use catchAdmin\yunying\excel\VehiclesExport;
  8. use catchAdmin\system\model\SysDictData;
  9. use catcher\Utils;
  10. use catcher\library\excel\Excel;
  11. use PhpOffice\PhpSpreadsheet\IOFactory;
  12. use think\facade\Env;
  13. use think\facade\Db;
  14. class Vehicle extends CatchController
  15. {
  16. // protected $vehicleModel;
  17. // public function __construct(VehicleModel $vehicleModel)
  18. // {
  19. // $this->vehicleModel = $vehicleModel;
  20. // }
  21. /**
  22. * 列表
  23. * @time 2022年01月20日 10:42
  24. * @param Request $request
  25. */
  26. public function index(Request $request)
  27. {
  28. $param=$request->param();
  29. //联表条件o.rfid_id = s.id and o.owner_id = r.id
  30. $cond=[
  31. '_string'=>'o.rfid_id = s.id',
  32. ];
  33. if($param['PLATE_NO']){
  34. $cond['o.PLATE_NO']=['like',$param['PLATE_NO']];
  35. }
  36. // if($param['ID_CARD_NUMBER']){
  37. // $cond['r.ID_CARD_NUMBER']=['like',$param['ID_CARD_NUMBER']];
  38. // }
  39. // if($param['MOBILE_NUMBER']){
  40. // $cond['r.MOBILE_NUMBER']=['like',$param['MOBILE_NUMBER']];
  41. // }
  42. if($param['RFID_SN']){
  43. $cond['s.RFID_SN']=['like',$param['RFID_SN']];
  44. }
  45. // $count=queryOracleCount('DSSC3.W_DW_NON_MOTOR o,DSSC3.W_DW_NON_MOTOR_OWNER r,DSSC3.W_DW_RFID_TAGS s',$cond);
  46. $count=queryOracleCount('DSSC3.W_DW_NON_MOTOR o,DSSC3.W_DW_RFID_TAGS s',$cond);
  47. $cond['page']=isset($param['page'])?$param['page']:1;
  48. $cond['limit']=isset($param['limit'])?$param['limit']:10;
  49. // $rows=queryOracleSelect('DSSC3.W_DW_NON_MOTOR o,DSSC3.W_DW_NON_MOTOR_OWNER r,DSSC3.W_DW_RFID_TAGS s',$cond,'o.PLATE_NO,s.RFID_SN,r. NAME,r.ID_CARD_NUMBER,r.MOBILE_NUMBER,r.HOME_ADDRESS');
  50. $rows=queryOracleSelect('DSSC3.W_DW_NON_MOTOR o,DSSC3.W_DW_RFID_TAGS s',$cond,'o.PLATE_NO,o.CAR_TYPE,o.CAR_BRAND,s.ID,s.RFID_SN,s.INSTALLER,to_char(s.INSTA_DATE,\'yyyy-mm-dd hh24:mi:ss\') INSTA_DATE');
  51. foreach($rows as &$val){
  52. $val['CAR_BRAND_TEXT']=(new SysDictData())->getValueByCode('CAR_BRAND_OPTION',$val['CAR_BRAND']);
  53. $val['CAR_TYPE_TEXT']=(new SysDictData())->getValueByCode('CAR_TYPE_OPTION',$val['CAR_TYPE']);
  54. }
  55. $response=[
  56. 'code'=>10000,
  57. 'message'=>'查询成功',
  58. 'count'=>$count,
  59. 'data'=>$rows,
  60. 'current'=>isset($param['page'])?(int)$param['page']:1,
  61. 'limit'=>isset($param['limit'])?(int)$param['limit']:10,
  62. ];
  63. return $response;
  64. }
  65. /**
  66. * 保存信息
  67. * @time 2022年01月20日 10:42
  68. * @param Request $request
  69. */
  70. public function save(Request $request)
  71. {
  72. $installer=$request->user()->realname;
  73. $param=$request->param();
  74. $param['RFID_SN']=strtoupper($param['RFID_SN']);
  75. $param['PLATE_NO']=strtoupper($param['PLATE_NO']);
  76. $param['INSTA_DATE']=date('Y-m-d H:i:s',time());
  77. $param['INSTALLER']=$installer;
  78. $r=$this->execSaveVehicle($param);
  79. return CatchResponse::success($r);
  80. }
  81. private function execSaveVehicle($data){
  82. $conn=getOracleConnect();
  83. $sql='declare
  84. tagId number;
  85. begin
  86. INSERT INTO DSSC3.W_DW_RFID_TAGS("ID", "RFID_SN","INSTALLER","INSTA_DATE") VALUES (DSSC3.SEQ_W_DW_RFID_TAGS.nextval, \''.$data['RFID_SN'].'\',\''.$data['INSTALLER'].'\', TO_DATE(\''.$data['INSTA_DATE'].'\', \'SYYYY-MM-DD HH24:MI:SS\')) returning ID into tagId;
  87. INSERT INTO DSSC3.W_DW_NON_MOTOR("ID", "RFID_ID","PLATE_NO","CAR_BRAND","CAR_TYPE") VALUES (DSSC3.SEQ_W_DW_RFID_TAGS.nextval, tagId,\''.$data['PLATE_NO'].'\',\''.$data['CAR_BRAND'].'\',\''.$data['CAR_TYPE'].'\');
  88. end;';
  89. $stid = oci_parse($conn, $sql);
  90. $r = oci_execute($stid);
  91. oci_free_statement($stid);
  92. return $r;
  93. }
  94. /**
  95. * 更新
  96. * @time 2022年01月20日 10:42
  97. * @param Request $request
  98. * @param $id
  99. */
  100. public function update(Request $request, $id) : \think\Response
  101. {
  102. $params=$request->post();
  103. $params['RFID_SN']=strtoupper($params['RFID_SN']);
  104. $params['PLATE_NO']=strtoupper($params['PLATE_NO']);
  105. // var_dump($params);
  106. $conn=getOracleConnect();
  107. // //更新
  108. $sql='UPDATE DSSC3.W_DW_RFID_TAGS SET RFID_SN = \''.$params['RFID_SN'].'\' WHERE ID = \''.$id.'\' ';
  109. $stid = oci_parse($conn, $sql);
  110. $r = oci_execute($stid);
  111. $sql='UPDATE DSSC3.W_DW_NON_MOTOR SET PLATE_NO = \''.$params['PLATE_NO'].'\',CAR_BRAND=\''.$params['CAR_BRAND'].'\',CAR_TYPE=\''.$params['CAR_TYPE'].'\' WHERE RFID_ID = \''.$id.'\' ';
  112. // var_dump($sql);
  113. $stid2 = oci_parse($conn, $sql);
  114. $r2 = oci_execute($stid2);
  115. return CatchResponse::success('修改成功');
  116. }
  117. /**
  118. * 删除
  119. * @time 2022年01月20日 10:42
  120. * @param $id
  121. */
  122. public function delete($id) : \think\Response
  123. {
  124. $conn=getOracleConnect();
  125. $sql='DELETE FROM DSSC3.W_DW_RFID_TAGS WHERE ID in ('.$id.')';
  126. $stid = oci_parse($conn, $sql);
  127. $r = oci_execute($stid);
  128. $sql='DELETE FROM DSSC3.W_DW_NON_MOTOR WHERE RFID_ID in ('.$id.')';
  129. $stid = oci_parse($conn, $sql);
  130. $r = oci_execute($stid);
  131. return CatchResponse::success($r);
  132. }
  133. /**
  134. * 导出
  135. *
  136. * @time 2022年01月22日
  137. * @param Excel $excel
  138. * @param VehicleExport $vehicleExport
  139. * @throws \PhpOffice\PhpSpreadsheet\Exception
  140. * @return \think\response\Json
  141. */
  142. public function export_vehicle(Excel $excel, VehiclesExport $VehicleExport)
  143. {
  144. return CatchResponse::success($excel->save($VehicleExport, Utils::publicPath('export/vehicles'), 'local', '车辆列表'));
  145. }
  146. /**
  147. * 导入车辆
  148. *
  149. * @time 2022年02月15日
  150. * @param Excel $excel
  151. * @param DeviceExport $deviceExport
  152. * @throws \PhpOffice\PhpSpreadsheet\Exception
  153. * @return \think\response\Json
  154. */
  155. public function importVehicle(Request $request)
  156. {
  157. $url = $request->post('url');
  158. if (!$url) {
  159. return CatchResponse::fail('请上传文件');
  160. }
  161. $creator_id = $request->post('creator_id');
  162. //解析地址
  163. $parse_url = parse_url($url)['path'];
  164. //载入excel表格
  165. $objPHPExcel = IOFactory::load(public_path() . $parse_url);
  166. //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
  167. // $nameArr = $objPHPExcel->getSheetNames();
  168. //获取表的数量
  169. $sheetCount = $objPHPExcel->getSheetCount();
  170. $fail = 0; //失败条数
  171. $success = 0; //成功条数
  172. $total = 0; //总共设备数
  173. $data = []; //设备数据
  174. //循环读取每一张表
  175. for ($index = 0; $index < $sheetCount; $index++) {
  176. //设置当前要读取的表
  177. $sheet = $objPHPExcel->getSheet($index); //excel中的第一张sheet
  178. // var_dump($sheet);exit;
  179. $highestRow = $sheet->getHighestRow(); // 取得总行数
  180. // var_dump($highestRow);
  181. if ($highestRow <= 1) {
  182. continue;
  183. }
  184. $brand_type_id = Db::table("sys_dict_type")->where('code', 'CAR_BRAND_OPTION')->value('id');
  185. $car_type_id = Db::table("sys_dict_type")->where('code', 'CAR_TYPE_OPTION')->value('id');
  186. // return $this->where('type_id', $type_id)
  187. // ->where('code', $value)
  188. // ->cache(true, 60)
  189. // ->value('remark');
  190. $total += $highestRow - 1;
  191. for ($j = 2; $j <= $highestRow; $j++) {
  192. $arr = array(); //每条设备信息
  193. $arr['PLATE_NO'] = strtoupper(trim($sheet->getCell("A" . $j)->getFormattedValue()));
  194. $brand = trim($sheet->getCell("B" . $j)->getFormattedValue());
  195. // $brand_id=Db::table("sys_dict_data")->where('type_id', $type_id)->where('code', $value)->value('remark');
  196. $type = trim($sheet->getCell("C" . $j)->getFormattedValue());
  197. $arr['RFID_SN'] = trim($sheet->getCell("D" . $j)->getFormattedValue());
  198. $arr['INSTA_DATE'] = trim($sheet->getCell("E" . $j)->getFormattedValue());
  199. $arr['INSTALLER'] = trim($sheet->getCell("F" . $j)->getFormattedValue());
  200. var_dump($arr);
  201. // $r=$this->execSaveStation($arr);
  202. // if($r){
  203. // $success++;
  204. // }else{
  205. // $fail++;
  206. // }
  207. // var_dump($arr);
  208. // array_push($data,$arr);
  209. }
  210. }
  211. // array_unique($data, SORT_REGULAR);
  212. // // var_dump($data);return CatchResponse::success();
  213. // $count = $this->deviceModel->limit(100)->insertAll($data);
  214. // if ($success = $count) {
  215. return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
  216. // }
  217. // return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
  218. }
  219. }