|
@@ -407,8 +407,9 @@ class refill_order_manualControl extends SystemControl
|
|
|
|
|
|
public function order_cancel_disposeOp()
|
|
|
{
|
|
|
- $order_id = $_GET['order_id'];
|
|
|
- $condition['refill_order.order_id'] = ['in',$order_id];
|
|
|
+ $order_ids = $_GET['order_ids'];
|
|
|
+ $order_ids = explode(',', $order_ids);
|
|
|
+ $condition['refill_order.order_id'] = ['in',$order_ids];
|
|
|
|
|
|
$order_list = Model('refill_order')->getMerchantOrderList($condition,1000,0,'refill_order.*,vr_order.order_state');
|
|
|
foreach ($order_list as $order) {
|
|
@@ -478,8 +479,9 @@ class refill_order_manualControl extends SystemControl
|
|
|
|
|
|
public function set_next_orderOp()
|
|
|
{
|
|
|
- $order_id = $_GET['order_id'];
|
|
|
- $condition['refill_order.order_id'] = ['in',$order_id];
|
|
|
+ $order_ids = $_GET['order_ids'];
|
|
|
+ $order_ids = explode(',', $order_ids);
|
|
|
+ $condition['refill_order.order_id'] = ['in',$order_ids];
|
|
|
|
|
|
$order_list = Model('refill_order')->getMerchantOrderList($condition,1000,0,'refill_order.*,vr_order.order_state');
|
|
|
foreach ($order_list as $order) {
|