mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
【功能优化】优化限时满减的金额数据库保存为分
This commit is contained in:
parent
86b02b698a
commit
cb7634ecb4
@ -123,7 +123,7 @@ public class TradeDiscountActivityPriceCalculator implements TradePriceCalculato
|
|||||||
TradePriceCalculateRespBO.OrderItem orderItem) {
|
TradePriceCalculateRespBO.OrderItem orderItem) {
|
||||||
Integer price = orderItem.getPayPrice();
|
Integer price = orderItem.getPayPrice();
|
||||||
if (PromotionDiscountTypeEnum.PRICE.getType().equals(discountProduct.getDiscountType())) { // 减价
|
if (PromotionDiscountTypeEnum.PRICE.getType().equals(discountProduct.getDiscountType())) { // 减价
|
||||||
price -= discountProduct.getDiscountPrice() * 100 * orderItem.getCount();
|
price -= discountProduct.getDiscountPrice() * orderItem.getCount();
|
||||||
} else if (PromotionDiscountTypeEnum.PERCENT.getType().equals(discountProduct.getDiscountType())) { // 打折
|
} else if (PromotionDiscountTypeEnum.PERCENT.getType().equals(discountProduct.getDiscountType())) { // 打折
|
||||||
price = price * discountProduct.getDiscountPercent() / 100;
|
price = price * discountProduct.getDiscountPercent() / 100;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user