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

46 lines
2.0 KiB
PHP

<?php $this->titre = "INTER-SANTE - Barème de prise en charge"; ?>
<legend> <?= _("Barème de prise en charge") ?> </legend>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive tabliste compact" style="font-size:10pt;">
<thead>
<tr>
<th style="text-align:center" >No</th>
<th style="text-align:center" > <?= _("Libellé") ?> </th>
<th style="text-align:center" > <?= _("Taux") ?> </th>
<th style="text-align:center" > <?= _("Territoire") ?> </th>
<th style="text-align:center" > <?= _("Modifier") ?> </th>
<th style="text-align:center" > <?= _("Dupliquer") ?> </th>
<th style="text-align:center" > <?= _("Supprimer") ?> </th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
foreach ($baremes as $v):
$idBaremes = $this->nettoyer($v['id']);
$observation = $this->nettoyer($v['observationBareme']);
if(!empty($observation)){
$libelle = $observation;
}else{
$libelle = $this->nettoyer($v['libelle']);
}
?>
<tr valign="top">
<td align="center"> <?= ++$i; ?> </td>
<td> <?= $libelle ?> </td>
<td align="center"> <?= $this->nettoyer($v['tauxRemboursement']) ?> </td>
<td align="center"> <?= $this->nettoyer($v['codeTerritoire']) ?> </td>
<td align="center" width="10%"> <input class = "form-control btn btn-primary" style="font-size:10pt;" type="button" value="<?= _("Modifier") ?>" onclick="javascript:modifier_baremepriseencharge(<?= $idBaremes ?>);"> </td>
<td align="center" width="10%"> <input class = "form-control btn btn-warning" style="font-size:10pt;" type="button" value="<?= _("Dupliquer") ?>" onclick="javascript:dupliquer_baremepriseencharge(<?= $idBaremes ?>);"> </td>
<td align="center" width="10%"> <input class = "form-control btn btn-danger" style="font-size:10pt;" type="button" value="<?= _("Supprimer") ?>" onclick="javascript:supprimer_baremepriseencharge(<?= $idBaremes ?>);"> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<div id="div_dupliquer_bareme" class="modal fade">
</div>