Commit f5681854 by 徐康

check逻辑修改

parent e2b1d356
......@@ -1112,7 +1112,7 @@ public class ShoppingCartMCoffeeServiceImpl {
}
cartGoodsList = cartGoodsList.stream().filter(cartGoods ->
(StringUtils.isEmpty(cartGoods.getCouponCode()) && !StringUtils.equals("9999",cartGoods.getSkuId()))
&& (cartGoods.getIsMonthCard() == 1 && cartGoods.getMonthCardInfo() != null)
&& (cartGoods.getIsMonthCard() != 1 && cartGoods.getMonthCardInfo() == null)
).collect(Collectors.toList());
// 重新存储门店购物车
// assortmentSdkService.setShoppingCart(partnerId, storeId, userId, cartGoodsList, sessionId, "", shoppingCartBaseService);
......
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