radiantrh/Vue/Ajaxconsultertableauprestation/index.php
2026-01-19 09:44:59 +00:00

33 lines
1.3 KiB
PHP

<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']);
$reseausoin = est_anglophone()
? $this->nettoyer($prestation['reseausoinEng'])
: $this->nettoyer($prestation['reseausoin']);
?>
<tr class="align-middle">
<td><?= $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>