|
@@ -58,11 +58,11 @@ class refill_order_manualControl extends SystemControl
|
|
|
|
|
|
if ($type == 'success') {
|
|
if ($type == 'success') {
|
|
$logic_vr_order->changeOrderStateSuccess($order_id);
|
|
$logic_vr_order->changeOrderStateSuccess($order_id);
|
|
- $mod_refill->edit(['order_id' => $order_id], ['notify_state' =>1, 'notify_time' => time()]);
|
|
|
|
|
|
+ $mod_refill->edit($order_id, ['notify_state' =>1, 'notify_time' => time()]);
|
|
QueueClient::push("NotifyMerchantComplete", ['order_id' => $order_id, 'manual' => true]);
|
|
QueueClient::push("NotifyMerchantComplete", ['order_id' => $order_id, 'manual' => true]);
|
|
} elseif ($type == 'cancel') {
|
|
} elseif ($type == 'cancel') {
|
|
$logic_vr_order->changeOrderStateCancel($order_info, '', "充值失败");
|
|
$logic_vr_order->changeOrderStateCancel($order_info, '', "充值失败");
|
|
- $mod_refill->edit(['order_id' => $order_id], ['notify_state' =>1, 'notify_time' => time()]);
|
|
|
|
|
|
+ $mod_refill->edit($order_id, ['notify_state' =>1, 'notify_time' => time()]);
|
|
QueueClient::push("NotifyMerchantComplete", ['order_id' => $order_id, 'manual' => true]);
|
|
QueueClient::push("NotifyMerchantComplete", ['order_id' => $order_id, 'manual' => true]);
|
|
} else {
|
|
} else {
|
|
showMessage('手动操作类型错误', 'index.php?act=refill_order&op=index');
|
|
showMessage('手动操作类型错误', 'index.php?act=refill_order&op=index');
|