From e9c29a8743030b2add8f9f85d56f74b82d942615 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Fri, 20 Jun 2025 20:45:08 -0400 Subject: [PATCH] "customerId": loan_dict["customer_id"], --- app/routes/autocall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/autocall.py b/app/routes/autocall.py index 7738d7d..1c30717 100644 --- a/app/routes/autocall.py +++ b/app/routes/autocall.py @@ -168,7 +168,7 @@ def salary_detect(): try: loan_dict = loan.to_dict() repayment_data = { - "customerId": loan_dict["customer_id"], + "customerId": loan_dict.customer_id, "loanId": loan_dict["debtId"], "productId": loan_dict["productId"], "transactionId": loan_dict["transactionId"],