Commit 3d1804ed by 周晓航

优化 配送券的可用券 前端展示金额

Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent d87ed64b
...@@ -582,8 +582,8 @@ public class CouponServiceImpl implements CouponService { ...@@ -582,8 +582,8 @@ public class CouponServiceImpl implements CouponService {
// TODO 折扣券 百分值10 乘以10 前端统一除以100作为操作依据 // TODO 折扣券 百分值10 乘以10 前端统一除以100作为操作依据
activityCouponBean.setDiscountAmount(couponStateVo.getDiscount() != null ? couponStateVo.getDiscount() * 10 + "" : "0"); activityCouponBean.setDiscountAmount(couponStateVo.getDiscount() != null ? couponStateVo.getDiscount() * 10 + "" : "0");
}else if (Objects.equals(couponStateVo.getType(), CouponTypeEnum.TYPE_5.getCode())) { }else if (Objects.equals(couponStateVo.getType(), CouponTypeEnum.TYPE_5.getCode())) {
// 这里需要加入 配送券逻辑 // 这里需要加入 配送券逻辑 如果为null 表示 配送券金额 全免, 否则就是部分减免
//activityCouponBean.setDiscountAmount(couponStateVo.getOriginalPrice() + ""); activityCouponBean.setDiscountAmount(couponStateVo.getOriginalPrice()==null ? null : couponStateVo.getOriginalPrice()+"");
} }
......
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