Send.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. namespace app\data\controller\shop;
  3. use app\data\service\OrderService;
  4. use think\admin\Controller;
  5. /**
  6. * 订单发货管理
  7. * Class Send
  8. * @package app\data\controller\shop
  9. */
  10. class Send 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', [4, 5, 6])->where(['truck_type' => 1]);
  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);
  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->app->db->name('ShopOrder')->whereIn('status', [4, 5, 6])->where(['truck_type' => 1]);
  47. $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. $query->order('id desc')->page();
  54. }
  55. /**
  56. * 订单列表处理
  57. * @param array $data
  58. * @throws \think\db\exception\DataNotFoundException
  59. * @throws \think\db\exception\DbException
  60. * @throws \think\db\exception\ModelNotFoundException
  61. */
  62. protected function _index_page_filter(array &$data)
  63. {
  64. OrderService::instance()->buildData($data, false);
  65. $orders = array_unique(array_column($data, 'order_no'));
  66. $orderList = $this->app->db->name('ShopOrder')->whereIn('order_no', $orders)->column('*', 'order_no');
  67. foreach ($data as &$vo) $vo['order'] = $orderList[$vo['order_no']] ?? [];
  68. }
  69. /**
  70. * 修改发货地址
  71. * @auth true
  72. * @throws \think\db\exception\DataNotFoundException
  73. * @throws \think\db\exception\DbException
  74. * @throws \think\db\exception\ModelNotFoundException
  75. */
  76. public function config()
  77. {
  78. if ($this->request->isGet()) {
  79. $this->vo = sysdata('ordersend');
  80. $this->fetch();
  81. } else {
  82. sysdata('ordersend', $this->request->post());
  83. $this->success('发货地址保存成功');
  84. }
  85. }
  86. }