63 lines
2.4 KiB
PHP
Executable File
63 lines
2.4 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - "._("Afficher bons") ;
|
|
?>
|
|
|
|
<INPUT class="sr-only" TYPE="text" id="idBon_C" name="idBon_C">
|
|
<INPUT class="sr-only" TYPE="text" id="numeroBon_C" name="numeroBon_C">
|
|
<INPUT class="sr-only" TYPE="text" id="motifAnnulation_C" name="motifAnnulation_C">
|
|
<INPUT class="sr-only" TYPE="text" id="codeEtatBon_C" name="codeEtatBon_C">
|
|
|
|
<legend> <?= _("Filtres pour afficher les bons") ?> </legend>
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" > <?= _("Type") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeTypeBon" NAME="codeTypeBon" required AUTOCOMPLETE="OFF" style='font-size:10pt;'>
|
|
<?php liste_options($typebon,""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center"> <?= _("No Départ") ?> </td>
|
|
<td width="15%"> <input class="form-control"style="text-align: center; font-size:10pt;" type="number" id="noDepart" name="noDepart" value="0"
|
|
onBlur="controle_numerique(this);" ></td>
|
|
|
|
<td width="10%" align="center"> <?= _("No Fin") ?> </td>
|
|
<td width="15%"><input class="form-control" style="text-align: center; font-size:10pt;" type="number" id="noFin" name="noFin" value="0"
|
|
onBlur="controle_numerique(this);" ></td>
|
|
|
|
|
|
<td width="5%" align="center"> <?= _("Etat Bons") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeEtatBon" NAME="codeEtatBon" style='font-size:10pt;'>
|
|
<?php liste_options_consultation($etatbon, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:afficherbon();"> <?= _("Actualiser") ?> </button> </td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_bonpecs">
|
|
<table class="table table-responsive table-condensed table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align: center;"> <?= _("No Bon") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Attribution") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Réception") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Reçu par") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Etat Bons") ?> </th>
|
|
<th style="text-align: center;"> No Benef </th>
|
|
<th style="text-align: center;"> <?= _("Bénéficiaire") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Utilisation") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Date Util") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|