...
|
...
|
@@ -975,6 +975,17 @@ class HomeController extends AbstractAction |
|
|
$this->error();
|
|
|
}
|
|
|
|
|
|
// 如果新版开启,则跳到新版支付页
|
|
|
if ($this->getCacheBy('zookeeper:/wap/pay/newPay') === 'true') {
|
|
|
header('Location: ' . Helpers::url('/home/orders/paynew',
|
|
|
array(
|
|
|
'order_code' => $orderCode,
|
|
|
'refer' => $this->server('HTTP_REFERER', SITE_MAIN)
|
|
|
))
|
|
|
);
|
|
|
exit();
|
|
|
}
|
|
|
|
|
|
/* 判断订单信息是否存在 */
|
|
|
$orderDetail = OrderModel::orderDetail($orderCode, $this->_uid, $this->_usession);
|
|
|
if (empty($orderDetail)) {
|
...
|
...
|
|