From 0b8c373c7908291752886e8d42621d397c819c76 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Tue, 11 Jun 2024 12:32:39 +0800 Subject: [PATCH] =?UTF-8?q?feat(StoreOrderLists):=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E8=AE=A2=E5=8D=95=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/store/lists/store_order/StoreOrderLists.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/store/lists/store_order/StoreOrderLists.php b/app/store/lists/store_order/StoreOrderLists.php index d5a59a9c0..12f7c7208 100644 --- a/app/store/lists/store_order/StoreOrderLists.php +++ b/app/store/lists/store_order/StoreOrderLists.php @@ -52,7 +52,7 @@ class StoreOrderLists extends BaseAdminDataLists implements ListsSearchInterface if($is_sashier==1){//收银台订单 $this->searchWhere[] = ['pay_type','in',[17,9,13]]; }elseif($is_sashier==2){//小程序订单 - $this->searchWhere[] = ['pay_type','=',7]; + $this->searchWhere[] = ['pay_type','in',[7,3]]; } return StoreOrder::where($this->searchWhere) ->field(['id', 'order_id', 'pay_price', 'pay_time', 'pay_type', 'status','paid'])