Orders.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. <?php namespace App\Http\Controllers\Admin;
  2. use App\Http\Requests\Admin\Orders as Request;
  3. use App\Models\Custom;
  4. use App\Models\FilesManager;
  5. use App\Models\Product;
  6. use App\Models\Orders as Model;
  7. use App\Models\OrdersAddr;
  8. use App\Models\OrdersProduct;
  9. use PhpOffice\PhpSpreadsheet\IOFactory;
  10. use PhpOffice\PhpSpreadsheet\Spreadsheet;
  11. use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
  12. use PhpOffice\PhpSpreadsheet\Style\Alignment;
  13. use PhpOffice\PhpSpreadsheet\Style\Border;
  14. use PhpOffice\PhpSpreadsheet\Style\Color;
  15. use PhpOffice\PhpSpreadsheet\Style\Fill;
  16. /**
  17. * 订单管理
  18. *
  19. * @author 刘相欣
  20. *
  21. */
  22. class Orders extends Auth{
  23. protected function _initialize(){
  24. parent::_initialize();
  25. $this->assign('breadcrumb1','销售管理');
  26. $this->assign('breadcrumb2','订单管理');
  27. }
  28. /**
  29. * 首页列表
  30. *
  31. * */
  32. public function index(Model $Model,OrdersProduct $OrdersProduct,Product $Product,Custom $Custom){
  33. // 接受参数
  34. $code = request('order_code','');
  35. $productCode = request('product_code','');
  36. $phone = request('phone','');
  37. $customCode = request('custom_code','');
  38. $productName = request('product_name','');
  39. $status = request('status',0);
  40. $startTime = request('start_time','');
  41. $endTime = request('end_time','');
  42. // 编码转ID
  43. $id = $code ? $Model->codeToId($code) : 0;
  44. $productId = $productCode ? $Product->codeToId($productCode) : 0;
  45. $uid = $customCode ? $Custom->codeToId($customCode) : 0;
  46. // 查询条件
  47. $map = [];
  48. // 编码ID
  49. if( $id ) $map[] = ['orders_product.order_id','=',$id];
  50. if( $uid ) $map[] = ['custom.uid','=',$uid];
  51. if( $productId ) $map[] = ['orders_product.product_id','=',$productId];
  52. if( $productName ) $map[] = ['orders_product.product_name','=',$productName];
  53. if( $phone ) $map[] = ['orders_addr.contact_phone','=',$phone];
  54. if( $startTime ) $map[] = ['orders_product.insert_time','>=',strtotime($startTime)];
  55. if( $endTime ) $map[] = ['orders_product.insert_time','<=',strtotime($endTime)];
  56. if( $status ) $map[] = ['orders_product.status','=',$status];
  57. // 查询数据
  58. $list = $OrdersProduct->query()
  59. ->join('custom','orders_product.custom_uid','=','custom.uid')
  60. ->join('orders_addr','orders_addr.order_id','=','orders_product.order_id')
  61. ->where($map)
  62. ->orderByDesc('id')
  63. ->select([
  64. 'orders_product.*','custom.username as custom_name',
  65. 'orders_addr.contact_name','orders_addr.contact_phone','orders_addr.contact_province','orders_addr.contact_city','orders_addr.contact_area','orders_addr.contact_addr'
  66. ])
  67. ->paginate(request('limit',config('page_num',10)))->appends(request()->all());
  68. // 循环处理数据
  69. foreach ($list as $key => $value) {
  70. // id转编号
  71. $value['order_code'] = $Model->idToCode($value['order_id']);
  72. $value['custom_code'] = $Custom->idToCode($value['custom_uid']);
  73. $value['state'] = $Model->getState($value['status'],'state');
  74. $value['product_code'] = $Product->idToCode($value['product_id']);
  75. // 重组
  76. $list[$key] = $value;
  77. }
  78. // 分配数据
  79. $this->assign('empty', '<tr><td colspan="20">~~暂无数据</td></tr>');
  80. $this->assign('list', $list);
  81. // 加载模板
  82. return $this->fetch();
  83. }
  84. /**
  85. * 状态
  86. *
  87. * */
  88. public function set_status( Request $request, Model $Model,OrdersProduct $OrdersProduct){
  89. // 验证参数
  90. $request->scene('set_status')->validate();
  91. // 接收参数
  92. $id = request('id',0);
  93. $status = request('status',0);
  94. // 获取产品和数量
  95. $oldData = $Model->query()->find($id);
  96. // 如果用户不存在
  97. if( !$oldData ) return json_send(['code'=>'error','msg'=>'订单不存在']);
  98. // 查询数据
  99. $result = $Model->edit($id,['status'=>$status]);
  100. // 提示新增失败
  101. if( !$result ) return json_send(['code'=>'error','msg'=>'设置失败']);
  102. // 查询数据
  103. $result = $OrdersProduct->query()->where([['order_id','=',$id]])->update(['status'=>$status,'update_time'=>time()]);
  104. // 提示新增失败
  105. if( !$result ) return json_send(['code'=>'error','msg'=>'设置失败']);
  106. // 记录行为
  107. $this->addAdminHistory(admin('uid'),$Model->getTable(),$id,2,[],['status'=>$status]);
  108. // 告知结果
  109. return json_send(['code'=>'success','msg'=>'设置成功','path'=>'']);
  110. }
  111. /**
  112. * 表格导入
  113. *
  114. * */
  115. public function import_execl( Request $request,Model $Model,Custom $Custom,OrdersAddr $OrdersAddr,OrdersProduct $OrdersProduct, FilesManager $FilesManager){
  116. // 验证参数
  117. $request->scene('import_execl')->validate();
  118. // 获取表格信息
  119. $file = request()->file('order_file');
  120. // 返回结果
  121. $sheetList = $FilesManager->excelToOrder($file);
  122. // 如果不存在结果
  123. if( isset($sheetList['error']) ) return json_send(['code'=>'error','msg'=>$sheetList['error']]);
  124. // 订单列表
  125. $orderList = [];
  126. // 当前时间
  127. $time = time();
  128. // 循环表格数据
  129. foreach ($sheetList as $value) {
  130. // 状态更改
  131. $value['status'] = $Model->getWeibanStatus($value['status']);
  132. // 客户手机号
  133. $orderList[$value['weizan_orderid']]['custom'] = ['phone'=>$value['contact_phone'],'username'=>$value['buyer_nick']];
  134. // 组合成订单的收件地址
  135. $orderList[$value['weizan_orderid']]['contact'] = [
  136. 'contact_name'=>$value['contact_name'],
  137. 'contact_phone'=>$value['contact_phone'],
  138. 'contact_province'=>$value['contact_province'],
  139. 'contact_city'=>$value['contact_city'],
  140. 'contact_area'=>$value['contact_area'],
  141. 'contact_addr'=>$value['contact_addr']
  142. ];
  143. // 组合成订单的收件地址
  144. $orderList[$value['weizan_orderid']]['product'][] = [
  145. 'status'=>$value['status'],
  146. 'product_name'=>$value['product_name'],
  147. 'sku_attr_names'=>$value['sku_attr_names'],
  148. 'buy_num'=>$value['buy_num'],
  149. 'pay_total'=>$value['pay_total'],
  150. 'price_total'=>$value['pay_total'],
  151. 'insert_time'=>$value['insert_time'],
  152. 'update_time'=>$time,
  153. ];
  154. // 组合成订单的需要的数据
  155. if( !isset($orderList[$value['weizan_orderid']]['order']) ) $orderList[$value['weizan_orderid']]['order'] = ['weizan_orderid'=>$value['weizan_orderid'],'status'=>$value['status'],'pay_total'=>0,'price_total'=>0,'insert_time'=>$value['insert_time']];
  156. // 价格
  157. $orderList[$value['weizan_orderid']]['order']['pay_total'] = $orderList[$value['weizan_orderid']]['order']['pay_total'] + $value['pay_total'];
  158. $orderList[$value['weizan_orderid']]['order']['price_total'] = $orderList[$value['weizan_orderid']]['order']['pay_total'];
  159. }
  160. // 新增地址
  161. $newAddrList = [];
  162. // 要更新的订单子表
  163. $orderProduct = [];
  164. // 循环订单列表
  165. foreach ($orderList as $value) {
  166. // 获取手机号,查询是否用客户
  167. $custom = $Custom->getOneByPhone($value['custom']['phone']);
  168. // 如果存在手机号
  169. $uid = $custom ? $custom['uid'] : $Custom->add($value['custom']);
  170. // 如果客户存在
  171. if( !$uid ) return json_send(['code'=>'error','msg'=>$value['custom']['username'].'【'.$value['custom']['phone'].'】'.'无法创建用户']);
  172. // 通过订单号查询是否存在系统订单
  173. $orderId = $Model->query()->where([['weizan_orderid','=',$value['order']['weizan_orderid']]])->value('id');
  174. // 客户ID
  175. $value['order']['custom_uid'] = $uid;
  176. // 存在订单获取订单ID,不存在则新增
  177. $orderId = $orderId ? $Model->edit($orderId,$value['order']) : $Model->add($value['order']);
  178. // 如果客户存在
  179. if( !$orderId ) return json_send(['code'=>'error','msg'=>$orderId.'订单写入失败']);
  180. // 订单库
  181. $addrId = $OrdersAddr->query()->where([['order_id','=',$orderId]])->value('id');
  182. // 订单ID
  183. $value['contact']['order_id'] = $orderId;
  184. // 订单ID
  185. $value['contact']['id'] = (int)$addrId;
  186. // 不存在地址的话
  187. $newAddrList[] = $value['contact'];
  188. // 循环子订单
  189. foreach ( $value['product'] as $product ) {
  190. // 数据结果
  191. $product['order_id'] = $orderId;
  192. $product['custom_uid'] = $uid;
  193. $product['id'] = (int) $OrdersProduct->query()->where([['order_id','=',$orderId],'product_name'=>$product['product_name'],'sku_attr_names'=>$product['sku_attr_names']])->value('id');
  194. $orderProduct[] = $product;
  195. }
  196. }
  197. // 新地址写入
  198. $OrdersProduct->query()->upsert($orderProduct,'id',['product_name','sku_attr_names','buy_num','pay_total','price_total','update_time']);
  199. // 新地址写入
  200. $OrdersAddr->query()->upsert($newAddrList,'id',['contact_name','contact_phone','contact_province','contact_city','contact_area','contact_addr']);
  201. // 提示成功
  202. return json_send(['code'=>'success','msg'=>'订单导入成功','path'=>'']);
  203. }
  204. /**
  205. * 导出表格导入
  206. *
  207. * */
  208. public function down_excel(Model $Model,OrdersProduct $OrdersProduct,Product $Product,Custom $Custom){
  209. // 接受参数
  210. $code = request('order_code','');
  211. $productCode = request('product_code','');
  212. $customCode = request('custom_code','');
  213. $productName = request('product_name','');
  214. $status = request('status',0);
  215. $startTime = request('start_time','');
  216. $endTime = request('end_time','');
  217. // 编码转ID
  218. $id = $code ? $Model->codeToId($code) : 0;
  219. $productId = $productCode ? $Product->codeToId($productCode) : 0;
  220. $uid = $customCode ? $Custom->codeToId($customCode) : 0;
  221. // 查询条件
  222. $map = [];
  223. // 编码ID
  224. if( $id ) $map[] = ['orders_product.order_id','=',$id];
  225. if( $uid ) $map[] = ['custom.uid','=',$uid];
  226. if( $productId ) $map[] = ['orders_product.product_id','=',$productId];
  227. if( $productName ) $map[] = ['orders_product.product_name','=',$productName];
  228. if( $startTime ) $map[] = ['orders_product.insert_time','>=',strtotime($startTime)];
  229. if( $endTime ) $map[] = ['orders_product.insert_time','<=',strtotime($endTime)];
  230. if( $status ) $map[] = ['orders_product.status','=',$status];
  231. // 查询数据
  232. $list = $OrdersProduct->query()
  233. ->join('custom','orders_product.custom_uid','=','custom.uid')
  234. ->join('orders_addr','orders_addr.order_id','=','orders_product.order_id')
  235. ->where($map)
  236. ->orderByDesc('orders_product.id')
  237. ->select([
  238. 'orders_product.id as id','orders_product.order_id','orders_product.custom_uid','orders_product.product_name','orders_product.sku_attr_names as product_spec','orders_product.product_thumb','orders_product.buy_num','orders_product.pay_total','orders_product.status','orders_product.insert_time',
  239. 'custom.username as custom_name','custom.weiban_extid as weiban_extid',
  240. 'orders_addr.contact_name','orders_addr.contact_phone','orders_addr.contact_province','orders_addr.contact_city','orders_addr.contact_area','orders_addr.contact_addr'
  241. ])->get()->toArray();
  242. // 返回结果
  243. $data = [];
  244. // 循环处理数据
  245. foreach ($list as $value) {
  246. // id转编号
  247. $value['order_id'] = $Model->idToCode($value['order_id']);
  248. $value['status'] = $Model->getState($value['status'],'state');
  249. $value['custom_uid'] = $Custom->idToCode($value['custom_uid']);
  250. $value['product_price'] = $value['buy_num'] ? ($value['pay_total'] / $value['buy_num']) : $value['buy_num'];
  251. // 重组
  252. $data[$value['order_id']]['order_id'] = $value['order_id'];
  253. $data[$value['order_id']]['custom_uid'] = $value['custom_uid'];
  254. $data[$value['order_id']]['custom_name'] = $value['custom_name'];
  255. $data[$value['order_id']]['weiban_extid'] = $value['weiban_extid'];
  256. $data[$value['order_id']]['status'] = $value['status'];
  257. // 地址
  258. $data[$value['order_id']]['contact_name'] = $value['contact_name'];
  259. $data[$value['order_id']]['contact_phone'] = $value['contact_phone'];
  260. $data[$value['order_id']]['contact_province'] = $value['contact_province'];
  261. $data[$value['order_id']]['contact_city'] = $value['contact_city'];
  262. $data[$value['order_id']]['contact_area'] = $value['contact_area'];
  263. $data[$value['order_id']]['contact_addr'] = $value['contact_addr'];
  264. // 子订单
  265. $data[$value['order_id']]['product'][] = ['product_name'=>$value['product_name'],'product_spec'=>$value['product_spec'],'product_thumb'=>$value['product_thumb'],'product_price'=>$value['product_price'],'buy_num'=>$value['buy_num'],'pay_total'=>$value['pay_total']];
  266. }
  267. try {
  268. // 去下载
  269. $this->toDown($data);
  270. } catch (\Throwable $th) {
  271. dd($th);
  272. }
  273. }
  274. /**
  275. * 去下载
  276. */
  277. private function toDown($data){
  278. // 创建新的电子表格对象
  279. $spreadsheet = new Spreadsheet();
  280. // 设置合并单元格的行和列,例如合并A1到B2的单元格
  281. $sheet = $this->setStyle($spreadsheet);
  282. // 从第二行写入
  283. $row = 2;
  284. // 循环写入
  285. foreach ($data as $key => $value) {
  286. // 如果有多个商品
  287. $count = count($value['product']);
  288. // 如果有多个商品
  289. if( $count > 1 ) {
  290. // 合并单元格
  291. $sheet->mergeCells('A'.$row.':'.'A'.($row+$count-1));
  292. $sheet->mergeCells('B'.$row.':'.'B'.($row+$count-1));
  293. $sheet->mergeCells('C'.$row.':'.'C'.($row+$count-1));
  294. $sheet->mergeCells('D'.$row.':'.'D'.($row+$count-1));
  295. $sheet->mergeCells('E'.$row.':'.'E'.($row+$count-1));
  296. $sheet->mergeCells('F'.$row.':'.'F'.($row+$count-1));
  297. $sheet->mergeCells('G'.$row.':'.'G'.($row+$count-1));
  298. $sheet->mergeCells('H'.$row.':'.'H'.($row+$count-1));
  299. $sheet->mergeCells('I'.$row.':'.'I'.($row+$count-1));
  300. $sheet->mergeCells('J'.$row.':'.'J'.($row+$count-1));
  301. $sheet->mergeCells('P'.$row.':'.'P'.($row+$count-1));
  302. }
  303. // 单元格内容写入
  304. $sheet->setCellValue('A'.$row, $value['order_id']);
  305. $sheet->setCellValue('B'.$row, $value['custom_uid']);
  306. $sheet->setCellValue('C'.$row, $value['custom_name']);
  307. $sheet->setCellValue('D'.$row, $value['status']);
  308. $sheet->setCellValue('E'.$row, $value['contact_name']);
  309. $sheet->setCellValue('F'.$row, $value['contact_phone']);
  310. $sheet->setCellValue('G'.$row, $value['contact_province']);
  311. $sheet->setCellValue('H'.$row, $value['contact_city']);
  312. $sheet->setCellValue('I'.$row, $value['contact_area']);
  313. $sheet->setCellValue('J'.$row, $value['contact_addr']);
  314. $sheet->setCellValue('P'.$row, $value['weiban_extid']);
  315. // 循环产品
  316. foreach ($value['product'] as $v) {
  317. $sheet->setCellValue('K'.$row, $v['product_name']);
  318. $sheet->setCellValue('L'.$row, $v['product_spec']);
  319. $sheet->setCellValue('M'.$row, $v['product_price']);
  320. $sheet->setCellValue('N'.$row, $v['buy_num']);
  321. $sheet->setCellValue('O'.$row, $v['pay_total']);
  322. // 函数自增
  323. $row++;
  324. }
  325. }
  326. //
  327. // 创建内容
  328. $writer = IOFactory::createWriter($spreadsheet, 'Xlsx');
  329. header('Pragma: public');
  330. header('Content-type:application/vnd.ms-excel');
  331. header('Content-Disposition: inline;filename=下载订单.xlsx');
  332. // 输出数据流
  333. return $writer->save('php://output');
  334. }
  335. /**
  336. * 设置表格样式
  337. *
  338. */
  339. private function setStyle(Spreadsheet $spreadsheet){
  340. // 选择当前活动的工作表
  341. $sheet = $spreadsheet->getActiveSheet();
  342. // 宽
  343. $sheet->getColumnDimension('A')->setWidth(15);
  344. $sheet->getColumnDimension('B')->setWidth(15);
  345. $sheet->getColumnDimension('C')->setWidth(15);
  346. $sheet->getColumnDimension('D')->setWidth(15);
  347. $sheet->getColumnDimension('E')->setWidth(15);
  348. $sheet->getColumnDimension('F')->setWidth(15);
  349. $sheet->getColumnDimension('G')->setWidth(15);
  350. $sheet->getColumnDimension('H')->setWidth(15);
  351. $sheet->getColumnDimension('I')->setWidth(15);
  352. $sheet->getColumnDimension('J')->setWidth(50);
  353. $sheet->getColumnDimension('K')->setWidth(80);
  354. $sheet->getColumnDimension('L')->setWidth(80);
  355. $sheet->getColumnDimension('M')->setWidth(10);
  356. $sheet->getColumnDimension('N')->setWidth(10);
  357. $sheet->getColumnDimension('O')->setWidth(10);
  358. $sheet->getColumnDimension('P')->setWidth(50);
  359. // 默认高度
  360. $sheet->getDefaultRowDimension()->setRowHeight(18);
  361. // 加粗第一行
  362. $sheet->getStyle('A:P')->getAlignment()->setHorizontal(Alignment::HORIZONTAL_CENTER)->setVertical(Alignment::VERTICAL_CENTER);
  363. $sheet->getStyle('A1:P1')->getFont()->setBold(true);
  364. $sheet->getStyle('A1:P1')->getFill()->setFillType(Fill::FILL_SOLID)->getStartColor()->setARGB('FF00FF00'); // ARGB颜色代码,例如绿色
  365. // 设置表格标题
  366. $sheet
  367. ->setCellValue('A1', '订单ID')
  368. ->setCellValue('B1', '客户ID')
  369. ->setCellValue('C1', '客户昵称')
  370. ->setCellValue('D1', '订单状态')
  371. ->setCellValue('E1', '收货人')
  372. ->setCellValue('F1', '收货人手机号')
  373. ->setCellValue('G1', '省')
  374. ->setCellValue('H1', '市')
  375. ->setCellValue('I1', '区县')
  376. ->setCellValue('J1', '收货地址')
  377. ->setCellValue('K1', '产品名称')
  378. ->setCellValue('L1', '产品规格')
  379. ->setCellValue('M1', '产品价格')
  380. ->setCellValue('N1', '产品数量')
  381. ->setCellValue('O1', '产品金额')
  382. ->setCellValue('P1', '微伴ID');
  383. // 返回结果
  384. return $sheet;
  385. }
  386. }