ProduceOrderService.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <?php
  2. namespace app\common\service;
  3. use app\admin\model\Area;
  4. use app\common\model\MobileOrder;
  5. use app\common\model\Produce;
  6. use app\common\model\ProduceGzdx;
  7. use app\common\model\ProduceOrderUpload;
  8. use Exception;
  9. use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
  10. use PhpOffice\PhpSpreadsheet\IOFactory;
  11. use PhpOffice\PhpSpreadsheet\Reader\Csv;
  12. use PhpOffice\PhpSpreadsheet\Reader\Xls;
  13. use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
  14. use think\Db;
  15. /**
  16. * 生产订单服务类
  17. */
  18. class ProduceOrderService
  19. {
  20. const PRODUCE_TYPE = [
  21. 'cucc' => '联通',
  22. 'gz_ctcc' => '广州电信',
  23. ];
  24. const PRODUCE_TYPE_MODEL = [
  25. 'cucc' => Produce::class,
  26. 'gz_ctcc' => ProduceGzdx::class,
  27. ];
  28. /**
  29. * 保存上传文件
  30. *
  31. * @param [type] $file
  32. * @param [type] $admin_id
  33. * @return void
  34. */
  35. public static function saveFile($file, $admin_id)
  36. {
  37. $file=parse_url($file,PHP_URL_PATH);
  38. ProduceOrderUpload::create([
  39. 'admin_id' => $admin_id,
  40. 'file' => $filePAth=parse_url($file,PHP_URL_PATH),
  41. 'filename' => basename($filePAth),
  42. 'filename_error' => sprintf("%s%s",request()->domain(),$file)
  43. ]);
  44. }
  45. /**
  46. * 真实导入操作
  47. *
  48. * @param [type] $upload
  49. * @return void
  50. */
  51. public static function import($upload)
  52. {
  53. $time = time();
  54. $file = $upload['file'] ?? '';
  55. if (empty($file)) {
  56. common_log('生产订单导入失败, 文件地址为空');
  57. return false;
  58. }
  59. $file=parse_url($file,PHP_URL_PATH);
  60. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  61. $filenameArr=explode('.',$file);
  62. if (!is_file($filePath)) {
  63. common_log('生产订单导入失败, 文件不存在');
  64. return false;
  65. }
  66. //实例化reader
  67. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  68. if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
  69. common_log('生产订单导入失败, 文件格式错误');
  70. return false;
  71. }
  72. $errLog=[];
  73. $succNum=0;
  74. if ($ext === 'csv') {
  75. $file = fopen($filePath, 'r');
  76. $filePath = tempnam(sys_get_temp_dir(), 'import_csv');
  77. $fp = fopen($filePath, "w");
  78. $n = 0;
  79. while ($line = fgets($file)) {
  80. $line = rtrim($line, "\n\r\0");
  81. $encoding = mb_detect_encoding($line, ['utf-8', 'gbk', 'latin1', 'big5']);
  82. if ($encoding != 'utf-8') {
  83. $line = mb_convert_encoding($line, 'utf-8', $encoding);
  84. }
  85. if ($n == 0 || preg_match('/^".*"$/', $line)) {
  86. fwrite($fp, $line . "\n");
  87. } else {
  88. fwrite($fp, '"' . str_replace(['"', ','], ['""', '","'], $line) . "\"\n");
  89. }
  90. $n++;
  91. }
  92. fclose($file) || fclose($fp);
  93. $reader = new Csv();
  94. } elseif ($ext === 'xls') {
  95. $reader = new Xls();
  96. } else {
  97. $reader = new Xlsx();
  98. }
  99. $fieldArr = [
  100. '本地产品编码' => 'produce_id',
  101. '下单号码' => 'no',
  102. '外部订单号' => 'out_order_no',
  103. '收货人姓名' => 'address_name',
  104. '证件姓名' => 'name',
  105. '证件号码' => 'id_no',
  106. '联系电话' => 'phone',
  107. '省' => 'province',
  108. '市' => 'city',
  109. '区' => 'area',
  110. '详细地址' => 'address',
  111. '来源平台' => 'platform_source',
  112. '供应商' => 'supplier',
  113. 'ICCID' => 'iccid',
  114. ];
  115. if (!$PHPExcel = $reader->load($filePath)) {
  116. throw_user('生产订单导入失败, 读取文件失败');
  117. }
  118. $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
  119. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  120. $errorWriteColumn=++$allColumn;
  121. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.'1',"错误信息");
  122. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  123. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  124. $fields = [];
  125. for ($currentRow = 1; $currentRow <= 1; $currentRow++) {
  126. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  127. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getCalculatedValue();
  128. $fields[] = preg_replace("/\s+/",'',$val);
  129. }
  130. }
  131. $dataRowNum=0;
  132. for ($currentRow = 2; $currentRow <= $allRow; $currentRow++) {
  133. common_log('生产订单导入中, 当前行: ' . $currentRow);
  134. $values = [];
  135. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  136. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getCalculatedValue();
  137. $values[] = is_null($val) ? '' : $val;
  138. }
  139. $row = [];
  140. $temp = array_combine($fields, $values);
  141. if(!array_filter(array_values($temp))){
  142. break;
  143. }
  144. foreach ($temp as $k => $v) {
  145. if (isset($fieldArr[$k]) && $k !== '') {
  146. $row[$fieldArr[$k]] = $v;
  147. }
  148. }
  149. Db::startTrans();
  150. try {
  151. if(!$row['produce_id']) {
  152. $errorMsg = '产品ID有误';
  153. $errLog[]=[
  154. 'line' =>$currentRow,
  155. 'error'=>$errorMsg,
  156. ];
  157. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  158. throw_user($errorMsg);
  159. }
  160. if(empty($row['address_name'])) {
  161. $errorMsg = '收货人姓名有误';
  162. $errLog[]=[
  163. 'line' =>$currentRow,
  164. 'error'=>$errorMsg,
  165. ];
  166. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  167. throw_user($errorMsg);
  168. }
  169. if(empty($row['name'])) {
  170. $errorMsg = '证件姓名有误';
  171. $errLog[]=[
  172. 'line' =>$currentRow,
  173. 'error'=>$errorMsg,
  174. ];
  175. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  176. throw_user($errorMsg);
  177. }
  178. if(empty($row['id_no'])) {
  179. $errorMsg = '证件号码有误';
  180. $errLog[]=[
  181. 'line' =>$currentRow,
  182. 'error'=>$errorMsg,
  183. ];
  184. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  185. throw_user($errorMsg);
  186. }
  187. if(empty($row['phone'])) {
  188. $errorMsg = '联系电话有误';
  189. $errLog[]=[
  190. 'line' =>$currentRow,
  191. 'error'=>$errorMsg,
  192. ];
  193. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  194. throw_user($errorMsg);
  195. }
  196. if(empty($row['province']) || empty($row['city']) || empty($row['area']) || empty($row['address'])) {
  197. $errorMsg = '省市区收货地址有误';
  198. $errLog[]=[
  199. 'line' =>$currentRow,
  200. 'error'=>$errorMsg,
  201. ];
  202. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  203. throw_user($errorMsg);
  204. }
  205. // 拼组省市区数据
  206. $province = Area::where('name', 'like', '%'.$row['province'].'%')->find();
  207. if (empty($province)) {
  208. $errorMsg = '省份有误';
  209. $errLog[]=[
  210. 'line' =>$currentRow,
  211. 'error'=>$errorMsg,
  212. ];
  213. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  214. // throw_user($errorMsg);
  215. }
  216. $city = Area::where('name', 'like', '%'.$row['city'].'%')->where('pid', $province->id)->find();
  217. if (empty($city)) {
  218. $errorMsg = '城市有误';
  219. $errLog[]=[
  220. 'line' =>$currentRow,
  221. 'error'=>$errorMsg,
  222. ];
  223. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  224. // throw_user($errorMsg);
  225. }
  226. $area = Area::where('name', 'like', '%'.$row['area'].'%')->where('pid', $city->id)->find();
  227. if (empty($area)) {
  228. $errorMsg = '区域有误';
  229. $errLog[]=[
  230. 'line' =>$currentRow,
  231. 'error'=>$errorMsg,
  232. ];
  233. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  234. // throw_user($errorMsg);
  235. }
  236. $provinceId = $province->id ?? 0;
  237. $cityId = $city->id ?? 0;
  238. $areaId = $area->id ?? 0;
  239. // 配置省市区数据
  240. $row['city'] = $provinceId . ',' . $cityId . ',' . $areaId;
  241. unset($row['province'], $row['area']);
  242. // 配置产品ID
  243. $row['produce_id'] = Produce::where('local_code', $row['produce_id'])->value('id');
  244. if (empty($row['produce_id'])) {
  245. $errorMsg = '本地产品编码有误';
  246. $errLog[]=[
  247. 'line' =>$currentRow,
  248. 'error'=>$errorMsg,
  249. ];
  250. $PHPExcel->setActiveSheetIndex(0)->setCellValue($errorWriteColumn.$currentRow,$errorMsg);
  251. throw_user($errorMsg);
  252. }
  253. foreach ($row as &$val) {
  254. $val = trim($val);
  255. }
  256. $result = self::add($row);
  257. Db::commit();
  258. $succNum++;
  259. if ($result !== false) {
  260. // 推送订单
  261. ZopOrderService::push($result);
  262. } else {
  263. throw_user('订单创建失败');
  264. }
  265. } catch (Exception $e) {
  266. Db::rollback();
  267. common_log('生产订单导入失败', $e);
  268. }
  269. $dataRowNum++;
  270. sleep(1);
  271. }
  272. try {
  273. $upload->rows_succ = $succNum;
  274. $upload->rows_total = $dataRowNum;
  275. $upload->rows_fail = count($errLog);
  276. $upload->run_time = time()-$time;
  277. $upload->status = 2;
  278. $upload->save();
  279. $max=1;
  280. if($errLog) {
  281. while ($max < $allRow) {
  282. for ($currentRow = 2; $currentRow <= $allRow; $currentRow++) {
  283. if (!$PHPExcel->getSheet(0)->getCell($errorWriteColumn . $currentRow)->getValue()) {
  284. break;
  285. }
  286. }
  287. $max++;
  288. }
  289. $errorWriter = IOFactory::createWriter($PHPExcel, ucfirst($ext));
  290. $errorWriter->save($filePath);
  291. }
  292. } catch (Exception $e) {
  293. common_log('生产订单导入失败, 写入错误信息失败');
  294. }
  295. unset($PHPExcel,$errorWriter,$errLog);
  296. }
  297. /**
  298. * 新建订单
  299. *
  300. * @param array $params
  301. * @return void
  302. */
  303. public static function add($params = [])
  304. {
  305. $params['status'] = 10;
  306. $params['pay_time'] = time();
  307. $params['create_time'] = time();
  308. $params['update_time'] = time();
  309. $params['order_no'] = order_no();
  310. $params['is_need_push'] = 1;
  311. $params['is_push_zop'] = 0;
  312. $params['is_auto'] = 0;
  313. return MobileOrder::insertGetId($params);
  314. }
  315. }