fix: 智聪记账管理,信用卡生成优化。

This commit is contained in:
tianyongbao
2025-03-18 13:16:02 +08:00
parent 09bffbaf00
commit 1f57776247
2 changed files with 4 additions and 4 deletions

View File

@@ -339,8 +339,8 @@ public class CreditCardBillServiceImpl implements ICreditCardBillService
Date billDate= new Date();
//遍历数据,获取信用卡账单日及数据
for (BankCardLendVo bankCard : bankCardVoList) {
//如果信用卡额度为0不需要生成账单信息
if(bankCard.getCreditLimit()==0){
//如果信用卡额度为0或者不为正常使用状态,不需要生成账单信息
if(bankCard.getCreditLimit()==0||!bankCard.getStatus().equals("1")){
continue;
}
//0表示当期1表示下期

View File

@@ -73,8 +73,8 @@ public class InvestJobImpl implements IInvestJobService
Date billDate= new Date();
//遍历数据,获取信用卡账单日及数据
for (BankCardLendVo bankCard : bankCardVoList) {
//如果信用卡额度为0不需要生成账单信息
if(bankCard.getCreditLimit()==0){
//如果信用卡额度为0或者不为正常使用状态,不需要生成账单信息
if(bankCard.getCreditLimit()==0||!bankCard.getStatus().equals("1")){
continue;
}
//0表示当期1表示下期