Преглед изворни кода

//recharge

release_toaliyun_real
xhxu пре 3 година
родитељ
комит
ec4b912e38
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCardInfoServiceImpl.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCardInfoServiceImpl.java Прегледај датотеку

@@ -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(),"卡已过期,不支持充值");
}



Loading…
Откажи
Сачувај