修复基数没有自动调整

This commit is contained in:
Harryxzy 2024-12-13 16:19:56 +08:00
parent c13cc9d0a2
commit 874de98a91
1 changed files with 2 additions and 3 deletions

View File

@ -3567,7 +3567,7 @@ public class SIArchivesServiceImpl extends Service implements SIArchivesService
}
List<InsuranceSchemeDetailPO> isPaymentList = insuranceSchemeDetailPOList.stream()
.filter(f -> f.getIsPayment().equals(IsPaymentEnum.YES.getValue()) && f.getPaymentScope().equals(paymentScope)).collect(Collectors.toList());
log.info("自动调整 isPaymentList", isPaymentList.size());
log.info("自动调整 isPaymentList: {}", isPaymentList.size());
if (isPaymentList.size() > 0) {
InsuranceSchemeDetailPO insuranceSchemeDetailPO = isPaymentList.get(0);
@ -3585,8 +3585,7 @@ public class SIArchivesServiceImpl extends Service implements SIArchivesService
log.info("自动调整 福利方案id: {},, 福利明细项id{},数值{}数值高于对应福利明细上限{} ", primaryId, Long.valueOf(entry.getKey()), entry.getValue(), upperLimit);
}
} else {
log.info("自动调整 福利明细项属于未缴费状态,不对上下限进行约束");
return null;
log.info("自动调整 福利方案id: {},, 福利明细项id{}福利明细项属于未缴费状态,不对上下限进行约束", primaryId, Long.valueOf(entry.getKey()));
}
}
log.info("自动调整后 基数信息{}", paymentBaseJson);