|
@@ -222,7 +222,7 @@ public class FsCouponScheduleServiceImpl implements IFsCouponScheduleService
|
|
|
fsCouponSchedule.setStatus(IcgProcessStatusEnum.SUCCESS.getCode());
|
|
|
}
|
|
|
fsCouponSchedule.setActualSendTime(LocalDateTime.now());
|
|
|
- fsCouponSchedule.setSendTime(fsCouponSchedule.getActualSendTime().plusMonths(1));
|
|
|
+ fsCouponSchedule.setSendTime(fsCouponSchedule.getActualSendTime().plusMonths(1).withDayOfMonth(10));
|
|
|
fsCouponSchedule.setCount(fsCouponSchedule.getCount()+1);
|
|
|
// 清空错误信息
|
|
|
fsCouponSchedule.setErrorMessage(null);
|
|
@@ -255,7 +255,7 @@ public class FsCouponScheduleServiceImpl implements IFsCouponScheduleService
|
|
|
if(ObjectUtil.isNotNull(fsStoreCoupon)){
|
|
|
String couponNameById = fsStoreCoupon.getTitle();
|
|
|
if(StringUtil.isNotEmpty(couponNameById)){
|
|
|
- couponName.setValue(String.format("优惠券 %s 已下发账户,请及时使用!",couponNameById));
|
|
|
+ couponName.setValue(String.format("%s 已下发账户,请及时使用!",couponNameById));
|
|
|
}
|
|
|
}
|
|
|
|