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