Merge pull request #32875 from frappe/mergify/bp/version-14-hotfix/pr-32874

fix: Increase columns width in Warehouse wise Item Balance Age and Value (backport #32874)
This commit is contained in:
Deepesh Garg
2022-11-07 15:41:05 +05:30
committed by GitHub

View File

@@ -91,8 +91,8 @@ def get_columns(filters):
columns = [
_("Item") + ":Link/Item:180",
_("Item Group") + "::100",
_("Value") + ":Currency:100",
_("Age") + ":Float:60",
_("Value") + ":Currency:120",
_("Age") + ":Float:80",
]
return columns
@@ -123,7 +123,7 @@ def get_warehouse_list(filters):
def add_warehouse_column(columns, warehouse_list):
if len(warehouse_list) > 1:
columns += [_("Total Qty") + ":Int:50"]
columns += [_("Total Qty") + ":Int:90"]
for wh in warehouse_list:
columns += [_(wh.name) + ":Int:54"]
columns += [_(wh.name) + ":Int:120"]