|
@@ -13,6 +13,7 @@ use catchAdmin\hydraulic\model\Hydraulic;
|
|
|
use catchAdmin\hydraulic\model\Wrench;
|
|
|
use catchAdmin\system\model\SysDictData;
|
|
|
use catcher\base\CatchRequest;
|
|
|
+use PhpOffice\PhpSpreadsheet\IOFactory;
|
|
|
use PhpParser\Node\Stmt\Catch_;
|
|
|
use think\facade\Db;
|
|
|
|
|
@@ -300,4 +301,113 @@ class HydEquipment extends CatchController
|
|
|
}
|
|
|
return CatchResponse::success($list);
|
|
|
}
|
|
|
+ /**
|
|
|
+ * @Descripttion: 获取不同类型的设备
|
|
|
+ * @name: likang
|
|
|
+ * @return {*}
|
|
|
+ */
|
|
|
+ public function getAllHydEqu(Request $request)
|
|
|
+ {
|
|
|
+ $data = $request->get();
|
|
|
+ $type = $data['type'];
|
|
|
+
|
|
|
+ $list = $this->hydEquipmentModel->where('equipment_type', $type)->field('id as value,name as text')->select();
|
|
|
+ return CatchResponse::success($list);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public function importStores(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;
|
|
|
+ }
|
|
|
+ $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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 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(['error' => true, 'msg' => '导入失败']);
|
|
|
+ // return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
|
|
|
+ }
|
|
|
}
|