Files
icehrm/ext/admin/reports/reportClasses/OvertimeSummaryReport.php
2016-03-13 23:32:05 +05:30

10 lines
250 B
PHP

<?php
if(!interface_exists('OvertimeReport')){
include_once APP_BASE_PATH.'admin/reports/reportClasses/OvertimeReport.php';
}
class OvertimeSummaryReport extends OvertimeReport{
protected function isAggregated(){
return true;
}
}