Commit 62c1daf1 by 刘鹏飞

coco的购物车tip提示修改0元值判断

parent f5ab77e2
......@@ -168,7 +168,7 @@ public class CocoShoppingCartRelationServiceImpl implements ShoppingCartRelation
// 获取用户的优惠金额,重新编辑用户提示语
// 这里比较暴力的做法直接把已经编辑的结合直接删了,重新用一个新的
// 并且把tip类型设置为5,因为前端针对5直接显示立减文案
if(!ObjectUtils.equals(shoppingCartGoodsResponseVo.getTotalDiscountAmount(),0)){
if(!ObjectUtils.equals(shoppingCartGoodsResponseVo.getTotalDiscountAmount(),0L)){
ArrayList<ActivityList> activityList = new ArrayList<>();
......
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