|
@@ -4,6 +4,7 @@ namespace catchAdmin\hydraulic\controller;
|
|
|
|
|
|
error_reporting(1);
|
|
|
|
|
|
+use catchAdmin\api\model\PublishAck;
|
|
|
use catchAdmin\equipment\model\EquipmentType;
|
|
|
use catcher\base\CatchRequest as Request;
|
|
|
use catcher\CatchResponse;
|
|
@@ -209,13 +210,18 @@ class HydEquipment extends CatchController
|
|
|
Db::rollback();
|
|
|
return CatchResponse::fail('imei号已存在');
|
|
|
}
|
|
|
- Hydraulic::where('eq_id', $id)->update($hydraulic);
|
|
|
+ $bool = Hydraulic::where('eq_id', $id)->find();
|
|
|
+ if ($bool) {
|
|
|
+ Hydraulic::where('eq_id', $id)->update($hydraulic);
|
|
|
+ } else {
|
|
|
+ Hydraulic::create($hydraulic);
|
|
|
+ }
|
|
|
}
|
|
|
//保存扳手
|
|
|
if ($data['equipment_type'] == 3 || $data['equipment_type'] == 4) {
|
|
|
|
|
|
$wrench = [
|
|
|
- 'id' => $data['list']['id'],
|
|
|
+
|
|
|
// 编号
|
|
|
'number' => $data['number'],
|
|
|
//设备id
|
|
@@ -236,7 +242,12 @@ class HydEquipment extends CatchController
|
|
|
Db::rollback();
|
|
|
return CatchResponse::fail('扳手编号已存在');
|
|
|
}
|
|
|
- Wrench::update($wrench, ['id' => $data['list']['id']]);
|
|
|
+ $bool = Wrench::where('eq_id', $id)->find();
|
|
|
+ if ($bool) {
|
|
|
+ Wrench::update($wrench, ['eq_id' => $id]);
|
|
|
+ } else {
|
|
|
+ Wrench::create($wrench);
|
|
|
+ }
|
|
|
}
|
|
|
return CatchResponse::success($this->hydEquipmentModel->updateBy($id, $hydequ));
|
|
|
}
|
|
@@ -317,97 +328,99 @@ class HydEquipment extends CatchController
|
|
|
|
|
|
|
|
|
|
|
|
- public function importStores(Request $request)
|
|
|
+ public function importExcel(Request $request)
|
|
|
{
|
|
|
- $url = $request->post('url');
|
|
|
- if (!$url) {
|
|
|
- return CatchResponse::fail('请上传文件');
|
|
|
- }
|
|
|
- $brand_id = $request->post('brand_id');
|
|
|
- if (!$brand_id) {
|
|
|
- return CatchResponse::fail('请选择品牌');
|
|
|
- }
|
|
|
- $creator_id = $request->post('creator_id');
|
|
|
- //解析地址
|
|
|
- $parse_url = parse_url($url)['path'];
|
|
|
- //载入excel表格
|
|
|
- $objPHPExcel = IOFactory::load(public_path() . $parse_url);
|
|
|
- // var_dump($objPHPExcel);
|
|
|
- //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
|
|
|
- // $nameArr = $objPHPExcel->getSheetNames();
|
|
|
- // var_dump($nameArr);
|
|
|
- //获取表的数量
|
|
|
- $sheetCount = $objPHPExcel->getSheetCount();
|
|
|
- $fail = 0; //失败条数
|
|
|
- $success = 0; //成功条数
|
|
|
- $total = 0; //总导入数
|
|
|
- $excel_data = [];
|
|
|
- //循环读取每一张表
|
|
|
- for ($index = 0; $index < $sheetCount; $index++) {
|
|
|
- //设置当前要读取的表
|
|
|
- $sheet = $objPHPExcel->getSheet($index); //excel中的第一张sheet
|
|
|
- // var_dump($sheet);exit;
|
|
|
- $highestRow = $sheet->getHighestRow(); // 取得总行数
|
|
|
- // var_dump($highestRow);
|
|
|
- if ($highestRow <= 2) {
|
|
|
- continue;
|
|
|
+
|
|
|
+ $map = [
|
|
|
+ ['key' => 'A', 'value' => 'material_number'],
|
|
|
+ ['key' => 'C', 'value' => 'equipment_type'],
|
|
|
+ ['key' => 'D', 'value' => 'name'],
|
|
|
+ ['key' => 'E', 'value' => 'equipment_model'],
|
|
|
+ ['key' => 'F', 'value' => 'issue_unit'],
|
|
|
+ ['key' => 'G', 'value' => 'fixed_asset_number'],
|
|
|
+ ['key' => 'H', 'value' => 'fixed_asset_number2'],
|
|
|
+ ['key' => 'I', 'value' => 'serial_number'],
|
|
|
+ ['key' => 'J', 'value' => 'factory_number'],
|
|
|
+ ['key' => 'K', 'value' => 'check_last_time'],
|
|
|
+ ['key' => 'L', 'value' => 'check_next_time'],
|
|
|
+ ['key' => 'M', 'value' => 'check_status'],
|
|
|
+ ['key' => 'N', 'value' => 'status'],
|
|
|
+
|
|
|
+ ];
|
|
|
+ //过滤
|
|
|
+ $func = function ($data) {
|
|
|
+
|
|
|
+ $data['equipment_type'] = EquipmentType::where('pid', '<>', 0)->where('name', $data['equipment_type'])->value('id');
|
|
|
+ if ($data['check_status'] == '已校验') {
|
|
|
+ $data['check_status'] = 2;
|
|
|
+ } else if ($data['check_status'] == '待校验') {
|
|
|
+ $data['check_status'] = 1;
|
|
|
+ } else if ($data['check_status'] == '已报废') {
|
|
|
+ $data['check_status'] = -1;
|
|
|
+ } else {
|
|
|
+ $data['check_status'] = 1;
|
|
|
}
|
|
|
- $total += $highestRow - 3;
|
|
|
- for ($j = 4; $j <= $highestRow - 1; $j++) {
|
|
|
- $data = array(); //每条门店信息
|
|
|
- $name = trim($sheet->getCell("B" . $j)->getFormattedValue()); //门店名称
|
|
|
- $city_name = trim($sheet->getCell("C" . $j)->getFormattedValue()); //市区
|
|
|
- $area_name = trim($sheet->getCell("D" . $j)->getFormattedValue()); //县区
|
|
|
- $street = trim($sheet->getCell("E" . $j)->getFormattedValue()); //街道办
|
|
|
- $address = trim($sheet->getCell("F" . $j)->getFormattedValue()); //详细地址
|
|
|
- $longitude = trim($sheet->getCell("G" . $j)->getFormattedValue()); //经度
|
|
|
- $latitude = trim($sheet->getCell("H" . $j)->getFormattedValue()); //维度
|
|
|
- $category = trim($sheet->getCell("I" . $j)->getFormattedValue()); //门店类别
|
|
|
- if ($category == '直营店') {
|
|
|
- $mendian = '1';
|
|
|
- }
|
|
|
- if ($category == '经销商') {
|
|
|
- $mendian = '2';
|
|
|
- }
|
|
|
- if ($category == '加盟店') {
|
|
|
- $mendian = '3';
|
|
|
- }
|
|
|
- $principal = trim($sheet->getCell("J" . $j)->getFormattedValue()); //店长
|
|
|
- $mobile = trim($sheet->getCell("K" . $j)->getFormattedValue()); //电话
|
|
|
- if (!$name) {
|
|
|
- $fail++;
|
|
|
- $msg = '导入第' . $j . '行门店失败:门店名称不存在';
|
|
|
- $this->importFailLog($msg);
|
|
|
- continue;
|
|
|
- }
|
|
|
- $data = array(
|
|
|
- 'department_name' => $name,
|
|
|
- 'brand_id' => $brand_id,
|
|
|
- 'area_id' => Db::table('area')->whereLike('area_name', $area_name)->value('id'),
|
|
|
- 'street' => $street,
|
|
|
- 'address' => $address,
|
|
|
- 'status' => 1, //正常
|
|
|
- 'longitude' => $longitude,
|
|
|
- 'latitude' => $latitude,
|
|
|
- 'category' => $mendian,
|
|
|
- 'principal' => $principal,
|
|
|
- 'mobile' => $mobile,
|
|
|
- 'reserve_num' => 999, //预约剩余数
|
|
|
- 'creator_id' => $creator_id,
|
|
|
- 'created_at' => time(),
|
|
|
- 'updated_at' => time()
|
|
|
- );
|
|
|
- array_push($excel_data, $data);
|
|
|
+
|
|
|
+ if ($data['status'] = '使用中') {
|
|
|
+ $data['status'] = 4;
|
|
|
+ } else if ($data['status'] == '待维修') {
|
|
|
+ $data['status'] = -1;
|
|
|
+ } else if ($data['status'] == '在途') {
|
|
|
+ $data['status'] = 1;
|
|
|
+ } else if ($data['status'] == '待校验') {
|
|
|
+ $data['status'] = 2;
|
|
|
+ } else if ($data['status'] == '备用') {
|
|
|
+ $data['status'] = 3;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ return $data;
|
|
|
+ };
|
|
|
+ return importExcel($request, $map, $this->hydEquipmentModel, $func);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @Descripttion: 查看上传的日志
|
|
|
+ * @name: likang
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
+ public function SelectLogByImei(Request $request)
|
|
|
+ {
|
|
|
+ //获取设备的imei号
|
|
|
+ $imei = $request->get('imei');
|
|
|
+ $pub_ack = new PublishAck();
|
|
|
+
|
|
|
+ $list = Db::name('publish_ack')->where('Imei', $imei)->field('id,PublishVersion,AddTime,Succ,AckTime,Imei')->order('PublishVersion', 'desc')->select()->toArray();
|
|
|
+ foreach ($list as $key => $item) {
|
|
|
+ //时间
|
|
|
+ $list[$key]['AddTime'] = date('Y-m-d H:i:s', substr($item['AddTime'], 0, 10));
|
|
|
+ $list[$key]['AckTime'] = date('Y-m-d H:i:s', substr($item['AckTime'], 0, 10));
|
|
|
}
|
|
|
- // var_dump($excel_data);
|
|
|
- // return CatchResponse::success();
|
|
|
- //防止Excel有重复,去重
|
|
|
- array_unique($excel_data, SORT_REGULAR);
|
|
|
- if ($count = $this->department->limit(100)->insertAll($excel_data)) {
|
|
|
- return CatchResponse::success('共' . $total . '条数据,成功' . $count . '条,失败' . $fail . '条');
|
|
|
+ return CatchResponse::success($list);
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @Descripttion: 获取日志详情
|
|
|
+ * @name: likang
|
|
|
+ * @param {Request} $request
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
+ public function getLogDetail(Request $request)
|
|
|
+ {
|
|
|
+ $type = $request->get('type');
|
|
|
+ $id = $request->get('id');
|
|
|
+ $data = null;
|
|
|
+ if ($type == 1) {
|
|
|
+ $data = Db::name('publish_ack')->where('id', $id)->value('PublishContent');
|
|
|
+ $data = optimize_json($data);
|
|
|
+ $data = json_decode($data, true);
|
|
|
+ if (json_last_error() != 0) {
|
|
|
+ return CatchResponse::fail(json_last_error_msg());
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ $data = Db::name('publish_ack')->where('id', $id)->value('Extra');
|
|
|
+ $data = optimize_json($data);
|
|
|
}
|
|
|
- return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
|
|
|
- // return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
|
|
|
+
|
|
|
+
|
|
|
+ return CatchResponse::success($data);
|
|
|
}
|
|
|
}
|