Merge pull request #32874 from SolufyPrivateLimited/incr-clm-wwibav

fix: Increase columns width in Warehouse wise Item Balance Age and Value
This commit is contained in:
Deepesh Garg 2022-11-07 13:34:47 +05:30 committed by GitHub
commit eb4820b68b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"]