@@ -73,7 +73,7 @@ class Order extends Controller
if ($Checkout->hasError()) {
return $this->renderError($Checkout->getError());
}
- var_dump($params);
+
// 创建订单
if (!$Checkout->createOrder($orderInfo)) {
return $this->renderError($Checkout->getError() ?: '订单创建失败');
@@ -696,7 +696,6 @@ class Checkout
{
// 当前订单是否存在和使用积分抵扣
$isExistPointsDeduction = $this->isExistPointsDeduction($order);
- var_dump($order);
// 订单数据
$data = [
'user_id' => $this->user['user_id'],