production/Vue/Ajaxhistoriqueprestationsbeneficiaire/index.php
2025-12-01 16:12:12 +00:00

43 lines
2.0 KiB
PHP
Executable File

<?php
$numeroBeneficiaire = $beneficiaire['numeroBeneficiaire'];
?>
<div class="modal-dialog modal-lg" style="max-width: 85%;" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal" >&times;</button>
<legend class="modal-title text-center"><?= _("Historique des prestations du béneficiaire") ?></legend>
</div>
<div class="modal-body">
<FORM name= "formfichebeneficiaire">
<table class="table table-responsive table-condensed" style='font-size:8pt;' >
<tbody>
<tr>
<td > <?= _("Période du") ?> </td>
<td ><INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="d1" NAME="d1" value="<?= dateLang($_SESSION['dUneSemaineAvant_C'], $_SESSION['lang']) ?>" required AUTOCOMPLETE="OFF"></td>
<td align="center" > <?= _("Au") ?> </td>
<td ><INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="d2" NAME="d2" value="<?= dateCouranteLang($_SESSION['lang']) ?>" required AUTOCOMPLETE="OFF"></td>
<td align="center"> <?= _("Garantie") ?> </td>
<td >
<select class="form-select" data-live-search="true" id="codeGarantie" NAME="codeGarantie"style='font-size:10pt; text-align:center;' >
<?php liste_options_consultation($garanties, ""); ?>
</SELECT>
</td>
<td colspan="2"> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:afficherhistoriquegarantie('<?= $numeroBeneficiaire ?>');"><?= _("Actualiser...") ?></button> </td>
</tr>
</tbody>
</table>
<div id="div_prestation">
</div>
</FORM>
</div>
<div class="modal-footer">
<button type="button" id="btn-fermer-modal" class="btn btn-default" data-bs-dismiss="modal" ><?= _("Fermer") ?></button>
</div>
</div>
</div>