Commit ae40a430 by shuhu.hou@freemud.cn

Merge branch 'feature/20191119_套餐特价'

parents d95fdfe1 b922552e
...@@ -532,7 +532,7 @@ public class CouponServiceImpl implements CouponService { ...@@ -532,7 +532,7 @@ public class CouponServiceImpl implements CouponService {
// 数量 // 数量
product.setQuantity(cartGood.getQty()); product.setQuantity(cartGood.getQty());
productList.add(product); productList.add(product);
totalAmount = totalAmount + cartGood.getOriginalPrice() * cartGood.getQty(); totalAmount = totalAmount +product.getAmount() * cartGood.getQty();
} }
return totalAmount; return totalAmount;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment