prestation/Vue/Ajaxparamseuilalerte/affichergarantieproduitcons.php
2025-12-01 18:54:33 +00:00

34 lines
1.1 KiB
PHP

<div id="div_garantieproduit">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th rowspan="2" style='text-align:center'> <?= _("Garantie") ?> </th>
<th colspan="2" style='text-align:center'> <?= _("Seuil") ?> </th>
</tr>
<tr>
<th style='text-align:center'> <?= _("Taux") ?> </th>
<th style='text-align:center'> <?= _("Valeurs") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($garanties_avec_seuils as $garanties_avec_seuil):
$id = $garanties_avec_seuil['id'];
$tauxSeuilAlerte = $garanties_avec_seuil['tauxSeuilAlerte'];
$seuilAlerte = $garanties_avec_seuil['seuilAlerte'];
?>
<tr valign="top">
<td align='center'><?= $this->nettoyer($garanties_avec_seuil['garantie']) ?></td>
<td <th width="15%" align='center'><?= $tauxSeuilAlerte ?></td>
<td <th width="20%" align='center'><?= format_N($seuilAlerte) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>