feat(StoreOrderLists): 修改收银台订单支付类型查询条件

This commit is contained in:
mkm 2024-07-02 15:47:13 +08:00
parent c78b12ec2d
commit 60300206f4

View File

@ -50,7 +50,7 @@ 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,19]];
// $this->searchWhere[] = ['pay_type', 'in', [17,3, 9, 13, 18,19]];
} elseif ($is_sashier == 2) { //小程序订单
$this->searchWhere[] = ['pay_type', 'in', [7, 3, 18,19]];
}