From 355cbc7ca3f871b28cbe13240d9400d5ff1a05a6 Mon Sep 17 00:00:00 2001 From: liu <1873441552@qq.com> Date: Sat, 22 Jun 2024 16:36:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B6=E9=93=B6=E5=8F=B0=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/store/lists/store_order/StoreOrderLists.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/store/lists/store_order/StoreOrderLists.php b/app/store/lists/store_order/StoreOrderLists.php index 77cdfd819..dc37fd612 100644 --- a/app/store/lists/store_order/StoreOrderLists.php +++ b/app/store/lists/store_order/StoreOrderLists.php @@ -50,9 +50,9 @@ class StoreOrderLists extends BaseAdminDataLists implements ListsSearchInterface $is_sashier = $this->request->get('is_sashier'); if ($is_sashier == 1) { //收银台订单 $this->searchWhere[] = ['store_id', '=', $store_id]; - $this->searchWhere[] = ['pay_type', 'in', [17, 9, 13, 18]]; + $this->searchWhere[] = ['pay_type', 'in', [17, 9, 13, 18,19]]; } elseif ($is_sashier == 2) { //小程序订单 - $this->searchWhere[] = ['pay_type', 'in', [7, 3, 18]]; + $this->searchWhere[] = ['pay_type', 'in', [7, 3, 18,19]]; } return StoreOrder::where($this->searchWhere) ->field(['id', 'order_id', 'pay_price', 'pay_time', 'pay_type', 'status', 'paid', 'total_num'])