|
|
@@ -788,6 +788,11 @@ class OrderController extends BaseController
|
|
|
if (isset($get['customId']) && !empty($get['customId'])) {
|
|
|
$where['customId'] = $get['customId'];
|
|
|
}
|
|
|
+ if (isset($get['ids']) && !empty($get['ids'])) {
|
|
|
+ $stringIds = $get['ids'];
|
|
|
+ $newIds = explode(',', $stringIds);
|
|
|
+ $where['customId'] = ['in', $newIds];
|
|
|
+ }
|
|
|
$respond = OrderClass::getOrderList($where);
|
|
|
$respond['shop'] = $this->shop;
|
|
|
$respond['shopExt'] = $this->shopExt;
|