39 lines
1.4 KiB
PHP
Executable File
39 lines
1.4 KiB
PHP
Executable File
<?php
|
|
|
|
$codeGcAssureur = isset($_SESSION['codeGcAssureur_C']) ? $_SESSION['codeGcAssureur_C']:"";
|
|
?>
|
|
|
|
<legend> <?= _("Exclusion des actes médicaux par produit") ?> </legend>
|
|
|
|
<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:filtreproduitexclusion();" >
|
|
<?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_actesexclus_produit();"> </td>
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|
|
<div id="div_actesproduit" class="col-lg-20">
|
|
</div>
|