|
@@ -104,8 +104,7 @@ public class ShoppingCartServiceImpl implements ShoppingCartService {
|
|
|
// 活动价
|
|
|
if (activity.getMode() == 1) {
|
|
|
product.setRetailPrice(activity.getTouchPrice());
|
|
|
- BigDecimal reduction = MathUtil.sub(product.getPrice(), activity.getTouchPrice());
|
|
|
- product.setFullReduction(MathUtil.mul(reduction, product.getProductCount()));
|
|
|
+ product.setFullReduction(BigDecimal.ZERO);
|
|
|
} else {
|
|
|
BigDecimal totalPrice = MathUtil.mul(product.getProductCount(), product.getPrice());
|
|
|
if (addTaxFlag) {
|