Skip to content
Snippets Groups Projects
Commit 6cb72e67 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Conservation des fractions pour les types d'intervention (petit oubli réparé)

parent afed0f43
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
use Application\Entity\Db\TypeInterventionStatut; use Application\Entity\Db\TypeInterventionStatut;
use Application\Provider\Privilege\Privileges; use Application\Provider\Privilege\Privileges;
use UnicaenApp\Util; use UnicaenApp\Util;
use Application\Filter\StringFromFloat;
/** /**
* @var $this \Application\View\Renderer\PhpRenderer * @var $this \Application\View\Renderer\PhpRenderer
...@@ -30,10 +31,10 @@ $canEdit = $this->isAllowed(Privileges::getResourceId(Privileges::TYPE_INTERVENT ...@@ -30,10 +31,10 @@ $canEdit = $this->isAllowed(Privileges::getResourceId(Privileges::TYPE_INTERVENT
<?= $tis->getStatutIntervenant()->getLibelle() ?>&nbsp; <?= $tis->getStatutIntervenant()->getLibelle() ?>&nbsp;
</td> </td>
<td> <td>
<?= Util::formattedNumber($tis->getTauxHETDService()) ?> <?= StringFromFloat::run($tis->getTauxHETDService()) ?>
</td> </td>
<td> <td>
<?= Util::formattedNumber($tis->getTauxHETDComplementaire()) ?> <?= StringFromFloat::run($tis->getTauxHETDComplementaire()) ?>
</td> </td>
<?php if ($canEdit): ?> <?php if ($canEdit): ?>
<td> <td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment