fix:信用卡管理,bug修复。

This commit is contained in:
tianyongbao
2024-07-08 16:42:58 +08:00
parent 524d915862
commit f7e4689349
2 changed files with 6 additions and 2 deletions

View File

@@ -72,6 +72,10 @@ public class InvestJobImpl implements IInvestJobService
Date billDate= new Date();
//遍历数据,获取信用卡账单日及数据
for (BankCardLendVo bankCard : bankCardVoList) {
//如果信用卡额度为0不需要生成账单信息
if(bankCard.getCreditLimit()==0){
continue;
}
//0表示当期1表示下期
String isNextBillDate = bankCard.getIsNextBillDate();
String billDateStr=year+"-"+String.format("%02d", month)+"-"+String.format("%02d", bankCard.getBillDate());