@@ -107,6 +107,11 @@ public class ShoppingCartServiceImpl implements ShoppingCartService {
}
product.setLadderList(ladderList);
+ } else {
+ if (addTaxFlag) {
+ BigDecimal addedValueTax = MathUtil.div(MathUtil.mul(product.getPrice(), product.getClubTaxPoint()), BigDecimal.valueOf(100));
+ product.setPrice(MathUtil.add(addedValueTax, product.getPrice()));
+ }