51 lines
2.0 KiB
PHP
Executable File
51 lines
2.0 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER SANTE - Provisions de Sinistres";
|
|
?>
|
|
|
|
|
|
<legend> <?= _("Consultation des encaissements en attente") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("Période du") ?> </td>
|
|
<td width="25%" ><INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="debut" NAME="debut" value="<?= $_SESSION['debutExerciceFr_C'] ?>" required AUTOCOMPLETE="OFF"></td>
|
|
|
|
<td width="5%" align="center"> <?= _("Au") ?> </td>
|
|
<td width="25%" ><INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="fin" NAME="fin" value="<?= dateCouranteLang($_SESSION['lang']) ?>" required AUTOCOMPLETE="OFF"></td>
|
|
|
|
<td> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:lister_encaissements_attente();"><?= _("Actualiser...") ?></button> </td>
|
|
|
|
<td> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:exporter_encaissements_attente();"><?= _("Exporter...") ?></button> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_liste">
|
|
</div>
|
|
|
|
<button class="sr-only" id="btn_pop" name="btn_pop" type="button" data-bs-toggle="modal" data-bs-target="#div_pop" > </button>
|
|
|
|
<div class="modal fade" id="div_pop" role="dialog" data-bs-backdrop="static" data-bs-keyboard="false" >
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
<button id="btn_close_pop" name="btn_close_pop" type="button" class="close" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<div id="div_deatil_pop">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|