1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- namespace app\data\controller;
- use app\data\service\OrderService;
- use think\admin\Controller;
- /**
- * 订单发货管理
- * Class ShopOrderSend
- * @package app\data\controller
- */
- class ShopOrderSend extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- private $table = 'ShopOrderSend';
- /**
- * 订单发货管理
- * @auth true
- * @menu true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $this->title = '订单发货管理';
- // 发货地址数据
- $this->address = sysdata('ordersend');
- // 状态数据统计
- $this->total = ['t0' => 0, 't1' => 0, 't2' => 0, 'ta' => 0];
- $db = $this->app->db->name('ShopOrder')->whereIn('status', [3, 4, 5]);
- $query = $this->app->db->name($this->table)->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
- foreach ($query->fieldRaw('status,count(1) total')->group('status')->cursor() as $vo) {
- $this->total["t{$vo['status']}"] = $vo['total'];
- $this->total["ta"] += $vo['total'];
- }
- // 订单列表查询
- $query = $this->_query($this->table)->order('id desc');
- $query->dateBetween('address_datetime,send_datetime')->equal('status')->like('send_number#truck_number,order_no');
- $query->like('address_phone,address_name,address_province|address_city|address_area|address_content#address_content');
- // 用户搜索查询
- $db = $this->_query('DataUser')->like('phone#user_phone,nickname#user_nickname')->db();
- if ($db->getOptions('where')) $query->whereRaw("uid in {$db->field('id')->buildSql()}");
- // 订单搜索查询
- $db = $this->_query('ShopOrder')->whereIn('status', [3, 4, 5])->db();
- if ($db->getOptions('where')) $query->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
- // 列表选项卡状态
- if (is_numeric($this->type = trim(input('type', 'ta'), 't'))) {
- $query->where(['status' => $this->type]);
- }
- // 分页排序处理
- if (input('output') === 'json') {
- $result = $query->page(true, false);
- $this->success('获取数据成功', $result);
- } else {
- $query->page();
- }
- }
- /**
- * 订单列表处理
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- protected function _index_page_filter(array &$data)
- {
- OrderService::instance()->buildItemData($data, false);
- $orders = array_unique(array_column($data, 'order_no'));
- $orderList = $this->app->db->name('ShopOrder')->whereIn('order_no', $orders)->column('*', 'order_no');
- foreach ($data as &$vo) $vo['order'] = $orderList[$vo['order_no']] ?? [];
- }
- /**
- * 修改发货地址
- * @auth true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function config()
- {
- if ($this->request->isGet()) {
- $this->vo = sysdata('ordersend');
- $this->fetch();
- } else {
- sysdata('ordersend', $this->request->post());
- $this->success('发货地址保存成功');
- }
- }
- }
|