function __construct()
 {
     $this->title = TTi18n::getText('Qualification Summary Report');
     $this->file_name = 'qualification_summary_report';
     parent::__construct();
     return TRUE;
 }
Esempio n. 2
0
 function __construct()
 {
     $this->title = TTi18n::getText('Review Summary Report');
     $this->file_name = 'review_summary_report';
     parent::__construct();
     return TRUE;
 }
 public function __construct($id)
 {
     parent::__construct($id);
     $this->month_fields = "";
     $this->month_fields_override = "";
     $this->month_fields_outlier = "";
 }
 function __construct()
 {
     $this->title = TTi18n::getText('Employee Summary Report');
     $this->file_name = 'employee_summary_report';
     parent::__construct();
     return TRUE;
 }
 function __construct()
 {
     $this->title = TTi18n::getText('General Ledger Summary Report');
     $this->file_name = 'generalledger_summary_report';
     parent::__construct();
     return TRUE;
 }
Esempio n. 6
0
 function __construct()
 {
     $this->title = TTi18n::getText('ROE Report');
     $this->file_name = 'roe';
     parent::__construct();
     return TRUE;
 }
 function __construct()
 {
     $this->title = TTi18n::getText('Whos In Summary');
     $this->file_name = 'whos_in_summary';
     parent::__construct();
     return TRUE;
 }
 function __construct()
 {
     $this->title = TTi18n::getText('Audit Trail Report');
     $this->file_name = 'audit_trail_report';
     parent::__construct();
     return TRUE;
 }
Esempio n. 9
0
 function __construct()
 {
     $this->title = TTi18n::getText('Form W2 Report');
     $this->file_name = 'form_w2';
     parent::__construct();
     return TRUE;
 }
Esempio n. 10
0
 function __construct()
 {
     $this->title = TTi18n::getText('T4 Summary Report');
     $this->file_name = 't4_summary';
     parent::__construct();
     return TRUE;
 }
 function __construct()
 {
     $this->title = TTi18n::getText('Pay Stub Summary Report');
     $this->file_name = 'paystub_summary_report';
     parent::__construct();
     return TRUE;
 }
 function __construct()
 {
     $this->title = TTi18n::getText('Form 1099-MISC Report');
     $this->file_name = 'form_1099misc';
     parent::__construct();
     return TRUE;
 }
 function __construct()
 {
     $this->title = TTi18n::getText('TimeSheet Summary Report');
     $this->file_name = 'timesheet_summary_report';
     parent::__construct();
     return TRUE;
 }
Esempio n. 14
0
 /**
  * @param $app
  */
 public function __construct($app)
 {
     $this->months = $app->getRequest()->getQuery('months', 4);
     $this->method = $app->getRequest()->getQuery('method', 'best');
     $this->type = $app->getRequest()->getQuery('type', 'distance');
     parent::__construct($app);
 }
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->hallSummaries = array();
     $this->studentTypes = array(TYPE_FRESHMEN, TYPE_TRANSFER, TYPE_CONTINUING, 'OTHER');
     $this->classes = array(CLASS_FRESHMEN, CLASS_SOPHOMORE, CLASS_JUNIOR, CLASS_SENIOR);
     $this->genders = array(MALE, FEMALE);
     $this->hallSummaries = array();
     // Array of halls containing counts by type/class/gender
     $this->grandTotals = array();
     // totals over all halls by type/class/gender
     $this->initializeArray($this->grandTotals);
     $this->genderTotals = array();
     // totals by gender
     $this->typeTotals = array();
     // totals by student stype
     // Initalize the array for totals by gender
     foreach ($this->genders as $g) {
         $this->grandTotalsByGender[$g] = 0;
     }
     // Initalize the array for totals by student type
     foreach ($this->studentTypes as $t) {
         $this->grandTotalsByType[$t] = 0;
     }
     $this->problems = array();
 }
 function __construct()
 {
     $this->title = TTi18n::getText('Accrual Balance Summary Report');
     $this->file_name = 'accrual_balance_summary_report';
     parent::__construct();
     return TRUE;
 }
Esempio n. 17
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->total = 0;
     $this->male = 0;
     $this->female = 0;
     $this->data = array();
 }
 function __construct()
 {
     $this->title = TTi18n::getText('Payroll Export Report');
     $this->file_name = 'payroll_export';
     //Don't call TimesheetSummaryReport __construct(), skip one level lower to the Report class instead.
     Report::__construct();
     return TRUE;
 }
Esempio n. 19
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->rows = array();
     $this->totalCurrOccupancy = 0;
     $this->totalMales = 0;
     $this->totalFemales = 0;
     $this->totalMalePercent = 0;
     $this->totalFemalePercent = 0;
 }
 /**
  * @param $app
  */
 public function __construct($app)
 {
     $this->months = $app->getRequest()->getQuery('months', 0);
     $this->procedures = $app->getRequest()->getQuery('procedures', array());
     //if they selected all set to empty array to ignore procedure check in query
     if (in_array('all', $this->procedures)) {
         $this->procedures = array();
     }
     parent::__construct($app);
 }
Esempio n. 21
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->applicationTotals = array();
     $this->typeTotals = array();
     $this->maleSubTotal = 0;
     $this->femaleSubTotal = 0;
     $this->cancelledTotals = array();
     $this->cancelledSubTotal = 0;
     $this->femaleGrandTotal = 0;
     $this->maleGrandTotal = 0;
     $this->total = 0;
 }
Esempio n. 22
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->total = 0;
     $this->transferTotal = 0;
     $this->gradTotal = 0;
     $this->teachingTotal = 0;
     $this->internTotal = 0;
     $this->withdrawTotal = 0;
     $this->marriageTotal = 0;
     $this->abroadTotal = 0;
     $this->internationTotal = 0;
     $this->data = array();
 }
 public function __construct($id)
 {
     parent::__construct($id);
     $this->month_fields = "";
 }
Esempio n. 24
0
 function __construct()
 {
     parent::__construct();
 }
Esempio n. 25
0
 public function __construct($domain, $id, $title, $sqls, $headers, $fields, $mergeFields)
 {
     parent::__construct($domain, $id, $title, $sqls[0], $headers, $fields);
     $this->sqls = array_slice($sqls, 1);
     $this->mergeFields = $mergeFields;
     $this->mergedTotals = array();
     $this->mergedSubtotals = array();
     $this->mergedFilters = array();
     $this->mergedVisualFilters = array();
     $this->mergedHeaderFilters = array();
 }
Esempio n. 26
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->rows = array();
 }
Esempio n. 27
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->hallCounts = array();
     $this->floorCounts = array();
 }
Esempio n. 28
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->typeCounts = array();
 }
Esempio n. 29
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
     $data = array();
 }
Esempio n. 30
0
 public function __construct($id = 0)
 {
     parent::__construct($id);
 }