33 lines
1.0 KiB
PHP
Executable File
33 lines
1.0 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") ?> </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") ?> </th>
|
|
<th style="text-align:center" > <?= _("Type de gestion") ?> </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>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
|