commit | 4355d3cf0fc3de447d653775f2ca79f9812b98e5 | [log] [tgz] |
---|---|---|
author | marination <maricadsouza221197@gmail.com> | Mon Jul 06 23:15:08 2020 +0530 |
committer | marination <maricadsouza221197@gmail.com> | Mon Jul 06 23:15:08 2020 +0530 |
tree | f22e476abd15441b6baa183fce111d796304394d | |
parent | 4bff9d8663e00143b901c824409d680d0fdc7d60 [diff] |
fix: Exploded Item Rate
diff --git a/erpnext/manufacturing/doctype/bom/bom.py b/erpnext/manufacturing/doctype/bom/bom.py index 7d31a1c..58b79d1 100644 --- a/erpnext/manufacturing/doctype/bom/bom.py +++ b/erpnext/manufacturing/doctype/bom/bom.py
@@ -494,7 +494,7 @@ 'image' : d.image, 'stock_uom' : d.stock_uom, 'stock_qty' : flt(d.stock_qty), - 'rate' : d.base_rate, + 'rate' : flt(d.base_rate) / flt(d.conversion_factor), 'include_item_in_manufacturing': d.include_item_in_manufacturing }))