I had a bug with the excel export in the menu RH --> Leave Request.
The error was due to this file:
application/views/leaves/application/views/reports/leaves/export.php
It was an error on line 130:
$sheet->getStyle('A' . $line . ':D' . $line)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
The PHPExcel_Style_Alignment function was not found.
I replace this line by:
$sheet->getStyle('A' . $line . ':D' . $line)->getAlignment()->setHorizontal(Alignment::HORIZONTAL_CENTER);
Jorani version: 6.5
I had a bug with the excel export in the menu RH --> Leave Request.
The error was due to this file: application/views/leaves/application/views/reports/leaves/export.php It was an error on line 130:
$sheet->getStyle('A' . $line . ':D' . $line)->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
The PHPExcel_Style_Alignment function was not found.I replace this line by:
$sheet->getStyle('A' . $line . ':D' . $line)->getAlignment()->setHorizontal(Alignment::HORIZONTAL_CENTER);
And everything works fine now :)