网页支付礼包逻辑

back_recharge
zhangshanxue 2020-11-04 17:51:50 +08:00
parent ebc1382f72
commit 1c56fa0487
1 changed files with 8 additions and 0 deletions

View File

@ -965,6 +965,14 @@ public class BuyGoodsLogic {
}
}
if (sRechargeCommodityConfig.getTime() == 6) {
if (rechargeInfo.getDyGoodsCanBuyTimes().containsKey(sRechargeCommodityConfig.getId())&&rechargeInfo.getRefreshBagMap().containsKey(sRechargeCommodityConfig.getId())) {
long endTime = rechargeInfo.getRefreshBagMap().get(sRechargeCommodityConfig.getId());
if (now > endTime || rechargeInfo.getDyGoodsCanBuyTimes().get(sRechargeCommodityConfig.getId()) <= 0) {
continue;
}
}
}
}