bbalet / jorani

Leave and Overtime Management System
http://jorani.org/
GNU Affero General Public License v3.0
389 stars 276 forks source link

Export Excel --> Leave Request #286

Closed eglyn closed 4 years ago

eglyn commented 4 years ago

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 :)

bbalet commented 4 years ago

Thank you for the patch!