/**
  * @return array Возвращает данные для отчета
  */
 protected function getReportData()
 {
     return ReportDailyByPlatform::model()->getTotalsForBilling($this->dateFrom, $this->dateTo, $this->is_active);
 }
 /**
  * @return array Возвращает данные для отчета
  */
 protected function getReportData()
 {
     return ReportDailyByPlatform::model()->getTotalsByUserId($this->user_id, $this->dateFrom, $this->dateTo);
 }
 /**
  * @return array Возвращает данные для отчета
  */
 protected function getReportData()
 {
     return ReportDailyByPlatform::model()->getWithdrawalReport($this->dateFrom, $this->dateTo, $this->is_active);
 }
 /**
  * @return array Возвращает данные для отчета
  */
 protected function getReportData()
 {
     return ReportDailyByPlatform::model()->getByPeriod($this->platform->id, $this->dateFrom, $this->dateTo);
 }