mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-31 10:49:09 +00:00
chore: fix report column widths
This commit is contained in:
@@ -33,13 +33,39 @@ def get_columns():
|
|||||||
'label': _('Date of Joining'),
|
'label': _('Date of Joining'),
|
||||||
'fieldname': 'date_of_joining',
|
'fieldname': 'date_of_joining',
|
||||||
'fieldtype': 'Date',
|
'fieldtype': 'Date',
|
||||||
'width': 100
|
'width': 120
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'label': _('Relieving Date'),
|
'label': _('Relieving Date'),
|
||||||
'fieldname': 'relieving_date',
|
'fieldname': 'relieving_date',
|
||||||
'fieldtype': 'Date',
|
'fieldtype': 'Date',
|
||||||
'width': 100
|
'width': 120
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': _('Exit Interview'),
|
||||||
|
'fieldname': 'exit_interview',
|
||||||
|
'fieldtype': 'Link',
|
||||||
|
'options': 'Exit Interview',
|
||||||
|
'width': 150
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': _('Interview Status'),
|
||||||
|
'fieldname': 'interview_status',
|
||||||
|
'fieldtype': 'Data',
|
||||||
|
'width': 130
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': _('Final Decision'),
|
||||||
|
'fieldname': 'employee_status',
|
||||||
|
'fieldtype': 'Data',
|
||||||
|
'width': 150
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'label': _('Full and Final Statement'),
|
||||||
|
'fieldname': 'full_and_final_statement',
|
||||||
|
'fieldtype': 'Link',
|
||||||
|
'options': 'Full and Final Statement',
|
||||||
|
'width': 180
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'label': _('Department'),
|
'label': _('Department'),
|
||||||
@@ -61,32 +87,6 @@ def get_columns():
|
|||||||
'fieldtype': 'Link',
|
'fieldtype': 'Link',
|
||||||
'options': 'Employee',
|
'options': 'Employee',
|
||||||
'width': 120
|
'width': 120
|
||||||
},
|
|
||||||
{
|
|
||||||
'label': _('Exit Interview'),
|
|
||||||
'fieldname': 'exit_interview',
|
|
||||||
'fieldtype': 'Link',
|
|
||||||
'options': 'Exit Interview',
|
|
||||||
'width': 98
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'label': _('Interview Status'),
|
|
||||||
'fieldname': 'interview_status',
|
|
||||||
'fieldtype': 'Data',
|
|
||||||
'width': 98
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'label': _('Final Decision'),
|
|
||||||
'fieldname': 'employee_status',
|
|
||||||
'fieldtype': 'Data',
|
|
||||||
'width': 98
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'label': _('Full and Final Statement'),
|
|
||||||
'fieldname': 'full_and_final_statement',
|
|
||||||
'fieldtype': 'Link',
|
|
||||||
'options': 'Full and Final Statement',
|
|
||||||
'width': 150
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user