Browse Source

Merge pull request #26150 from nemesis189/changed-profitability-analysis-report-width

fix: Changed profitability analysis report width
develop
Deepesh Garg 3 years ago
committed by GitHub
parent
commit
e8817f97d6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      erpnext/accounts/report/profitability_analysis/profitability_analysis.py

9
erpnext/accounts/report/profitability_analysis/profitability_analysis.py

@ -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
}
]

Loading…
Cancel
Save