This commit is contained in:
KONE SOREL 2025-12-31 18:57:08 +00:00
parent 82d7298d1c
commit 0bf87fcff6

View File

@ -0,0 +1,29 @@
<div id="div_tableau_prestation" class="mt-3">
<div class="table-responsive">
<table class="table table-sm table-striped table-bordered table-hover text-center custom-table mb-0">
<thead class="table-light">
<tr>
<th class="w-50 align-middle" rowspan="2"><?= _("Type de Prestataire") ?></th>
<th class="w-50" colspan="3"><?= _("Tickets Modérateurs (%)") ?></th>
</tr>
<tr>
<th class="w-15"><?= _("Base") ?></th>
<th class="w-15"><?= _("Racheté") ?></th>
<th class="w-15"><?= _("En vigueur") ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($tableau_prestations as $prestation):
$idPrestation = $this->nettoyer($prestation['id']);
?>
<tr class="align-middle">
<td><?= $this->nettoyer($prestation['reseausoin']) ?></td>
<td><?= $this->nettoyer($prestation['tmBase']) ?></td>
<td><?= $this->nettoyer($prestation['tauxRachatTm']) ?></td>
<td><?= $this->nettoyer($prestation['tm']) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>