Merge pull request #44559 from mahsem/patch-9

fix: add strings for translation payment_terms_status_for_sales_order.py
This commit is contained in:
ruthra kumar
2024-12-06 12:07:58 +05:30
committed by GitHub

View File

@@ -270,11 +270,11 @@ def prepare_chart(s_orders):
"labels": [term.payment_term for term in s_orders],
"datasets": [
{
"name": "Payment Amount",
"name": _("Payment Amount"),
"values": [x.base_payment_amount for x in s_orders],
},
{
"name": "Paid Amount",
"name": _("Paid Amount"),
"values": [x.paid_amount for x in s_orders],
},
],