prestation/Vue/Receptionbons/index.php
2025-12-05 10:42:46 +00:00

69 lines
2.8 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">
<input class="form-control" style="text-align: center; font-size:10pt;" type="text" id="nbligne" name="nbligne"
value="<?= _("Nombre de bons affichés") . " : 0" ?>" readonly>
<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" onChange="changer_type_bon();" style='font-size:10pt;'>
<?php liste_options($typebon,""); ?>
</SELECT>
</td>
<td width="5%" align="center"> <?= _("No Départ") ?> </td>
<td width="10%"> <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="5%" align="center"> <?= _("No Fin") ?> </td>
<td width="10%"><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") ?> </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;">Type</th>
<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") ?> </th>
<th style="text-align: center;">No Benef</th>
<th style="text-align: center;"> <?= _("Nom Bénéf") ?> </th>
<th style="text-align: center;"> <?= _("Date Util") ?> </th>
<th style="text-align: center;"> <?= _("Util par") ?> </th>
<th style="text-align: center;">Recept</th>
<th style="text-align: center;"> <?= _("Rempl") ?> </th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<input class="sr-only" type="text" id="nbligne_info" name="nbligne_info" value="0" >
</div>