prestation/Vue/Plafondavantfacturekinecso/index.php
2025-12-01 18:54:33 +00:00

33 lines
1.2 KiB
PHP

<?php
$this->titre = "INTER-SANTE - Limites avant facturation";
?>
<script type="text/javascript">
</script>
<div id="div_liste">
<legend> <?= _("Limites avant la facture") ?> </legend>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th style="text-align:center"> <?= _("Garantie") ?> </th>
<th style="text-align:center"> <?= _("Limites") ?> </th>
<th style="text-align:center"> <?= _("Consommations") ?> </th>
<th style="text-align:center"> <?= _("Solde") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($garantieadherents as $garantieadherent):?>
<tr valign="top">
<td align='center'> <?= $this->nettoyer($garantieadherent['garantie'])?> </td>
<td align='center'><?= format_N($this->nettoyer($garantieadherent['plafond'])) ?></td>
<td align='center'><?= format_N($this->nettoyer($garantieadherent['consommation'])) ?></td>
<td align='center'><?= format_N($this->nettoyer($garantieadherent['solde'])) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>