(20250225) ...

This commit is contained in:
2025-02-26 12:02:11 +05:30
parent 62c46d7c94
commit fc3b4995f2
+12 -1
View File
@@ -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,