150 lines
6.0 KiB
PHP
Executable File
150 lines
6.0 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER SANTE - Modifier un Barème de prise en charge initial";
|
|
|
|
$archiver = $this->nettoyer($bareme['archiver']);
|
|
|
|
$superUser = $_SESSION['superUser'];
|
|
?>
|
|
|
|
<legend> <?= _("Modifier un Barème de prise en charge initial") ?> </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 align="center" colspan="6" style="font-size:12pt; background-color: green; color: white; font-weight: bold;">
|
|
<?= _("ANCIENNES VALEURS DU BAREME") ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="10%" class="text-center"> <?= _("Garant") ?> </td>
|
|
<td colspan="3">
|
|
<SELECT style="font-size:10pt; height:30px;" class="form-select" disabled>
|
|
<?= liste_options($garant,$this->nettoyer($bareme['codeGcAssureur']),true) ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="13%" class="text-center"> <?= _("Produit") ?> </td>
|
|
<td width="30%">
|
|
<SELECT style="font-size:10pt; height:30px;" class="form-select" disabled>
|
|
<?php liste_options($produits,$this->nettoyer($bareme['codeProduit']),true); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="10%" align="center"> <?= _("Taux Couverture") ?> </td>
|
|
<td width="10%" >
|
|
<select class="form-select" disabled>
|
|
<?= liste_options($taux,$this->nettoyer($bareme['idTauxCouverture']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="10%" align="center"> <?= _("Territoire") ?> </td>
|
|
<td>
|
|
<select class="form-select" disabled>
|
|
<?= liste_options($territoire,$this->nettoyer($bareme['codeTerritoire']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="10%" align="center" > <?= _("Souscripteur") ?> </td>
|
|
<td>
|
|
<select class="form-select" disabled>
|
|
<?= liste_options($clients,$this->nettoyer($bareme['numeroClient']),false) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="10%" align="center" > <?= _("Libellé") ?> </td>
|
|
<td colspan="5"><INPUT style="font-size:10pt;" class="form-control" TYPE="text" value="<?= $this->nettoyer($bareme['libelle'])?>" disabled></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%" align="center"> <?= _("Observation") ?> </td>
|
|
<td colspan="5"><INPUT style="font-size:10pt;" class="form-control" TYPE="text" value="<?= $this->nettoyer($bareme['observationBareme'])?>" disabled></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<INPUT TYPE="text" class="sr-only" id="codeGcAssureur" NAME="codeGcAssureur" value="<?= $this->nettoyer($bareme['codeGcAssureur']);?>">
|
|
<INPUT TYPE="text" class="sr-only" id="codeProduit" NAME="codeProduit" value="<?= $this->nettoyer($bareme['codeProduit']);?>">
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center" colspan="6" style="font-size:12pt; background-color: green; color: white; font-weight: bold;">
|
|
<?= _("NOUVELLES VALEURS DU BAREME") ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="10%" class="text-center"> <?= _("Garant") ?> </td>
|
|
<td colspan="3">
|
|
<SELECT style="font-size:10pt; height:30px;" class="form-control" disabled >
|
|
<?= liste_options($garant,$this->nettoyer($bareme['codeGcAssureur']),false) ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="13%" class="text-center"> <?= _("Produit") ?> </td>
|
|
<td width="30%">
|
|
<div id="div_produit">
|
|
<SELECT style="font-size:10pt; height:30px;" class="form-control" disabled >
|
|
<?php liste_options($produits,$this->nettoyer($bareme['codeProduit']),false); ?>
|
|
</SELECT>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="10%" class="required" align="center"> <?= _("Taux Couverture") ?> </td>
|
|
<td width="10%" >
|
|
<select name="idTauxCouverture" id="idTauxCouverture" class="form-select" required
|
|
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 >
|
|
<?= 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"> <?= _("Libellé") ?> </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 colspan="3" > <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 colspan="2"> </td>
|
|
<td> <input class = "form-control btn btn-warning" type="button" value="<?= _("Fermer") ?>" onClick="javascript:retour_liste_bareme();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|