mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-05 06:28:29 +00:00
decimal places fixed in item prices report
This commit is contained in:
@@ -15,8 +15,8 @@ def execute(filters=None):
|
|||||||
bom_rate = get_item_bom_rate()
|
bom_rate = get_item_bom_rate()
|
||||||
val_rate_map = get_valuation_rate()
|
val_rate_map = get_valuation_rate()
|
||||||
|
|
||||||
precision = get_currency_precision or 2
|
precision = get_currency_precision() or 2
|
||||||
|
|
||||||
data = []
|
data = []
|
||||||
for item in sorted(item_map):
|
for item in sorted(item_map):
|
||||||
data.append([item, item_map[item]["item_name"],
|
data.append([item, item_map[item]["item_name"],
|
||||||
|
|||||||
Reference in New Issue
Block a user