production/Vue/Parambons/index.php
2025-12-01 16:12:12 +00:00

41 lines
1.4 KiB
PHP
Executable File

<?php $this->titre = "INTER SANTE - Durée de vie des bons"; ?>
<script type="text/javascript">
</script>
<legend> <?= _("PARAMETRES DE GESTION DES BONS DE PRISE EN CHARGE DU CENTRE DE GESTION") ?> </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" > <?= _("Type de bon") ?> </th>
<th style="text-align:center" > <?= _("Durée Vie (Jour)") ?> </th>
<th style="text-align:center" > <?= _("Type de gestion") ?> </th>
<th style="text-align:center" > <?= _("Modifier") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($typebons as $typebon):
$idTypebon = $this->nettoyer($typebon['id']);
$codeTypeBon = $this->nettoyer($typebon['codeTypeBon']);
?>
<tr valign="top">
<td align="center"> <?= $this->nettoyer($typebon['libelleTypebon']) ?></td>
<td align="center"><?= $this->nettoyer($typebon['dureeVie']) ?></td>
<td align="center"> <?= $this->nettoyer($typebon['libelleTypeGestionBon']) ?></td>
<td align='center'>
<input style="font-size:10pt;" class = "form-control btn btn-primary" type="button" value="<?= _("Modifier") ?>"
onClick="javascript:modifier_type_bon(<?= $idTypebon ?>)">
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<div id="div_maj_type_bon">
</div>