From fc3b4995f27a8c7c115173e80fff547b6880309c Mon Sep 17 00:00:00 2001 From: khushal Date: Wed, 26 Feb 2025 12:02:11 +0530 Subject: [PATCH] (20250225) ... --- controllers_v2/finstitutions/payments/base.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/controllers_v2/finstitutions/payments/base.py b/controllers_v2/finstitutions/payments/base.py index a09fdd8..0a306eb 100644 --- a/controllers_v2/finstitutions/payments/base.py +++ b/controllers_v2/finstitutions/payments/base.py @@ -396,7 +396,18 @@ class PaymentsController(CoreAuthTokenController, ABC): payment.metadata.idClient, # ........................................... _client_id payment.amount, # ...................................................... p_amount None, # ................................................................ p_document_url - json.to_string(payment.metadata.againstReference, no_space = True) # ... p_description + json.to_string( + python_data = { + "invoiceNo": None, + "deliveryBoyId": None, + "clientName": payment.metadata.clientName, + "clientAddress": None, + "clientId": payment.metadata.idClient, + "deliveryAddress": None, + "deliveryBoyName": None, + }, + no_space = True + ) # .................................................................... p_description ), retry_count = 1, backoff_seconds = 0.5,