diff --git a/app/data/controller/ShopOrder.php b/app/data/controller/ShopOrder.php index 0b6fd3cb2..8150850b7 100644 --- a/app/data/controller/ShopOrder.php +++ b/app/data/controller/ShopOrder.php @@ -31,48 +31,36 @@ class ShopOrder extends Controller public function index() { $this->title = '订单数据管理'; - // 各状态数据统计 - $this->totals = [0 => 0, 1 => 0, 2 => 0, 3 => 0, 4 => 0, 5 => 0, 'all' => 0]; + // 状态数据统计 + $this->total = ['t0' => 0, 't1' => 0, 't2' => 0, 't3' => 0, 't4' => 0, 't5' => 0, 'ta' => 0]; $this->app->db->name($this->table)->fieldRaw('status,count(1) total')->group('status')->select()->map(function ($vo) { - $this->totals[$vo['status']] = $vo['total']; - $this->totals["all"] += $vo['total']; + $this->total["t{$vo['status']}"] = $vo['total']; + $this->total["ta"] += $vo['total']; }); // 订单列表查询 - $query = $this->_query($this->table)->dateBetween('create_at,payment_datetime')->equal('status,payment_status'); - $query->like('order_no,express_send_no,express_name,express_phone,express_province,express_city,express_area,express_address'); - $query->dateBetween('create_at,pay_datetime')->equal('status,pay_state'); + $query = $this->_query($this->table); + $query->equal('status,payment_type,payment_status'); + $query->dateBetween('create_at,payment_datetime,cancel_datetime,truck_datetime,truck_send_datetime'); + $query->like('order_no,truck_name,truck_phone,truck_province|truck_area|truck_address#address,truck_send_no,truck_send_name'); // 会员搜索查询 $db = $this->_query('DataMember')->like('phone#member_phone,nickname#member_nickname')->db(); if ($db->getOptions('where')) $query->whereRaw("mid in {$db->fieldRaw('id')->buildSql()}"); // 推荐人搜索查询 - $db = $this->_query('DataMember')->like('phone#agent_phone,nickname#agent_nickname')->db(); + $db = $this->_query('DataMember')->like('phone#from_phone,nickname#from_nickname')->db(); if ($db->getOptions('where')) $query->whereRaw("from in {$db->fieldRaw('id')->buildSql()}"); // 列表选项卡 - if (is_numeric($this->type = input('type', 'all'))) { - $query->equal('status#type'); + if (is_numeric($this->type = trim(input('type', 'ta'), 't'))) { + $query->where(['status' => $this->type]); } // 分页排序处理 - if (defined('_ACTION_') && _ACTION_ === 'export') { - return $query; + if (input('output') === 'json') { + $result = $query->order('id desc')->page(true, false); + $this->success('获取数据列表成功', $result); } else { $query->order('id desc')->page(); } } - /** - * 导出订单数据 - * @auth true - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException - */ - public function export() - { - define('_ACTION_', 'export'); - $options = ['serialize' => serialize($this->index()->db()->getOptions())]; - $this->_queue('导出订单数据', OrderQueue::class, 0, $options, 0); - } - /** * 订单列表处理 * @param array $data @@ -82,15 +70,19 @@ class ShopOrder extends Controller */ protected function _index_page_filter(array &$data) { - $mids = array_unique(array_merge(array_column($data, 'mid'), array_column($data, 'from_mid'))); - $members = $this->app->db->name('DataMember')->whereIn('id', $mids)->column('*', 'id'); - $orderNos = array_unique(array_column($data, 'order_no')); - $goodsList = $this->app->db->name('ShopOrderItem')->whereIn('order_no', $orderNos)->select()->toArray(); + $mids = array_unique(array_merge(array_column($data, 'mid'), array_column($data, 'from'))); + $mems = $this->app->db->name('DataMember')->whereIn('id', $mids)->column('*', 'id'); + $query = $this->app->db->name('ShopOrderItem')->where(['status' => 1, 'deleted' => 0]); + $items = $query->whereIn('order_no', array_unique(array_column($data, 'order_no')))->select()->toArray(); foreach ($data as &$vo) { - [$vo['member'], $vo['from_member'], $vo['list']] = [[], [], []]; - $vo['member'] = isset($members[$vo['mid']]) ? $members[$vo['mid']] : []; - $vo['from_member'] = isset($members[$vo['from_mid']]) ? $members[$vo['from_mid']] : []; - foreach ($goodsList as $goods) if ($goods['order_no'] === $vo['order_no']) $vo['list'][] = $goods; + $vo['items'] = []; + $vo['member'] = $mems[$vo['mid']] ?? []; + $vo['fromer'] = $mems[$vo['from']] ?? []; + foreach ($items as $item) { + if ($vo['order_no'] === $item['order_no']) { + $vo['items'][] = $item; + } + } } } @@ -101,35 +93,14 @@ class ShopOrder extends Controller * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ - public function express() + public function truck() { if ($this->request->isGet()) { - $where = ['is_deleted' => '0', 'status' => '1']; - $query = $this->app->db->name('ShopExpressCompany')->where($where); - $this->expressList = $query->order('sort desc,id desc')->select()->toArray(); - } - $this->_form($this->table); - } - - /** - * 快递追踪查询 - * @auth true - */ - public function expressQuery() - { - try { - $data = $this->_vali([ - 'code.require' => '快递公司不能为空!', - 'number.require' => '配送单号不能为空!', - ]); - $this->result = OpenCuciService::instance()->track($data['code'], $data['number']); - if (empty($this->result['code'])) $this->error($this->result['info']); - $this->fetch(); - } catch (HttpResponseException $exception) { - throw $exception; - } catch (\Exception $exception) { - $this->error($exception->getMessage()); + $map = ['deleted' => 0, 'status' => 1]; + $query = $this->app->db->name('ShopTruckCompany')->where($map); + $this->items = $query->order('sort desc,id desc')->select()->toArray(); } + $this->_form($this->table, '', 'order_no'); } /** @@ -139,18 +110,40 @@ class ShopOrder extends Controller * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ - protected function _express_form_filter(&$vo) + protected function _truck_form_filter(&$vo) { if ($this->request->isPost()) { - $order = $this->app->db->name($this->table)->where(['id' => $vo['id']])->find(); + $map = ['order_no' => $vo['order_no']]; + $order = $this->app->db->name($this->table)->where($map)->find(); if (empty($order)) $this->error('订单查询异常,请稍候再试!'); - $map = ['code_1|code_2|code_3' => $vo['express_company_code']]; - $express = $this->app->db->name('ShopExpressCompany')->where($map)->find(); - if (empty($express)) $this->error('配送快递公司异常,请重新选择快递公司!'); - $vo['express_company_title'] = $express['title']; - $vo['express_send_at'] = empty($order['express_send_at']) ? date('Y-m-d H:i:s') : $order['express_send_at']; - $vo['express_state'] = '1'; - $vo['status'] = '4'; + // 配送快递公司信息填写 + $map = ['code_1|code_2|code_3' => $vo['truck_send_code']]; + $company = $this->app->db->name('ShopTruckCompany')->where($map)->find(); + if (empty($company)) $this->error('配送快递公司异常,请重新选择快递公司!'); + $vo['status'] = 4; + $vo['truck_send_name'] = $company['name']; + $vo['truck_send_datetime'] = $order['truck_send_datetime'] ?: date('Y-m-d H:i:s'); + } + } + + /** + * 快递追踪查询 + * @auth true + */ + public function truckQuery() + { + try { + $data = $this->_vali([ + 'code.require' => '快递公司不能为空!', + 'number.require' => '配送单号不能为空!', + ]); + $this->result = OrderService::instance()->tracktruck($data['code'], $data['number']); + if (empty($this->result['code'])) $this->error($this->result['info']); + $this->fetch(); + } catch (HttpResponseException $exception) { + throw $exception; + } catch (\Exception $exception) { + $this->error($exception->getMessage()); } } @@ -168,16 +161,16 @@ class ShopOrder extends Controller if (empty($order)) $this->error('订单查询异常'); if (intval($order['status']) !== 3) $this->error('该订单不能发货!'); [$rules, $data] = [[], ['type' => 3, 'refund_content' => '后台操作取消订单并申请退款', 'refund_images' => '']]; - foreach ($this->app->db->name("{$this->table}List")->where($map)->select()->toArray() as $item) { - $rules[] = ['goods_id' => $item['goods_id'], 'goods_spec' => $item['goods_spec'], 'refund_number' => $item['number_goods']]; + foreach ($this->app->db->name("{$this->table}Item")->where($map)->select()->toArray() as $item) { + $rules[] = ['goods_code' => $item['goods_code'], 'goods_spec' => $item['goods_spec'], 'refund_number' => $item['stock_sales']]; } try { if (OrderService::instance()->refund($order['order_no'], $data, $rules)) { $this->app->db->name($this->table)->where($map)->update([ - 'status' => 0, - 'cancel_state' => 1, - 'cancel_datetime' => date('Y-m-d H:i:s'), - 'cancel_description' => '后台操作取消并创建退款申请', + 'status' => 0, + 'cancel_status' => 1, + 'cancel_remark' => '后台取消并创建退款申请', + 'cancel_datetime' => date('Y-m-d H:i:s'), ]); $this->success('取消订单并创建退款申请成功!'); } diff --git a/app/data/controller/ShopOrderSend.php b/app/data/controller/ShopOrderSend.php index 5df23f5c7..c6fefd521 100644 --- a/app/data/controller/ShopOrderSend.php +++ b/app/data/controller/ShopOrderSend.php @@ -15,7 +15,7 @@ class ShopOrderSend extends Controller * 绑定数据表 * @var string */ - private $table = 'ShopOrderSend'; + private $table = 'ShopOrder'; /** * 订单发货管理 diff --git a/app/data/service/OrderService.php b/app/data/service/OrderService.php index a843578be..291bd788c 100644 --- a/app/data/service/OrderService.php +++ b/app/data/service/OrderService.php @@ -4,6 +4,7 @@ namespace app\data\service; use think\admin\extend\CodeExtend; use think\admin\Service; +use think\admin\service\InterfaceService; /** * 订单数据服务 @@ -49,62 +50,19 @@ class OrderService extends Service } /** - * 创建申请售后单 - * @param string $orderNo - * @param array $data [type,refund_content,refund_images] - * @param array $rules [[goods_id,goods_spec,refund_number]] - * @return boolean - * @throws \think\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException + * 楚才开放平台快递查询 + * @param string $code 快递公司编号 + * @param string $number 快递配送单号 + * @return array + * @throws \think\admin\Exception */ - public function refund(string $orderNo, array $data, array $rules = []) + public function trackExpress($code, $number) { - [$all, $map] = [[], ['order_no' => $orderNo]]; - $order = $this->app->db->name('StoreOrder')->where($map)->find(); - $olist = $this->app->db->name('StoreOrderList')->where($map)->select()->toArray(); - $rlist = $this->app->db->name('StoreOrderRefund')->where($map)->whereIn('refund_status', [1, 2, 3])->select()->toArray(); - $discountRate = $order['pay_price'] / $order['price_discount']; - if (count($olist) > 0) foreach ($olist as &$vo) { - $vo['discount_unit_amount'] = $vo['discount_amount'] / $vo['number_goods'] * $discountRate; - if (count($rlist) > 0) foreach ($rlist as $rule) { - if ($vo['goods_id'] === $rule['goods_id'] && $vo['goods_spec'] === $rule['goods_spec']) { - $vo['number_goods'] -= $rule['refund_number']; - } - } - } - // dump($olist); - $data['group_no'] = CodeExtend::uniqidDate(18, "G"); - if (count($olist) > 0 && count($rules) > 0) foreach ($olist as &$vo) { - foreach ($rules as $rule) if ($vo['goods_id'] === $rule['goods_id'] && $vo['goods_spec'] === $rule['goods_spec']) { - if ($vo['number_goods'] - $rule['refund_number'] < 0) { - throw new \think\Exception("订单商品数量异常!"); - } - $data['mid'] = $vo['mid']; - $data['order_no'] = $orderNo; - $data['goods_id'] = $vo['goods_id']; - $data['goods_sku'] = $vo['goods_sku']; - $data['goods_title'] = $vo['goods_title']; - $data['goods_logo'] = $vo['goods_logo']; - $data['goods_spec'] = $vo['goods_spec']; - $data['number_goods'] = $vo['number_goods']; - $data['goods_price_total'] = $vo['goods_price_total']; - $data['goods_price_market'] = $vo['goods_price_market']; - $data['refund_no'] = CodeExtend::uniqidDate(18, 'R'); - $data['refund_rate'] = $discountRate; - $data['refund_number'] = $rule['refund_number']; - $data['refund_amount'] = $rule['refund_number'] * $vo['discount_unit_amount']; - $data['refund_status'] = 1; - $data['discount_amount'] = $vo['discount_amount']; - // 支付金额处理 - if ($order['pay_price'] < $data['refund_amount']) { - $data['refund_amount'] = $order['pay_price']; - } - $all[] = $data; - } - } - if (empty($all)) throw new \think\Exception("没有需要处理的商品!"); - return $this->app->db->name('StoreOrderRefund')->strict(false)->insertAll($all) !== false; + $service = InterfaceService::instance(); + // 测试的账号及密钥,随时可能会变更,请联系客服获取自己的账号和密钥 + $service->setAuth('6998081316132228', '193fc1d9a2aac78475bc8dbeb9a5feb1'); + return $service->doRequest('https://open.cuci.cc/user/api.auth.express/query', [ + 'type' => 'free', 'express' => $code, 'number' => $number, + ]); } } \ No newline at end of file diff --git a/app/data/view/shop_order/express.html b/app/data/view/shop_order/express.html index 9c9304271..8e7d4c5c5 100644 --- a/app/data/view/shop_order/express.html +++ b/app/data/view/shop_order/express.html @@ -6,16 +6,16 @@