Browse Source

fixed 卡券核销文案

fushengqian 1 year ago
parent
commit
895a94042b

+ 1 - 1
fuint-application/src/main/java/com/fuint/common/service/impl/UserCouponServiceImpl.java

@@ -499,7 +499,7 @@ public class UserCouponServiceImpl extends ServiceImpl<MtUserCouponMapper, MtUse
                 // 计次卡tips
                 if (couponInfo.getType().equals(CouponTypeEnum.TIMER.getKey())) {
                     Long confirmNum = confirmLogService.getConfirmNum(userCouponDto.getId());
-                    tips = "已集"+ confirmNum +"次,需集满" + couponInfo.getOutRule() + "次";
+                    tips = "已核销"+ confirmNum +"次,可核销" + couponInfo.getOutRule() + "次";
                 }
 
                 dto.setTips(tips);