From 5e5f1b83ad589ebfbe04f9b189d51d385a527910 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 7 Nov 2025 18:17:16 -0500 Subject: [PATCH] checks --- app/api/services/eligibility_check.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/api/services/eligibility_check.py b/app/api/services/eligibility_check.py index bda1e49..163988d 100644 --- a/app/api/services/eligibility_check.py +++ b/app/api/services/eligibility_check.py @@ -55,8 +55,8 @@ class EligibilityCheckService(BaseService): current_loan = EligibilityCheckService.get_current_active_loans_by_account_id(account_id = account_id) logger.info(f"*********888 has active loan {current_loan}") if current_loan: - logger.info(f"Account {current_loan['accountId']} has active loan {current_loan}") - if current_loan['product_id'] =='3MPC': + logger.info(f"Account {current_loan.account_id} has active loan {current_loan}") + if current_loan.product_id =='3MPC': return ResponseHelper.error(result_description="Max loan count for 3MPC reached")