From 2a184d134dd2468266435eadfcb097ac7e47bb71 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 7 Nov 2025 18:35:52 -0500 Subject: [PATCH] eligibility clean up --- app/api/services/eligibility_check.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/api/services/eligibility_check.py b/app/api/services/eligibility_check.py index 163988d..26ba51c 100644 --- a/app/api/services/eligibility_check.py +++ b/app/api/services/eligibility_check.py @@ -51,15 +51,13 @@ class EligibilityCheckService(BaseService): db.session.flush() - # Determine if there is any loan of 0 days active + # Determine if there is any loan of 3MPC active 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.account_id} has active loan {current_loan}") if current_loan.product_id =='3MPC': return ResponseHelper.error(result_description="Max loan count for 3MPC reached") - # Determine Loan count is_eligible = EligibilityCheckService.check_loan_limits(customer_id)