1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<?php if (! $is_ajax): ?>
<div class="page-header">
<h2><?= t('Spent time / Dates') ?></h2>
</div>
<?php endif ?>
<div class="panel">
<?php $spentTime['total'] = 0; $spentTime['open'] = 0; $spentTime['closed'] = 0; ?>
<?php foreach ($metrics as $taskId => $metric) : ?>
<?php $spentTime['total'] += $metric['open']['stt_time_spent'] + $metric['closed']['stt_time_spent']?>
<?php $spentTime['open'] += $metric['open']['stt_time_spent']?>
<?php $spentTime['closed'] += $metric['closed']['stt_time_spent']?>
<?php endforeach; ?>
<?= t('Total spent time / Dates')?> : <?= $from->format($userFormat) ?> -> <?= $to->format($userFormat) ?>
<ul>
<li>
<strong>
<?= $this->text->e($spentTime['total']) ?>
</strong>
<i>(<?=t('Open').' : '.$this->text->e($spentTime['open']) ?>
- <?= t('Closed').' : '.$spentTime['closed'] ?>)</i>
</li>
</ul>
</div>
<form method="post"
class="form-inline"
style="text-align: center"
action="<?= $this->url->href(
'AnalyticsTimesController',
'timeComparisonByDates',
array('plugin' => 'TimeMachine', 'project_id' => $project['id']))
?>"
autocomplete="off">
<?= $this->form->csrf() ?>
<?php $values['from'] = $from->getTimestamp() ?>
<?php $values['to'] = $to->getTimestamp() ?>
<?= $this->form->date(t('Start date'), 'from', $values) ?>
<?= $this->form->date(t('End date'), 'to', $values) ?>
<?= $this->modal->submitButtons(array('submitLabel' => t('Execute'))) ?>
</form>
<?php if (empty($metrics)): ?>
<p class="alert"><?= t('Not enough data to show the graph.') ?></p>
<?php else: ?>
<?php if ($paginator->isEmpty()): ?>
<p class="alert"><?= t('No tasks found.') ?></p>
<?php elseif (! $paginator->isEmpty()): ?>
<?= $this->app->component('chart-project-analytics-spent-time-by-dates', array(
'metrics' => $spentTime,
'labelSpent' => t('Hours Spent'),
'labelClosed' => t('Closed'),
'labelOpen' => t('Open'),
)) ?>
<table class="table-fixed table-small table-scrolling margin-top">
<tr>
<th class="column-5"><?= $paginator->order(t('Id'), 'tasks.id') ?></th>
<th class="column-8"><?= $paginator->order(t('Categories'), 'tasks.category_id') ?></th>
<th class="column-8"><?= $paginator->order(t('Swimlane'), 'tasks.swimlane_id') ?></th>
<th><?= $paginator->order(t('Title'), 'tasks.title') ?></th>
<th class="column-5"><?= $paginator->order(t('Status'), 'tasks.is_active') ?></th>
<th class="column-13"><?= t('Spent time / Dates')?></th>
<th class="column-9"><?= $paginator->order(t('Hours Spent'), 'tasks.time_spent') ?></th>
</tr>
<?php foreach ($paginator->getCollection() as $task): ?>
<?php if (array_key_exists($task['id'], $metrics)) : ?>
<tr>
<td class="task-table color-<?= $task['color_id'] ?>">
<?= $this->url->link('#'.$this->text->e($task['id']), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?>
</td>
<td class="task-table category-<?= $task['category_id'] ?>">
<?= $this->text->e($categories[$task['category_id']]) ?>
</td>
<td class="task-table swimlane-<?= $task['swimlane_id'] ?>">
<?= $this->text->e($swimlanes[$task['swimlane_id']]) ?>
</td>
<td>
<?= $this->url->link($this->text->e($task['title']), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, '', t('View this task')) ?>
</td>
<td>
<?php if ($task['is_active'] == \Kanboard\Model\TaskModel::STATUS_OPEN): ?>
<?php $isActive = "open" ?>
<?= t('Open') ?>
<?php else: ?>
<?php $isActive = "closed" ?>
<?= t('Closed') ?>
<?php endif ?>
</td>
<td>
<?= $this->text->e($metrics[$task['id']][$isActive]['stt_time_spent']) ?>
</td>
<td>
<?= $this->text->e($metrics[$task['id']][$isActive]['time_spent']) ?>
</td>
</tr>
<?php endif; ?>
<?php endforeach ?>
</table>
<?= $paginator ?>
<?php endif ?>
<?php endif ?>
|