Orders.php 20 KB

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