commit | ed87335513986af2ba6766e331906078c830a9bd | [log] [tgz] |
---|---|---|
author | Akhilesh Darjee <akhileshdarjee@gmail.com> | Fri Jan 17 18:57:21 2014 +0530 |
committer | Akhilesh Darjee <akhileshdarjee@gmail.com> | Fri Jan 17 18:57:21 2014 +0530 |
tree | 0e762b0d5254735518a114af9b73003b067a967d | |
parent | 7e73f35916208f68a43125866cbdbfe692f58c31 [diff] |
decimal places fix in item prices report
diff --git a/stock/report/item_prices/item_prices.py b/stock/report/item_prices/item_prices.py index e744cc7..5eee7df 100644 --- a/stock/report/item_prices/item_prices.py +++ b/stock/report/item_prices/item_prices.py
@@ -15,7 +15,7 @@ bom_rate = get_item_bom_rate() val_rate_map = get_valuation_rate() - precision = get_currency_precision or 2 + precision = get_currency_precision() or 2 data = [] for item in sorted(item_map):