Commit 0889273c by 缪晖

合车逻辑修正

parent 2683568d
......@@ -292,7 +292,7 @@ public class ShoppingCartCollageServiceImpl extends AbstractShoppingCartImpl imp
shoppingCartCollageResponseVo.setUserProducts(userProducts);
// 个人购物车将个人数据覆盖整单数据
if (StringUtils.isEmpty(currentUserId) && userProducts.size() > 0) {
if (!StringUtils.isEmpty(currentUserId) && userProducts.size() > 0) {
// 个人购物车隐藏满减提示
shoppingCartCollageResponseVo.setActivityTip(new ActivityTip());
// 个人购物车不展示
......
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