45 lines
1.8 KiB
PHP
45 lines
1.8 KiB
PHP
<?php $this->titre = "INTER-SANTE - Historique généeration bons"; ?>
|
|
|
|
<input class="form-control" style="text-align: center; font-size:10pt;" type="text" id="nbligne" name="nbligne" value="Nombre de lignes affichées : 0" readonly>
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<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 width="10%" align="center" > <?= _("Période du") ?> </td>
|
|
<td width="15%"><INPUT class="form-control datepicker" TYPE="text" id="d1" NAME="d1" value="<?= dateLang($_SESSION['p_d1_C']) ?>" required AUTOCOMPLETE="OFF" style='font-size:10pt;'></td>
|
|
|
|
<td width="5%" align="center" > <?= _("au") ?> </td>
|
|
<td width="15%"><INPUT class="form-control datepicker" TYPE="text" id="d2" NAME="d2" value="<?= dateLang($_SESSION['p_d2_C']) ?>" required AUTOCOMPLETE="OFF" style='font-size:10pt;'></td>
|
|
|
|
<td> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:listergenerationbon();"> <?= _("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;">Date</th>
|
|
<th style="text-align: center;"> <?= _("No Départ") ?> </th>
|
|
<th style="text-align: center;"> <?= _("No Fin") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Généré par") ?> </th>
|
|
<th style="text-align: center;"> <?= _("Réceptionnaire") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|