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

98 lines
3.3 KiB
PHP
Executable File

<div id="div_ente_requete">
<legend> <?= _("SINISTRES GESTION CONFIEE CUMUL PAR MOIS") ?> </legend>
<button id="btn_pop_consulter_facture" NAME="btn_pop_consulter_facture" type="button" class="sr-only" data-bs-toggle="modal" data-bs-target="#pop_consulter_facture"> </button>
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
<tbody>
<tr>
<td width="8%" > <?= _("Assureur") ?> </td>
<td>
<SELECT style='font-size:10pt;' onChange="choisir_gc_assureur();" class="form-control" id="codeGcAssureur" NAME="codeGcAssureur" autofocus>
<?php liste_options($gc,"JUB"); ?>
</SELECT>
</td>
<td align="center" width="5%" > <?= _("Début") ?> </td>
<td>
<SELECT class="form-control" id="codeMois1" NAME="codeMois1" required AUTOCOMPLETE="OFF" style='font-size:9pt;' >
<?php liste_options($periode, $_SESSION['codeMois1_C']); ?>
</SELECT>
</td>
<td>
<SELECT class="form-control" id="codeExercice1" NAME="codeExercice1" required AUTOCOMPLETE="OFF" style='font-size:9pt;' >
<?php liste_options($exercice, $_SESSION['codeExercice1_C']); ?>
</SELECT>
</td>
<td width="5%" align="center"> <?= _("Fin") ?> </td>
<td>
<SELECT class="form-control" id="codeMois2" NAME="codeMois2" required AUTOCOMPLETE="OFF" style='font-size:9pt;' >
<?php liste_options($periode2, $_SESSION['codeMois2_C']); ?>
</SELECT>
</td>
<td>
<SELECT class="form-control" id="codeExercice2" NAME="codeExercice2" required AUTOCOMPLETE="OFF" style='font-size:9pt;' >
<?php liste_options($exercice2, $_SESSION['codeExercice2_C']); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="4"> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:requetes_factures_gc_cumul();"> <?= _("Afficher résultats...") ?> </button> </td>
<td colspan="1">
<input class="form-control" style="text-align: center; font-size:9pt;" type="text" id="nbligne" name="nbligne" value="Lignes : 0" readonly>
</td>
<td colspan="3"> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:requetes_factures_gc_cumul_export();"> <?= _("Exporter vers Excel...") ?> </button> </td>
</tr>
</tbody>
</table>
<div id="div_detail_requete">
</div>
<div id="div_export_a">
</div>
<div class="modal fade" id="pop_consulter_facture" role="dialog">
<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>
<h4 class="modal-title"> <?= _("Consultation facture...") ?> </h4>
</div>
<div class="modal-body">
<div id="div_consulter_facture_pop">
</div>
<div id="div_facture_detail">
</div>
</div>
<div class="modal-footer">
<button id="close_pop" name="close_pop" type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
</div>
</div>
</div>
</div>
</div>