Update task time tracking based on subtask time tracking

This commit is contained in:
Frederic Guillot
2015-02-07 19:39:39 -05:00
parent fa6d19928a
commit 2d890cbc71
12 changed files with 85 additions and 137 deletions

View File

@@ -56,6 +56,7 @@ use Symfony\Component\EventDispatcher\Event;
* @property \Model\TaskValidator $taskValidator
* @property \Model\CommentHistory $commentHistory
* @property \Model\SubtaskHistory $subtaskHistory
* @property \Model\SubtaskTimeTracking $subtaskTimeTracking
* @property \Model\TimeTracking $timeTracking
* @property \Model\User $user
* @property \Model\UserSession $userSession

View File

@@ -72,7 +72,6 @@ class Task extends Base
'subtasks' => $subtasks,
'task' => $task,
'values' => $values,
'timesheet' => $this->timeTracking->getTaskTimesheet($task, $subtasks),
'columns_list' => $this->board->getColumnsList($task['project_id']),
'colors_list' => $this->color->getList(),
'date_format' => $this->config->get('application_date_format'),