Commit 68bc8086 authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

Fix warn et enchaînement des lignes corrigé

parent 7c001b6b
Loading
Loading
Loading
Loading
+4 −17
Changes for data/templates/timesheet_activity_synthesis.default.html.php: 4 added lines, 17 removed lines.
Original line number Diff line number Diff line
@@ -157,6 +157,7 @@ $labels = [
        </tr>
        </thead>
        <tbody>

        <?php foreach ($foo as $person=>$line): ?>
            <tr>
                <th><?= $person ?></th>
@@ -195,21 +196,6 @@ $labels = [
                    <?= $this->duration($line['totalResearch']) ?>
                </td>

                <pre><?= print_r($line['othersGroups']['research'], true) ?></pre>

                <?php foreach ($line['othersGroups']['research'] as $dt): ?>
                    <?php foreach ($dt['others'] as $duration): ?>
                        <td class="ce research">
                            <?= $this->duration($duration) ?>
                        </td>
                    <?php endforeach; ?>
                    <?php if( count($dt['others']) > 1): ?>
                        <td class="ce research">
                            <?= $this->duration($dt['total']) ?>
                        </td>
                    <?php endif; ?>
                <?php endforeach; ?>

                <?php foreach ($line['othersGroups'] as $group=>$dt): if($group == 'research') continue;?>
                    <?php foreach ($dt['others'] as $other=>$duration): ?>
                        <td class="<?= $group ?> <?= $duration ? 'value' : 'empty' ?>">
@@ -270,14 +256,15 @@ $labels = [
                        <?= $this->duration($totaux['others'][$code]) ?>
                    </th>
                <?php endforeach; ?>
                <?php if( count($dt['others']) > 1): ?>

                <?php if( count($dt) > 1): ?>
                    <th class="research <?= $totaux['groups']['research'] ? 'value' : 'empty' ?>">
                        <?= $this->duration($totaux['groups']['research']) ?>
                    </th>
                <?php endif; ?>
            <?php endforeach; ?>
            <th class="research <?= $totaux['totalResearch'] ? 'value' : 'empty' ?>">
                <?= $this->duration($totaux['totalResearch']) ?>
                =<?= $this->duration($totaux['totalResearch']) ?>
            </th>

            <?php foreach ($othersGroups as $group=>$dt): if($group == 'research') continue;?>