Adding overtime report classes

This commit is contained in:
Thilina Hasantha
2016-03-13 23:32:05 +05:30
parent 712b2025f1
commit f25a3ffd75
2 changed files with 110 additions and 0 deletions

View File

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