Authored by 郭成尧

gift_card_code-add

... ... @@ -92,6 +92,7 @@ function orderCompute() {
delivery_way: orderInfo('delivery_way'),
payment_type: orderInfo('payment_type'),
coupon_code: orderInfo('coupon_code'),
gift_card_code: orderInfo('gift_card_code'),
use_yoho_coin: use_yoho_coin
};
... ... @@ -165,6 +166,7 @@ function submitOrder() {
payment_id: orderInfo('payment_id'),
payment_type: orderInfo('payment_type'), // 支付方式
coupon_code: orderInfo('coupon_code'),
gift_card_code: orderInfo('gift_card_code'),
use_yoho_coin: orderInfo('use_yoho_coin')
};
... ...
... ... @@ -113,6 +113,7 @@ function orderCompute() {
deliveryId: orderInfo('deliveryId'),
paymentType: orderInfo('paymentType'),
couponCode: orderInfo('couponCode'),
gift_card_code: orderInfo('gift_card_code'),
yohoCoin: yohoCoin,
skuList: isLimitGood() ? orderInfo('skuList') : void 0
};
... ... @@ -196,6 +197,7 @@ function submitOrder() {
paymentTypeId: orderInfo('paymentTypeId'),
paymentType: orderInfo('paymentType'), // 支付方式
couponCode: orderInfo('couponCode'),
gift_card_code: orderInfo('gift_card_code'),
yohoCoin: orderInfo('yohoCoin'),
skuList: isLimitGood() ? orderInfo('skuList') : void 0
};
... ...