fix: changed profitability analysis report width (#26165)

This commit is contained in:
Subin Tom 2021-06-25 11:38:11 +05:30 committed by GitHub
parent 8958f55890
commit 43f85a2877
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,21 +168,24 @@ def get_columns(filters):
"label": _("Income"),
"fieldtype": "Currency",
"options": "currency",
"width": 120
"width": 305
},
{
"fieldname": "expense",
"label": _("Expense"),
"fieldtype": "Currency",
"options": "currency",
"width": 120
"width": 305
},
{
"fieldname": "gross_profit_loss",
"label": _("Gross Profit / Loss"),
"fieldtype": "Currency",
"options": "currency",
"width": 120
"width": 307
}
]