Commit d10bdb52 by ping.wu

商品券支持套餐

parent 12152896
...@@ -852,6 +852,7 @@ public class CouponServiceImpl implements CouponService { ...@@ -852,6 +852,7 @@ public class CouponServiceImpl implements CouponService {
comboProductTypeList.add(validateSkuProductType); comboProductTypeList.add(validateSkuProductType);
} }
productType.setComboProductTypeList(comboProductTypeList); productType.setComboProductTypeList(comboProductTypeList);
productType.setIsCouponMarkUpSetMeal(1);
} }
productType.setMemberDiscount(null); productType.setMemberDiscount(null);
productType.setPrice(product.getFinalPrice().intValue()); productType.setPrice(product.getFinalPrice().intValue());
......
...@@ -1491,7 +1491,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1491,7 +1491,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
if (StringUtils.isBlank(couponCode)) { if (StringUtils.isBlank(couponCode)) {
this.addCalculationDiscountGoods(calculationDiscountGoodsList, cartGoods); this.addCalculationDiscountGoods(calculationDiscountGoodsList, cartGoods);
} else { } else {
CheckSpqInfoRequestDto checkSpqInfoRequestDto = new CheckSpqInfoRequestDto(partnerId, storeId, couponCode, menuType,null); CheckSpqInfoRequestDto checkSpqInfoRequestDto = new CheckSpqInfoRequestDto(partnerId, storeId, couponCode, menuType,cartGoods);
CheckSpqInfoResponseDto checkSpqInfoResponseDto = null; CheckSpqInfoResponseDto checkSpqInfoResponseDto = null;
// fisherman 删除商品券导致 购物车显示商品名称 为换购券 券名称 // fisherman 删除商品券导致 购物车显示商品名称 为换购券 券名称
boolean viewProductName = false; boolean viewProductName = false;
......
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