From 0480bb318e97d1d6cf6ea53feea905a7af50498f Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 23 Feb 2022 14:07:24 +0530 Subject: [PATCH] fix: Modified column width --- .../income_tax_computation/income_tax_computation.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/erpnext/payroll/report/income_tax_computation/income_tax_computation.py b/erpnext/payroll/report/income_tax_computation/income_tax_computation.py index 6b66ccdcbe8..534eabea4ad 100644 --- a/erpnext/payroll/report/income_tax_computation/income_tax_computation.py +++ b/erpnext/payroll/report/income_tax_computation/income_tax_computation.py @@ -409,7 +409,7 @@ class IncomeTaxComputationReport(object): "fieldname": fieldname or scrub(label), "fieldtype": fieldtype or "Currency", "options": options, - "width": width or "150px" + "width": width or "140px" } self.columns.append(col) @@ -420,27 +420,27 @@ class IncomeTaxComputationReport(object): "fieldname": "employee", "fieldtype": "Link", "options": "Employee", - "width": "120px" + "width": "140px" }, { "label": _("Employee Name"), "fieldname": "employee_name", "fieldtype": "Data", - "width": "140px" + "width": "160px" }, { "label": _("Department"), "fieldname": "department", "fieldtype": "Link", "options": "Department", - "width": "120px" + "width": "140px" }, { "label": _("Designation"), "fieldname": "designation", "fieldtype": "Link", "options": "Designation", - "width": "120px" + "width": "140px" }, { "label": _("Date of Joining"), @@ -451,6 +451,6 @@ class IncomeTaxComputationReport(object): "label": _("CTC"), "fieldname": "ctc", "fieldtype": "Currency", - "width": "120px" + "width": "140px" }, ] \ No newline at end of file