lvxinran 2019-09-23 06:01:44 +08:00
commit 65676c7931
1 changed files with 8 additions and 1 deletions

View File

@ -326,7 +326,14 @@ public class BuyGoodsLogic {
startTime = sRechargeCommodityConfig.getTimeLong(createTime,1);
endTime = sRechargeCommodityConfig.getTimeLong(createTime,2);
}
if(now<startTime || (endTime!=0 && now > endTime)){
if(now<startTime){
continue;
}
if(endTime!=0 && now > endTime){
boolean isNew = rechargeInfo.addNewSendId(goodsId);
if(!isNew){
needChange = true;
}
continue;
}
int order = sRechargeCommodityConfig.getOrder();