commit | 55d67a0d09fdf5e1a1411c7e303990d3c5a9fdf6 | [log] [tgz] |
---|---|---|
author | Marica <maricadsouza221197@gmail.com> | Wed Jun 22 11:45:59 2022 +0530 |
committer | GitHub <noreply@github.com> | Wed Jun 22 11:45:59 2022 +0530 |
tree | 03b6aa6b47b50d535a4ce8b5ebe66a95160ebb38 | |
parent | 2ed06d7ceb9df529f60b789649ffb8e7634c2086 [diff] | |
parent | 8b1ff96e30e88f6a8c9dabed097efeac310645c1 [diff] |
Merge pull request #31420 from HarryPaulo/translate-status-filter-orders 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": "" }) }