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

80 lines
3.2 KiB
PHP
Executable File

<?php
$this->titre = "INTER-SANTE - Créer un nouveau Barème de prise en charge";
$libelle = "BAREME DE PRISE EN CHARGE A ";
?>
<legend> <?= _("Nouveau Barème de prise en charge") ?> </legend>
<table class="table table-responsive table-condensed" style="font-size:10pt;">
<tbody>
<tr>
<td width="10%" class="required AUTOCOMPLETE="OFF" text-center"> <?= _("Garant") ?> </td>
<td colspan="3">
<SELECT style="font-size:10pt; height:30px;" class="form-control selectpicker" data-live-search="true" id="codeGcAssureur" NAME="codeGcAssureur" required AUTOCOMPLETE="OFF" autofocus
onChange="filtresouscripteur();filtreproduit();" >
<?php liste_options($garant,"",false); ?>
</SELECT>
</td>
<td width="13%" class="required AUTOCOMPLETE="OFF" text-center"> <?= _("Catégorie") ?> </td>
<td width="30%">
<div id="div_produit">
<SELECT style="font-size:10pt; height:30px;" class="form-control" id="codeProduit" NAME="codeProduit" required AUTOCOMPLETE="OFF"
onChange="libelleProduitBareme(this);" >
<?php liste_options($produits,"",false); ?>
</SELECT>
</div>
</td>
</tr>
<tr>
<td width="10%" class="required" align="center"> Taux</td>
<td width="10%" >
<select name="idTauxCouverture" id="idTauxCouverture" class="form-control" required AUTOCOMPLETE="OFF" autofocus
onchange="libelleTauxBareme(this);majTicketModerateur();">
<?= liste_options($taux,'',false) ?>
</select>
</td>
<td width="10%" align="center" class="required" > <?= _("Territoire") ?> </td>
<td>
<select name="codeTerritoire" id="codeTerritoire" class="form-control selectpicker" data-live-search="true" required AUTOCOMPLETE="OFF"
onchange="libelleTerritoireBareme(this.value);">
<?= liste_options($territoire,'',false) ?>
</select>
</td>
<td width="10%" align="center" > <?= _("Souscripteur") ?> </td>
<td>
<div id="div_souscripteur">
<select name="numeroClient" id="numeroClient" class="form-control" onchange="libelleClientBareme(this);">
<?= liste_options($clients,'',false) ?>
</select>
<div>
</td>
</tr>
<tr>
<td width="10%" align="center" class="required"> <?= _("Libelle") ?> </td>
<td colspan="5"><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" ></td>
</tr>
<tr>
<td width="10%" align="center"> <?= _("Observation") ?> </td>
<td colspan="5"><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="observationBareme" NAME="observationBareme" ></td>
</tr>
<tr>
<td> </td>
<td colspan="2" > <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:creer_bareme();" style='font-size:10pt;' > </td>
<td> </td>
<td colspan="2" > <input class = "form-control btn btn-warning" type="button" value="<?= _("Fermer") ?>" onClick="javascript:retour_liste_bareme();" style='font-size:10pt;' > </td>
</tr>
</tbody>
</table>
<div id="div_garanties_bareme">
</div>