110 lines
5.1 KiB
PHP
110 lines
5.1 KiB
PHP
<?php $this->titre = "INTER-SANTE - Carte Réimprimées"; ?>
|
|
|
|
<legend> <?= _("Gestion des Cartes d'un Assuré (Ré-impression)") ?> </legend>
|
|
|
|
<button class="sr-only" id="btn_new_carte" name="btn_new_carte" type="button" data-bs-toggle="modal" data-bs-target="#pop_new_carte" style='font-size:10pt;' > </button>
|
|
<button class="sr-only" id="btn_modif_carte" name="btn_modif_carte" type="button" data-bs-toggle="modal" data-bs-target="#pop_modif_carte" style='font-size:10pt;' > </button>
|
|
<INPUT class="sr-only" id="idBeneficiaireCarte" NAME="idBeneficiaireCarte" TYPE="text" >
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"> <?= _("No Carte") ?> </td>
|
|
<td width="15%"> <INPUT style='text-align:center; font-size:10pt;' class="form-control" type="text" id="numeroBeneficiaire_carte" name="numeroBeneficiaire_carte" value="<?= $_SESSION['numeroBeneficiaire_C'] ?>" style='font-size:10pt;' readonly> </td>
|
|
|
|
|
|
<td align="center" width="10%"> <?= _("Bénéficiaire") ?> </td>
|
|
<td width="30%"> <INPUT style='text-align:center; font-size:10pt;' class="form-control" type="text" value="<?= $_SESSION['beneficiaire_C'] ?>" style='font-size:10pt;' readonly> </td>
|
|
|
|
<td width="3%"> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:afficher_liste_carte_beneficiaire();"> <?= _("Actualiser...") ?> </button> </td>
|
|
|
|
<td width="3%"> </td>
|
|
<td> <input class = "form-control btn btn-info" type="button" value="<?= _("Créer...") ?>" onClick="javascript:init_creer_carte();" style='font-size:10pt;' > </td>
|
|
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_liste_carte">
|
|
|
|
</div>
|
|
|
|
<div class="modal fade" id="pop_new_carte" role="dialog">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
<button id="btn_close_pop_carte" name="btn_close_pop_carte" type="button" class="close" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
<h4 class="modal-title"> <?= _("Nouvelle Carte") ?> </h4>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"> <?= _("Date Carte") ?> </td>
|
|
<td width="20%"> <INPUT style='text-align:center; font-size:11pt;' class="form-control datepicker" TYPE="text" id="dateCarteNew" NAME="dateCarteNew" value="<?= $this->datejourfr ?>" > </td>
|
|
|
|
<td align="center" width="10%"> <?= _("Montant") ?> </td>
|
|
<td width="15%"> <INPUT style='text-align:center; font-size:11pt;' class="form-control" TYPE="text" value = '<?= format_N($_SESSION['fraisCarteImp']) ?>' readonly > </td>
|
|
<td align='center' width="15%">
|
|
<input class="form-control"style="text-align: center; font-size:10pt;" type="number" id="montantCarteNew" name="montantCarteNew"
|
|
onBlur="controle_numerique(this);" value = '<?= $_SESSION['fraisCarteImp'] ?> '>
|
|
</td>
|
|
|
|
<td> </td>
|
|
<td> <input class = "form-control btn btn-info" type="button" value="<?= _("Créer...") ?>" onClick="javascript:creer_carte();" style='font-size:11pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade" id="pop_modif_carte" role="dialog">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
<button id="btn_close_pop_modif_carte" name="btn_close_pop_modif_carte" type="button" class="close" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
<h4 class="modal-title"> <?= _("Modification Carte") ?> </h4>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"> <?= _("Date Carte") ?> </td>
|
|
<td width="20%"> <INPUT style='text-align:center; font-size:11pt;' class="form-control datepicker" TYPE="text" id="dateCarteModif" NAME="dateCarteModif" > </td>
|
|
|
|
<td align="center" width="10%"> <?= _("Montant") ?> </td>
|
|
<td width="15%"> <INPUT id="montantCarte_f" name="montantCarte_f" style='text-align:center; font-size:11pt;' class="form-control" TYPE="text" readonly > </td>
|
|
<td align='center' width="15%">
|
|
<input class="form-control"style="text-align: center; font-size:10pt;" type="number" id="montantCarteModif" name="montantCarteModif"
|
|
onBlur="controle_numerique(this);" >
|
|
</td>
|
|
|
|
<td> </td>
|
|
<td> <input class = "form-control btn btn-info" type="button" value="<?= _("Modifier...") ?>" onClick="javascript:modifier_carte_beneficiaire();" style='font-size:11pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|