xref: /plugin/bez/tpl/activity_report.php (revision eb2e6be9c74b2df263bd0a7ed247ee70c3d7cbd1)
17c304d96SSzymon Olewniczak<h1 class="bez_report">
2ff14b107SSzymon Olewniczak<?php echo $tpl->getLang('activity_report') ?>
37c304d96SSzymon Olewniczak</h1>
47c304d96SSzymon Olewniczak
5*eb2e6be9SSzymon Olewniczak<div class="bez_filter_form">
6b331b892SSzymon Olewniczak    <form action="<?php echo $tpl->url('activity_report') ?>" method="post">
7b331b892SSzymon Olewniczak        <span class="datepair">
8b331b892SSzymon Olewniczak            <label>od: <input name="from" value="<?php echo $tpl->value('from') ?>" class="date start" style="width: 90px"></label>
9b331b892SSzymon Olewniczak            <label>do: <input name="to" value="<?php echo $tpl->value('to') ?>" class="date end" style="width: 90px"></label>
10b331b892SSzymon Olewniczak        </span>
11b331b892SSzymon Olewniczak        <button>Pokaż</button>
12b331b892SSzymon Olewniczak    </form>
13b331b892SSzymon Olewniczak
14b331b892SSzymon Olewniczak</div>
15b331b892SSzymon Olewniczak
16ff14b107SSzymon Olewniczak<h2><?php echo $tpl->getLang('activity_in_issues') ?></h2>
17b331b892SSzymon Olewniczak
18b2c9de2bSSzymon Olewniczak<table class="bez_sumarise">
197c304d96SSzymon Olewniczak	<tr>
20ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('user') ?></th>
21ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('reporter') ?></th>
22ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('coordinator') ?></th>
23ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('commentator') ?></th>
24ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('executor') ?></th>
25ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('report_total') ?></th>
267c304d96SSzymon Olewniczak	</tr>
277c304d96SSzymon Olewniczak	<?php $reporter = 0 ?>
287c304d96SSzymon Olewniczak	<?php $total_total = 0 ?>
290d676982SSzymon Olewniczak	<?php $commentator = 0 ?>
30b2c9de2bSSzymon Olewniczak	<?php $coordinator = 0 ?>
31b2c9de2bSSzymon Olewniczak	<?php $executor = 0 ?>
32ff14b107SSzymon Olewniczak	<?php foreach ($tpl->get('thread_involvement') as $involvement): ?>
337c304d96SSzymon Olewniczak		<tr>
34b2c9de2bSSzymon Olewniczak			<td>
35ff14b107SSzymon Olewniczak                <?php echo $tpl->user_name($involvement['user_id']) ?>
36b2c9de2bSSzymon Olewniczak			</td>
37*eb2e6be9SSzymon Olewniczak			<td><?php echo $involvement['original_poster_sum'] ?></td>
38*eb2e6be9SSzymon Olewniczak			<td><?php echo $involvement['coordinator_sum'] ?></td>
39*eb2e6be9SSzymon Olewniczak			<td><?php echo $involvement['commentator_sum'] ?></td>
40*eb2e6be9SSzymon Olewniczak			<td><?php echo $involvement['task_assignee_sum'] ?></td>
41*eb2e6be9SSzymon Olewniczak            <?php $total = $involvement['original_poster_sum'] + $involvement['coordinator_sum'] + $involvement['commentator_sum'] + $involvement['task_assignee_sum'] ?>
42*eb2e6be9SSzymon Olewniczak            <td><?php echo $total ?></td>
437c304d96SSzymon Olewniczak		</tr>
44*eb2e6be9SSzymon Olewniczak		<?php $reporter += $involvement['original_poster_sum'] ?>
45*eb2e6be9SSzymon Olewniczak		<?php $coordinator += $involvement['coordinator_sum'] ?>
46*eb2e6be9SSzymon Olewniczak        <?php $commentator += $involvement['commentator_sum'] ?>
47*eb2e6be9SSzymon Olewniczak		<?php $executor += $involvement['task_assignee_sum'] ?>
48*eb2e6be9SSzymon Olewniczak		<?php $total_total += $total ?>
497c304d96SSzymon Olewniczak	<?php endforeach ?>
50b2c9de2bSSzymon Olewniczak	<tr>
51ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('report_total') ?></th>
52b2c9de2bSSzymon Olewniczak		<td><?php echo $reporter ?></td>
530d676982SSzymon Olewniczak		<td><?php echo $coordinator ?></td>
540d676982SSzymon Olewniczak        <td><?php echo $commentator ?></td>
550d676982SSzymon Olewniczak		<td><?php echo $executor ?></td>
560d676982SSzymon Olewniczak        <td><?php echo $total_total ?></td>
57b2c9de2bSSzymon Olewniczak	</tr>
587c304d96SSzymon Olewniczak</table>
59ef159648SSzymon Olewniczak<?php
60ef159648SSzymon Olewniczak    if ($reporter !== 0) {
61ef159648SSzymon Olewniczak        $kpi = $total_total/$reporter;
62ef159648SSzymon Olewniczak    } else {
63ef159648SSzymon Olewniczak        $kpi = 0;
64ef159648SSzymon Olewniczak    }
65ef159648SSzymon Olewniczak?>
66ef159648SSzymon Olewniczak<p style="font-weight: bold">KPI = <?php echo sprintf("%.2f", $kpi) ?></p>
67b2c9de2bSSzymon Olewniczak
68b2c9de2bSSzymon Olewniczak
69ff14b107SSzymon Olewniczak<h2><?php echo $tpl->getLang('activity_in_tasks') ?></h2>
70b2c9de2bSSzymon Olewniczak<table class="bez_sumarise">
71b2c9de2bSSzymon Olewniczak	<tr>
72ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('user') ?></th>
73ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('reporter') ?></th>
74ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('commentator') ?></th>
75ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('executor') ?></th>
76ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('report_total') ?></th>
77b2c9de2bSSzymon Olewniczak	</tr>
78ff14b107SSzymon Olewniczak	<?php $reporter = 0 ?>
79ff14b107SSzymon Olewniczak	<?php $commentator = 0 ?>
80ff14b107SSzymon Olewniczak	<?php $executor = 0 ?>
81ff14b107SSzymon Olewniczak    <?php $total_total = 0 ?>
82ff14b107SSzymon Olewniczak	<?php foreach ($tpl->get('task_involvement') as $involvement): ?>
83b2c9de2bSSzymon Olewniczak		<tr>
84b2c9de2bSSzymon Olewniczak			<td>
85ff14b107SSzymon Olewniczak                <?php echo $tpl->user_name($involvement['user_id']) ?>
86b2c9de2bSSzymon Olewniczak			</td>
87*eb2e6be9SSzymon Olewniczak			<td><?php echo $involvement['original_poster_sum'] ?></td>
88*eb2e6be9SSzymon Olewniczak			<td><?php echo $involvement['commentator_sum'] ?></td>
89*eb2e6be9SSzymon Olewniczak			<td><?php echo $involvement['assignee_sum'] ?></td>
90*eb2e6be9SSzymon Olewniczak            <?php $total = $involvement['original_poster_sum'] + $involvement['commentator_sum'] + $involvement['assignee_sum'] ?>
91*eb2e6be9SSzymon Olewniczak			<td><?php echo $total ?></td>
92*eb2e6be9SSzymon Olewniczak			<?php $reporter += $involvement['original_poster_sum'] ?>
93*eb2e6be9SSzymon Olewniczak			<?php $commentator += $involvement['commentator_sum'] ?>
94*eb2e6be9SSzymon Olewniczak			<?php $executor += $involvement['assignee_sum'] ?>
95*eb2e6be9SSzymon Olewniczak            <?php $total_total += $total ?>
96b2c9de2bSSzymon Olewniczak		</tr>
97b2c9de2bSSzymon Olewniczak	<?php endforeach ?>
98b2c9de2bSSzymon Olewniczak	<tr>
99ff14b107SSzymon Olewniczak		<th><?php echo $tpl->getLang('report_total') ?></th>
100ff14b107SSzymon Olewniczak		<td><?php echo $reporter ?></td>
101ff14b107SSzymon Olewniczak		<td><?php echo $commentator ?></td>
102ff14b107SSzymon Olewniczak		<td><?php echo $executor ?></td>
103ff14b107SSzymon Olewniczak		<td><?php echo $total_total ?></td>
104b2c9de2bSSzymon Olewniczak	</tr>
105b2c9de2bSSzymon Olewniczak</table>
106