chore: add Item Name column in Warehouse wise Item Balance Age and Value report

(cherry picked from commit 56356ffbb9)
This commit is contained in:
s-aga-r
2023-01-29 12:22:01 +05:30
committed by Mergify
parent 8d0b45b835
commit 5a9673ae1f

View File

@@ -62,7 +62,7 @@ def execute(filters=None):
continue
total_stock_value = sum(item_value[(item, item_group)])
row = [item, item_group, total_stock_value]
row = [item, item_map[item]["item_name"], item_group, total_stock_value]
fifo_queue = item_ageing[item]["fifo_queue"]
average_age = 0.00
@@ -96,6 +96,7 @@ def get_columns(filters):
_("Age") + ":Float:60",
=======
_("Item") + ":Link/Item:150",
_("Item Name") + ":Link/Item:150",
_("Item Group") + "::120",
_("Value") + ":Currency:120",
_("Age") + ":Float:120",