commit | 1a6dcd7f45a27925d82ac3681443ebdab8b2f023 | [log] [tgz] |
---|---|---|
author | Marica <maricadsouza221197@gmail.com> | Thu May 21 12:07:43 2020 +0530 |
committer | GitHub <noreply@github.com> | Thu May 21 12:07:43 2020 +0530 |
tree | e0b6962c0755d9c2af800eb54df1fe0850d563dd | |
parent | 82f639da5980c0aa6337e545b6be5d3899641843 [diff] |
fix: plc conversion rate set infinitely (#21820)
diff --git a/erpnext/manufacturing/doctype/bom/bom.js b/erpnext/manufacturing/doctype/bom/bom.js index 44da9ca..898955e 100644 --- a/erpnext/manufacturing/doctype/bom/bom.js +++ b/erpnext/manufacturing/doctype/bom/bom.js
@@ -265,7 +265,7 @@ plc_conversion_rate: function(doc) { if (!this.in_apply_price_list) { - this.apply_price_list(); + this.apply_price_list(null, true); } },