82 lines
3.7 KiB
PHP
Executable File
82 lines
3.7 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - Modifier un Barème de prise en charge";
|
|
?>
|
|
|
|
<legend> <?= _("Modifier un Barème de prise en charge") ?> </legend>
|
|
|
|
<INPUT TYPE="text" class="sr-only" id = "idBaremePriseEnCharge" name = "idBaremePriseEnCharge" value="<?= $this->nettoyer($bareme['id']);?>">
|
|
<INPUT TYPE="text" class="sr-only" id = "nomForm" name = "nomForm" value="<?= _("frmmodifierbareme");?>">
|
|
<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="filtreproduit();filtreSouscripteur();" >
|
|
<?= liste_options($garant,$this->nettoyer($bareme['codeGcAssureur']),true) ?>
|
|
</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"
|
|
onChange="libelleProduitBareme(this);" required AUTOCOMPLETE="OFF" >
|
|
<?php liste_options($produits,$this->nettoyer($bareme['codeProduit']),true); ?>
|
|
</SELECT>
|
|
</div>
|
|
</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td width="10%" class="required" align="center"> Taux Barème </td>
|
|
<td width="10%" >
|
|
<select name="idTauxCouverture" id="idTauxCouverture" class="form-control" required AUTOCOMPLETE="OFF" autofocus
|
|
onchange="libelleTauxBareme(this);majTicketModerateur();">
|
|
<?= liste_options($taux,$this->nettoyer($bareme['idTauxCouverture']),true) ?>
|
|
</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"
|
|
onchange="libelleTerritoireBareme(this.value);" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($territoire,$this->nettoyer($bareme['codeTerritoire']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="10%" align="center" > <?= _("Souscripteur") ?> </td>
|
|
<td>
|
|
<div id="div_souscripteur">
|
|
<select name="numeroClient" id="numeroClient" class="form-control selectpicker" data-live-search="true"
|
|
onchange="libelleClientBareme(this);">
|
|
<?= liste_options($clients,$this->nettoyer($bareme['numeroClient']),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" TYPE="text" id="libelle" NAME="libelle" value="<?= $this->nettoyer($bareme['libelle'])?>"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%" align="center"> <?= _("Observation") ?> </td>
|
|
<td colspan="5"><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="observationBareme" NAME="observationBareme" value="<?= $this->nettoyer($bareme['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:modifier_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>
|