...
|
...
|
@@ -55,7 +55,7 @@ function isLimitGood() { |
|
|
|
|
|
// 来自购物车的链接默认不使用优惠券
|
|
|
if (cookie.get('ensure_from') === 'cart') {
|
|
|
orderInfo('couponCode', null);
|
|
|
orderInfo('coupon_code', null);
|
|
|
orderInfo('usable_usual_code', null);
|
|
|
orderInfo('usable_free_code', null);
|
|
|
cookie.removeSpecific('ensure_from', actCkOpthn);
|
...
|
...
|
@@ -121,7 +121,7 @@ function orderCompute() { |
|
|
cartType: orderInfo('cartType') || 'ordinary',
|
|
|
deliveryId: orderInfo('deliveryId'),
|
|
|
paymentType: orderInfo('paymentType'),
|
|
|
couponCode: orderInfo('couponCode'),
|
|
|
couponCode: orderInfo('coupon_code'),
|
|
|
gift_card_code: orderInfo('gift_card_code'),
|
|
|
yohoCoin: yohoCoin,
|
|
|
skuList: isLimitGood() ? orderInfo('skuList') : void 0
|
...
|
...
|
@@ -213,7 +213,7 @@ function submitOrder(verifyCode) { |
|
|
isPrintPrice: orderInfo('isPrintPrice'),
|
|
|
paymentTypeId: orderInfo('paymentTypeId'),
|
|
|
paymentType: orderInfo('paymentType'), // 支付方式
|
|
|
couponCode: orderInfo('couponCode'),
|
|
|
couponCode: orderInfo('coupon_code'),
|
|
|
gift_card_code: orderInfo('gift_card_code'),
|
|
|
verifyCode: verifyCode || null,
|
|
|
yohoCoin: orderInfo('yohoCoin'),
|
...
|
...
|
|