commit | 8b1ff96e30e88f6a8c9dabed097efeac310645c1 | [log] [tgz] |
---|---|---|
author | hrzzz <paulo_fabris@hotmail.com> | Tue Jun 21 15:10:19 2022 -0300 |
committer | hrzzz <paulo_fabris@hotmail.com> | Tue Jun 21 15:10:19 2022 -0300 |
tree | 0e01fa52495fb71fff9912b34993da1dfe80a3e2 | |
parent | ce1b4e40a15eb88a715d0fd25089ceb8df5f3cde [diff] |
fix: translation for filter status on report
diff --git a/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js b/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js index ca3be03..721e54e 100644 --- a/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js +++ b/erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js
@@ -59,6 +59,7 @@ for (let option of status){ options.push({ "value": option, + "label": __(option), "description": "" }) }
diff --git a/erpnext/selling/report/sales_order_analysis/sales_order_analysis.js b/erpnext/selling/report/sales_order_analysis/sales_order_analysis.js index 76a5bb5..91748bc 100644 --- a/erpnext/selling/report/sales_order_analysis/sales_order_analysis.js +++ b/erpnext/selling/report/sales_order_analysis/sales_order_analysis.js
@@ -55,6 +55,7 @@ for (let option of status){ options.push({ "value": option, + "label": __(option), "description": "" }) }