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,