Esempio n. 1
0
 public function renderDetail()
 {
     $result = $this->userManager->getTotalWorkedStatistics($this->user->id);
     if (empty($result)) {
         $workedDays = 0;
         $totalWorkedHours = 0;
     } else {
         $workedDays = $result['workedDays'];
         $totalWorkedHours = $result['workedHours'];
     }
     $this->template->totalWorkedDays = $workedDays;
     $this->template->totalWorkedHours = new \InvoiceTime((int) $totalWorkedHours);
 }