[FIX] hr_base_reports

This commit is contained in:
Samir Ladoui 2025-07-23 14:32:47 +01:00
parent 49d8dc64cf
commit 32633353d8
1 changed files with 1 additions and 1 deletions

View File

@ -84,9 +84,9 @@ class EmployeeHandoverReportXlsx(models.AbstractModel):
sheet.write(row, clm + 2, rec.employee_id.name, format1)
sheet.write(row, clm + 3, rec.job_id.name, format1)
sheet.write(row, clm + 4, rec.employee_id.department_id.name, format1)
sheet.write(row, clm + 5, str(rec.first_hire_date), format1)
sheet.write(row, clm + 6, rec.reason, format1)
sheet.write(row, clm + 7, str(rec.create_date), format1)
sheet.write(row, clm + 5, str(rec.first_hire_date), format1)
sheet.write(row, clm + 8, str(rec.last_work_date), format1)
sheet.write(row, clm + 9, rec.employee_id.working_location.name, format1)
sheet.write(row, clm + 10, rec.employee_id.parent_id.name, format1)