48 lines
2.3 KiB
PHP
Executable File
48 lines
2.3 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - Historique Suppression Empreintes Digitales";
|
|
?>
|
|
|
|
<input class="form-control" style="text-align: center; font-size:10pt;" type="text" id="nbligne" name="nbligne" value="Historique Suppression Empreintes Digitales" readonly>
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="8%"> <?= _("Période du") ?> </td>
|
|
<td width="15%"> <INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="debut" NAME="debut" value="<?= dateLang($_SESSION['dUneSemaineAvant_C'], $_SESSION['p_lang']) ?>" required AUTOCOMPLETE="OFF" </td>
|
|
|
|
<td width="3%" align="center"> <?= _("au") ?> </td>
|
|
<td width="15%"> <INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="fin" NAME="fin" value="<?= dateCouranteLang($_SESSION['p_lang']) ?>" required AUTOCOMPLETE="OFF" > </td>
|
|
|
|
<td> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:histsupprempreinte();"> <?= _("Afficher résultats...") ?> </button> </td>
|
|
|
|
<td> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:histsupprempreinte_export();"> <?= _("Exporter vers Excel...") ?> </button> </td>
|
|
|
|
<td> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:histo_enrollement_empreinte();"> <?= _("Exporter historique enrôlement...") ?> </button> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_detail_suppr_empreinte">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> Date </th>
|
|
<th style='text-align:center'> <?= _("Motif") ?> </th>
|
|
<th style='text-align:center'> <?= _("Client") ?> </th>
|
|
<th style='text-align:center'> <?= _("ID Police") ?> </th>
|
|
<th style='text-align:center'> <?= _("Adhérent") ?> </th>
|
|
<th colspan="2" style='text-align:center'> <?= _("Bénéficiaire") ?> </th>
|
|
<th style='text-align:center'> <?= _("Responsable") ?> </th>
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|