diff --git a/app/controller/merchant/store/order/OrderOther.php b/app/controller/merchant/store/order/OrderOther.php index d943d09a..c2f33406 100644 --- a/app/controller/merchant/store/order/OrderOther.php +++ b/app/controller/merchant/store/order/OrderOther.php @@ -58,7 +58,7 @@ class OrderOther extends BaseController [$page, $limit] = $this->getPage(); $where = $this->request->params(['status', 'date', 'order_sn', 'username', 'order_type', 'keywords', 'order_id', 'activity_type', 'group_order_sn', 'store_name']); $where['mer_id'] = $this->request->merId(); - $where['paid']=[1,2]; + $where['paid']=1; return app('json')->success($this->repository->merchantGetList($where, $page, $limit)); }