collect_loan_user_initiated

This commit is contained in:
CHIEFSOFT\ameye
2025-06-17 07:18:11 -04:00
parent e87ceabe47
commit b574c985db
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ class KafkaIntegration:
logger.info(f"Calling collect_loan service with message: {message}")
try:
response = SimbrellaClient.collect_loan(message)
response = SimbrellaClient.collect_loan_user_initiated(message)
logger.info(
f"Successfully sent message to collect_loan service: {response}"
)
+1
View File
@@ -180,6 +180,7 @@ class SimbrellaClient:
@staticmethod
def collect_loan_user_initiated(data):
# InitiatedBy = USER_INITIATED
logger.info(f"Calling CollectLoan collect_loan_user_initiated ******* endpoint with data: {data}")
return SimbrellaClient._collect_loan(data)
@staticmethod