From 946818dae6803f53e520ba44f413e6ce1085b85c Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Mon, 7 Apr 2025 13:24:07 -0400 Subject: [PATCH] Transaction ID added to return --- 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 2413436..bd61d49 100644 --- a/app/api/services/eligibility_check.py +++ b/app/api/services/eligibility_check.py @@ -74,9 +74,9 @@ class EligibilityCheckService(BaseService): # Simulate processing response_data = { "customerId": customer_id, - "transactionId": transaction.id, + "transactionId": transaction.transaction_id, "countryCode": "NG", - "msisdn": "3451342", + "msisdn": transaction.msisdn, "eligibleOffers": offers, "resultDescription": "Successful", "resultCode": "00",