fix:信用卡管理,bug修复。
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user