28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<div id="div_tableau_prestation">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th width="55%" rowspan="2" style='text-align:center'> <?= _("Type de Prestataire") ?> </th>
|
|
<th width="45%" colspan="3" style='text-align:center'> <?= _("Tickets Modérateurs (%)") ?> </th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th width="15%" style='text-align:center'> <?= _("Base") ?> </th>
|
|
<th width="15%" style='text-align:center'> <?= _("Racheté") ?> </th>
|
|
<th width="15%" style='text-align:center'> <?= _("En vigueur") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($tableau_prestations as $prestation):
|
|
$idPrestation=$this->nettoyer($prestation['id']);
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'><?= $this->nettoyer($prestation['reseausoin']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($prestation['tmBase']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($prestation['tauxRachatTm']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($prestation['tm']) ?></td>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|