...
|
...
|
@@ -171,8 +171,10 @@ function tranformPayment(data, orderInfo, cartType, skuList, orderComputeData) { |
|
|
obj.color = good.color_name;
|
|
|
obj.size = good.size_name;
|
|
|
obj.count = good.buy_number;
|
|
|
obj.price = good.last_price;
|
|
|
obj.price = good.sales_price;
|
|
|
obj.isLimitSkn = good.is_limit_skn === 'Y';
|
|
|
obj.isVipPrice = good.sales_price !== good.last_vip_price && good.discount_tag === 'V';
|
|
|
obj.isStudebt = good.sales_price !== good.last_vip_price && good.discount_tag === 'S';
|
|
|
|
|
|
if (good.good_type === 'gift' && good.is_advance === 'Y') {
|
|
|
obj.gift = true;
|
...
|
...
|
@@ -182,6 +184,10 @@ function tranformPayment(data, orderInfo, cartType, skuList, orderComputeData) { |
|
|
obj.price = good.sale_price;
|
|
|
}
|
|
|
|
|
|
if (good.goods_type === 'gift' || good.goods_type === 'price_gift') {
|
|
|
obj.price = good.last_price;
|
|
|
}
|
|
|
|
|
|
// Total Price
|
|
|
goodsPrice += obj.count * obj.price;
|
|
|
|
...
|
...
|
|