fix: Modified column width

This commit is contained in:
Nabin Hait
2022-02-23 14:07:24 +05:30
parent f9633bbd48
commit 0480bb318e

View File

@@ -409,7 +409,7 @@ class IncomeTaxComputationReport(object):
"fieldname": fieldname or scrub(label), "fieldname": fieldname or scrub(label),
"fieldtype": fieldtype or "Currency", "fieldtype": fieldtype or "Currency",
"options": options, "options": options,
"width": width or "150px" "width": width or "140px"
} }
self.columns.append(col) self.columns.append(col)
@@ -420,27 +420,27 @@ class IncomeTaxComputationReport(object):
"fieldname": "employee", "fieldname": "employee",
"fieldtype": "Link", "fieldtype": "Link",
"options": "Employee", "options": "Employee",
"width": "120px" "width": "140px"
}, },
{ {
"label": _("Employee Name"), "label": _("Employee Name"),
"fieldname": "employee_name", "fieldname": "employee_name",
"fieldtype": "Data", "fieldtype": "Data",
"width": "140px" "width": "160px"
}, },
{ {
"label": _("Department"), "label": _("Department"),
"fieldname": "department", "fieldname": "department",
"fieldtype": "Link", "fieldtype": "Link",
"options": "Department", "options": "Department",
"width": "120px" "width": "140px"
}, },
{ {
"label": _("Designation"), "label": _("Designation"),
"fieldname": "designation", "fieldname": "designation",
"fieldtype": "Link", "fieldtype": "Link",
"options": "Designation", "options": "Designation",
"width": "120px" "width": "140px"
}, },
{ {
"label": _("Date of Joining"), "label": _("Date of Joining"),
@@ -451,6 +451,6 @@ class IncomeTaxComputationReport(object):
"label": _("CTC"), "label": _("CTC"),
"fieldname": "ctc", "fieldname": "ctc",
"fieldtype": "Currency", "fieldtype": "Currency",
"width": "120px" "width": "140px"
}, },
] ]