garant/Vue/Consultergccarte/index.php
2025-12-05 10:57:03 +00:00

99 lines
4.2 KiB
PHP
Executable File

<?php
$this->titre = "INTER-SANTE - ". _("Création Carte");
?>
<legend> <?= _("Gestion des Cartes d'un Assuré") ?></legend>
<button class="sr-only" id="btn_new_carte" name="btn_new_carte" type="button" data-toggle="modal" data-target="#pop_new_carte" style='font-size:10pt;' > </button>
<button class="sr-only" id="btn_modif_carte" name="btn_modif_carte" type="button" data-toggle="modal" data-target="#pop_modif_carte" style='font-size:10pt;' > </button>
<INPUT class="sr-only" style='text-align:center; font-size:11pt;' class="form-control" TYPE="text" id="idBeneficiaire_gc" NAME="idBeneficiaire_gc" >
<INPUT class="sr-only" style='text-align:center; font-size:11pt;' class="form-control" TYPE="text" id="idGcCarte_gc" NAME="idGcCarte_gc" >
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
<tbody>
<tr>
<td width="10%"> <?= _("No Carte") ?> </td>
<td width="30%"> <INPUT style='text-align:center; font-size:10pt;' class="form-control" type="text" id="numeroBeneficiaire_gc" name="numeroBeneficiaire_gc" onkeypress="javascript:ctrlkeypress_liste_carte_gc(event);" > </td>
<td width="3%"> </td>
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:afficher_liste_carte_gc();"> <?= _("Rechercher...") ?> </button> </td>
</tr>
</tbody>
</table>
<div id="div_liste_carte_gc">
</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-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="20%"> <?= _("Date Carte") ?> </td>
<td width="30%"> <INPUT style='text-align:center; font-size:11pt;' class="form-control datepicker" TYPE="text" id="dateCarte" NAME="dateCarte" value="<?= $this->datejourfr ?>" > </td>
<td> </td>
<td> <input class = "form-control btn btn-info" type="button" value="<?= _("Créer...") ?>" onClick="javascript:creer_carte_gc();" style='font-size:11pt;' > </td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-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-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="dateCarte_gc" NAME="dateCarte_gc" > </td>
<td align="center" width="10%"> <?= _("Montant") ?> </td>
<td width="15%"> <INPUT style='text-align:center; font-size:11pt;' class="form-control" TYPE="text" id="montantCarte_f" NAME="montantCarte_f" readonly > </td>
<td align='center' width="15%">
<input class="form-control"style="text-align: center; font-size:10pt;" type="number" id="montantCarte_gc" name="montantCarte_gc"
onBlur="controle_numerique(this);" >
</td>
<td> </td>
<td> <input class = "form-control btn btn-info" type="button" value="<?= _("Modifier...") ?>" onClick="javascript:modifier_carte_gc();" style='font-size:11pt;' > </td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal"><?= _("Fermer") ?></button>
</div>
</div>
</div>
</div>