|
|
|
@@ -464,7 +464,7 @@ public class WxCardInfoServiceImpl implements WxCardInfoService { |
|
|
|
return new ResultData(ErrorCode.CARD_IS_NOT_RECHARGE.getCode(),"有补贴不支持充值"); |
|
|
|
} |
|
|
|
Date currentDate = new Date(); |
|
|
|
if(currentDate.after(wxCoupon.getValidEndDate())){ |
|
|
|
if(wxCoupon.getValidEndDate() != null && currentDate.after(wxCoupon.getValidEndDate())){ |
|
|
|
return new ResultData(ErrorCode.CARD_IS_NOT_RECHARGE.getCode(),"卡已过期,不支持充值"); |
|
|
|
} |
|
|
|
|
|
|
|
|