44 lines
1.5 KiB
PHP
Executable File
44 lines
1.5 KiB
PHP
Executable File
<?php
|
|
|
|
$this->titre = "INTER SANTE - Barème de prise en charge initial";
|
|
|
|
$codeGcAssureur = isset($_SESSION['codeGcAssureur']) ? $_SESSION['codeGcAssureur']:"";
|
|
?>
|
|
|
|
<legend> <?= _("Barème de prise en charge initial par produit") ?> </legend>
|
|
|
|
<INPUT TYPE="text" class="sr-only" id = "nomForm" name = "nomForm" value="listebareme">
|
|
|
|
|
|
|
|
<table class="table table-condensed table-responsive" style="font-size:10pt;" >
|
|
<tbody>
|
|
<tr>
|
|
<td width="8%" class="required text-center"> <?= _("Garant") ?> </td>
|
|
<td width="40%">
|
|
<SELECT style="font-size:10pt; height:30px;" class="form-control selectpicker" data-live-search="true" id="codeGcAssureur" NAME="codeGcAssureur" required AUTOCOMPLETE="OFF" autofocus
|
|
onChange="javascript:filtreproduitbareme();" >
|
|
<?php liste_options($garant, $codeGcAssureur); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="8%" class="required text-center"> <?= _("Produit") ?> </td>
|
|
<td width="32%">
|
|
<div id="div_produit">
|
|
<SELECT style="font-size:10pt; height:30px;" class="form-control selectpicker" data-live-search="true" required>
|
|
<?php liste_options($produits,"",false); ?>
|
|
</SELECT>
|
|
</div>
|
|
</td>
|
|
<td width="2%"></td>
|
|
<td>
|
|
<td width="10%" align="center"> <input class = "form-control btn btn-primary" style="font-size:10pt;" type="button" value="<?= _("Actualiser") ?>" onClick="javascript:afficher_bareme_produit();"> </td>
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_bareme">
|
|
</div>
|