截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Order.php 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\order;
  20. use app\common\basics\AdminBase;
  21. use app\common\model\order\order as OrderModel;
  22. use app\common\server\JsonServer;
  23. use app\admin\logic\order\OrderLogic;
  24. use app\common\model\Client_;
  25. use app\common\enum\PayEnum;
  26. use app\common\model\order\OrderLog;
  27. /**
  28. * Class order
  29. * @package app\admin\controller\order
  30. */
  31. class Order extends AdminBase
  32. {
  33. /**
  34. * @notes 订单列表
  35. * @return \think\response\Json|\think\response\View
  36. * @author suny
  37. * @date 2021/7/13 7:07 下午
  38. */
  39. public function lists()
  40. {
  41. $data = OrderLogic::statistics(input());
  42. // 订单状态
  43. $order_status = OrderModel::getOrderStatus();
  44. // 拼装数量统计
  45. $order_status = OrderLogic::getStat($order_status);
  46. $all = OrderLogic::getAll();
  47. if ($this->request->isAjax()) {
  48. $data['statistics'] = [
  49. 'all' => $all,
  50. 'order_status' => $order_status,
  51. ];
  52. return JsonServer::success('', $data);
  53. }
  54. return view('', [
  55. 'all' => $all,
  56. 'statistics' => $data,
  57. 'order_status' => $order_status,
  58. 'order_type' => OrderModel::getOrderType(true),
  59. 'order_source' => Client_::getClient(),
  60. 'pay_way' => PayEnum::getPayWay(),
  61. 'delivery_type' => OrderModel::getDeliveryType(true),
  62. ]);
  63. }
  64. /**
  65. * @notes 订单详情
  66. * @return \think\response\View
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\ModelNotFoundException
  69. * @throws \think\exception\DbException
  70. * @author suny
  71. * @date 2021/7/13 7:07 下午
  72. */
  73. public function detail()
  74. {
  75. $id = $this->request->get('id');
  76. $detail = OrderLogic::getDetail($id);
  77. $order_log = OrderLog::getOrderLog($id);
  78. return view('', [
  79. 'detail' => $detail,
  80. 'logs' => $order_log
  81. ]);
  82. }
  83. /**
  84. * @notes 物流信息
  85. * @return \think\response\View
  86. * @author suny
  87. * @date 2021/7/13 7:07 下午
  88. */
  89. public function express()
  90. {
  91. $id = $this->request->get('id');
  92. $detail = OrderLogic::getDetail($id);
  93. $detail['shipping'] = OrderLogic::shippingInfo($detail['id']);
  94. return view('', [
  95. 'detail' => $detail
  96. ]);
  97. }
  98. /**
  99. * @notes 导出Excel
  100. * @return \think\response\Json
  101. * @throws \think\db\exception\DataNotFoundException
  102. * @throws \think\db\exception\DbException
  103. * @throws \think\db\exception\ModelNotFoundException
  104. * @author 段誉
  105. * @date 2022/4/24 10:20
  106. */
  107. public function export()
  108. {
  109. $params = $this->request->get();
  110. $result = OrderLogic::statistics($params, true);
  111. if(false === $result) {
  112. return JsonServer::error(OrderLogic::getError() ?: '导出失败');
  113. }
  114. return JsonServer::success('', $result);
  115. }
  116. }