ShopOrder.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\OrderService;
  4. use app\data\service\PaymentService;
  5. use app\data\service\TruckService;
  6. use app\data\service\UserService;
  7. use think\admin\Controller;
  8. use think\exception\HttpResponseException;
  9. /**
  10. * 订单数据管理
  11. * Class ShopOrder
  12. * @package app\data\controller
  13. */
  14. class ShopOrder extends Controller
  15. {
  16. /**
  17. * 绑定数据表
  18. * @var string
  19. */
  20. private $table = 'ShopOrder';
  21. /**
  22. * 支付方式
  23. * @var array
  24. */
  25. protected $payments = [];
  26. protected function initialize()
  27. {
  28. parent::initialize();
  29. $this->payments = PaymentService::types();
  30. }
  31. /**
  32. * 订单数据管理
  33. * @auth true
  34. * @menu true
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. */
  39. public function index()
  40. {
  41. $this->title = '订单数据管理';
  42. // 状态数据统计
  43. $this->total = ['t0' => 0, 't1' => 0, 't2' => 0, 't3' => 0, 't4' => 0, 't5' => 0, 'ta' => 0];
  44. $this->app->db->name($this->table)->fieldRaw('status,count(1) total')->group('status')->select()->map(function ($vo) {
  45. $this->total["t{$vo['status']}"] = $vo['total'];
  46. $this->total["ta"] += $vo['total'];
  47. });
  48. // 订单列表查询
  49. $query = $this->_query($this->table);
  50. $query->equal('status,payment_type,payment_status');
  51. $query->dateBetween('create_at,payment_datetime,cancel_datetime,truck_datetime,truck_send_datetime');
  52. $query->like('order_no,truck_name,truck_phone,truck_province|truck_area|truck_address#address,truck_send_no,truck_send_name');
  53. // 发货信息搜索
  54. $db = $this->_query('ShopOrderSend')->like('address_name#truck_address_name,address_phone#truck_address_phone,address_province|address_city|address_area|address_content#truck_address_content')->db();
  55. if ($db->getOptions('where')) $query->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
  56. // 用户搜索查询
  57. $db = $this->_query('DataUser')->like('phone#user_phone,nickname#user_nickname')->db();
  58. if ($db->getOptions('where')) $query->whereRaw("uid in {$db->field('id')->buildSql()}");
  59. // 推荐人搜索查询
  60. $db = $this->_query('DataUser')->like('phone#from_phone,nickname#from_nickname')->db();
  61. if ($db->getOptions('where')) $query->whereRaw("from in {$db->field('id')->buildSql()}");
  62. // 列表选项卡
  63. if (is_numeric($this->type = trim(input('type', 'ta'), 't'))) {
  64. $query->where(['status' => $this->type]);
  65. }
  66. // 分页排序处理
  67. $query->where(['deleted' => 0])->order('id desc');
  68. if (input('output') === 'json') {
  69. $this->success('获取数据成功', $query->page(true, false));
  70. } else {
  71. $query->page();
  72. }
  73. }
  74. /**
  75. * 订单列表处理
  76. * @param array $data
  77. * @throws \think\db\exception\DataNotFoundException
  78. * @throws \think\db\exception\DbException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. */
  81. protected function _index_page_filter(array &$data)
  82. {
  83. UserService::instance()->buildByUid($data);
  84. UserService::instance()->buildByUid($data, 'from', 'fromer');
  85. OrderService::instance()->buildItemData($data);
  86. foreach ($data as &$vo) {
  87. $vo['payment_name'] = PaymentService::name($vo['payment_type']);
  88. }
  89. }
  90. /**
  91. * 修改快递管理
  92. * @auth true
  93. * @throws \think\db\exception\DataNotFoundException
  94. * @throws \think\db\exception\DbException
  95. * @throws \think\db\exception\ModelNotFoundException
  96. */
  97. public function truck()
  98. {
  99. if ($this->request->isGet()) {
  100. $map = ['deleted' => 0, 'status' => 1];
  101. $query = $this->app->db->name('ShopTruckCompany')->where($map);
  102. $this->items = $query->order('sort desc,id desc')->select()->toArray();
  103. }
  104. $this->_form('ShopOrderSend', '', 'order_no');
  105. }
  106. /**
  107. * 快递表单处理
  108. * @param array $vo
  109. * @throws \think\db\exception\DataNotFoundException
  110. * @throws \think\db\exception\DbException
  111. * @throws \think\db\exception\ModelNotFoundException
  112. */
  113. protected function _truck_form_filter(array &$vo)
  114. {
  115. if ($this->request->isPost()) {
  116. $map = ['order_no' => $vo['order_no']];
  117. $order = $this->app->db->name('ShopOrder')->where($map)->find();
  118. if (empty($order)) $this->error('订单查询异常,请稍候再试!');
  119. // 配送快递公司填写
  120. $map = ['code_1|code_2|code_3' => $vo['company_code']];
  121. $company = $this->app->db->name('ShopTruckCompany')->where($map)->find();
  122. if (empty($company)) $this->error('配送快递公司异常,请重新选择快递公司!');
  123. $vo['status'] = 2;
  124. $vo['company_name'] = $company['name'];
  125. $vo['send_datetime'] = $vo['send_datetime'] ?? date('Y-m-d H:i:s');
  126. // 更新订单发货状态
  127. if ($order['status'] === 3) {
  128. $map = ['order_no' => $vo['order_no']];
  129. $this->app->db->name('ShopOrder')->where($map)->update(['status' => 4]);
  130. }
  131. }
  132. }
  133. /**
  134. * 快递追踪查询
  135. * @auth true
  136. */
  137. public function truckQuery()
  138. {
  139. try {
  140. $data = $this->_vali([
  141. 'code.require' => '快递编号不能为空!',
  142. 'number.require' => '配送单号不能为空!',
  143. ]);
  144. $this->result = TruckService::instance()->query($data['code'], $data['number']);
  145. if (empty($this->result['code'])) $this->error($this->result['info']);
  146. $this->fetch('truck_query');
  147. } catch (HttpResponseException $exception) {
  148. throw $exception;
  149. } catch (\Exception $exception) {
  150. $this->error($exception->getMessage());
  151. }
  152. }
  153. /**
  154. * 清理订单数据
  155. * @auth true
  156. */
  157. public function clean()
  158. {
  159. $this->_queue('定时清理无效订单数据', "xdata:OrderClear", 0, [], 0, 60);
  160. }
  161. /**
  162. * 取消未支付的订单
  163. * @auth true
  164. * @throws \think\db\exception\DataNotFoundException
  165. * @throws \think\db\exception\DbException
  166. * @throws \think\db\exception\ModelNotFoundException
  167. */
  168. public function cancel()
  169. {
  170. $map = $this->_vali([
  171. 'deleted.value' => 0,
  172. 'order_no.require' => '订单编号不能为空!',
  173. ]);
  174. $order = $this->app->db->name($this->table)->where($map)->find();
  175. if (empty($order)) $this->error('订单查询异常');
  176. if (!in_array($order['status'], [1, 2])) $this->error('订单不能取消!');
  177. try {
  178. $result = $this->app->db->name($this->table)->where($map)->update([
  179. 'status' => 0,
  180. 'cancel_status' => 1,
  181. 'cancel_remark' => '后台未支付的取消',
  182. 'cancel_datetime' => date('Y-m-d H:i:s'),
  183. ]);
  184. if ($result !== false) {
  185. OrderService::instance()->syncStock($order['order_no']);
  186. $this->success('取消未支付的订单成功!');
  187. } else {
  188. $this->error('取消支付的订单失败!');
  189. }
  190. } catch (HttpResponseException $exception) {
  191. throw $exception;
  192. } catch (\Exception $exception) {
  193. $this->error($exception->getMessage());
  194. }
  195. }
  196. }