From 09d157d81a80890ab7d35baad574dfb7d5883868 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 10 Aug 2024 09:18:57 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=99=A8=E4=B8=8E=E5=88=97=E8=A1=A8=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=BC=BA=E9=94=99=E8=AF=AF=E5=A4=84=E7=90=86=E4=B8=8E?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=8C=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../store_order/StoreOrderController.php | 27 +++++++++++-------- .../lists/store_order/StoreOrderLists.php | 5 +++- 2 files changed, 20 insertions(+), 12 deletions(-) diff --git a/app/admin/controller/store_order/StoreOrderController.php b/app/admin/controller/store_order/StoreOrderController.php index c9238c13..eb351028 100644 --- a/app/admin/controller/store_order/StoreOrderController.php +++ b/app/admin/controller/store_order/StoreOrderController.php @@ -10,6 +10,7 @@ use app\admin\logic\store_order\StoreOrderLogic; use app\admin\validate\store_order\StoreOrderValidate; use app\common\enum\PayEnum; use app\common\logic\PayNotifyLogic; +use app\common\model\delivery_service\DeliveryService; use app\common\model\store_order\StoreOrder; @@ -112,12 +113,12 @@ class StoreOrderController extends BaseAdminController public function refund() { $params = (new StoreOrderValidate())->goCheck('refund'); - $detail = StoreOrder::where('order_id',$params['order_id'])->findOrEmpty(); - if(empty($detail)){ + $detail = StoreOrder::where('order_id', $params['order_id'])->findOrEmpty(); + if (empty($detail)) { return $this->fail('无该订单请检查'); } - $res=StoreOrderLogic::refund($detail,$params); - if($res==false){ + $res = StoreOrderLogic::refund($detail, $params); + if ($res == false) { return $this->fail('退款失败'); } return $this->success('退款成功'); @@ -126,14 +127,18 @@ class StoreOrderController extends BaseAdminController /** * 设置配送员 */ - public function set_delivery(){ - $id=$this->request->post('id'); - $delivery_uid=$this->request->post('delivery_uid'); - $res=StoreOrder::where('id',$id)->update(['delivery_uid'=>$delivery_uid]); - if($res){ + public function set_delivery() + { + $id = $this->request->post('id'); + $delivery_uid = $this->request->post('delivery_uid'); + $find = DeliveryService::where('id', $delivery_uid)->find(); + if(empty($find)){ + return $this->fail('配送员不存在'); + } + $res = StoreOrder::where('id', $id)->update(['delivery_uid' => $delivery_uid,'delivery_name'=>$find['nickname'],'delivery_id'=>$find['phone']]); + if ($res) { return $this->success('设置成功'); } return $this->success('设置失败'); - } -} \ No newline at end of file +} diff --git a/app/admin/lists/store_order/StoreOrderLists.php b/app/admin/lists/store_order/StoreOrderLists.php index 90dfddcc..6e4f589d 100644 --- a/app/admin/lists/store_order/StoreOrderLists.php +++ b/app/admin/lists/store_order/StoreOrderLists.php @@ -47,6 +47,9 @@ class StoreOrderLists extends BaseAdminDataLists implements ListsSearchInterface */ public function lists(): array { + if($this->request->get('is_delivery')>=1){ + $this->searchWhere[]=['delivery_uid','>',0]; + } return StoreOrder::with(['staff','store'])->where($this->searchWhere) ->when(!empty($this->request->adminInfo['store_id']), function ($query) { $query->where('store_id', $this->request->adminInfo['store_id']); @@ -59,7 +62,7 @@ class StoreOrderLists extends BaseAdminDataLists implements ListsSearchInterface $query->whereIn('status', $status); } }) - ->field(['id', 'store_id', 'staff_id', 'order_id', 'paid', 'pay_price', 'pay_time', 'pay_type', 'status', 'uid','refund_status','create_time']) + ->field(['id', 'store_id', 'staff_id', 'order_id', 'paid', 'pay_price', 'pay_time', 'pay_type', 'status', 'uid','refund_status','create_time','delivery_name','delivery_id']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select()->each(function ($item) {