ShopOrderSend.php 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\OrderService;
  4. use think\admin\Controller;
  5. /**
  6. * 订单发货管理
  7. * Class ShopOrderSend
  8. * @package app\data\controller
  9. */
  10. class ShopOrderSend extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. private $table = 'ShopOrderSend';
  17. /**
  18. * 订单发货管理
  19. * @auth true
  20. * @menu true
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\DbException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. */
  25. public function index()
  26. {
  27. $this->title = '订单发货管理';
  28. // 发货地址数据
  29. $this->address = sysdata('ordersend');
  30. // 状态数据统计
  31. $this->total = ['t0' => 0, 't1' => 0, 't2' => 0, 'ta' => 0];
  32. $db = $this->app->db->name('ShopOrder')->whereIn('status', [3, 4, 5]);
  33. $query = $this->app->db->name($this->table)->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
  34. foreach ($query->fieldRaw('status,count(1) total')->group('status')->cursor() as $vo) {
  35. $this->total["t{$vo['status']}"] = $vo['total'];
  36. $this->total["ta"] += $vo['total'];
  37. }
  38. // 订单列表查询
  39. $query = $this->_query($this->table)->order('id desc');
  40. $query->dateBetween('address_datetime,send_datetime')->equal('status')->like('send_number#truck_number,order_no');
  41. $query->like('address_phone,address_name,address_province|address_city|address_area|address_content#address_content');
  42. // 用户搜索查询
  43. $db = $this->_query('DataUser')->like('phone#user_phone,nickname#user_nickname')->db();
  44. if ($db->getOptions('where')) $query->whereRaw("uid in {$db->field('id')->buildSql()}");
  45. // 订单搜索查询
  46. $db = $this->_query('ShopOrder')->whereIn('status', [3, 4, 5])->db();
  47. if ($db->getOptions('where')) $query->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
  48. // 列表选项卡状态
  49. if (is_numeric($this->type = trim(input('type', 'ta'), 't'))) {
  50. $query->where(['status' => $this->type]);
  51. }
  52. // 分页排序处理
  53. if (input('output') === 'json') {
  54. $result = $query->page(true, false);
  55. $this->success('获取数据成功', $result);
  56. } else {
  57. $query->page();
  58. }
  59. }
  60. /**
  61. * 订单列表处理
  62. * @param array $data
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @throws \think\db\exception\DbException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. */
  67. protected function _index_page_filter(array &$data)
  68. {
  69. OrderService::instance()->buildItemData($data, false);
  70. $orders = array_unique(array_column($data, 'order_no'));
  71. $orderList = $this->app->db->name('ShopOrder')->whereIn('order_no', $orders)->column('*', 'order_no');
  72. foreach ($data as &$vo) $vo['order'] = $orderList[$vo['order_no']] ?? [];
  73. }
  74. /**
  75. * 修改发货地址
  76. * @auth true
  77. * @throws \think\db\exception\DataNotFoundException
  78. * @throws \think\db\exception\DbException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. */
  81. public function config()
  82. {
  83. if ($this->request->isGet()) {
  84. $this->vo = sysdata('ordersend');
  85. $this->fetch();
  86. } else {
  87. sysdata('ordersend', $this->request->post());
  88. $this->success('发货地址保存成功');
  89. }
  90. }
  91. }