29 lines
928 B
PHP
Executable File
29 lines
928 B
PHP
Executable File
<?php $this->titre = "INTER SANTE - Paramètres facturation produits garant";
|
|
$superUser = $_SESSION['superUser'];
|
|
|
|
$codeProduit = $_SESSION['codeProduit_C'];
|
|
?>
|
|
|
|
<legend> <?= _("PARAMETRES FACTURATION PAR PRODUIT GARANT")." : ".$_SESSION['nomGcAssureur_C'] ?> </legend>
|
|
|
|
<input class="sr-only" type="text" id="nomForm" name="nomForm" value="Paramfacproduit" >
|
|
|
|
<table class="table table-condensed table-responsive" style="font-size:10pt;" >
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" class="required"> <?= _("Produit") ?> </td>
|
|
<td >
|
|
<SELECT style="font-size:10pt; height:30px;" class="form-control selectpicker" data-live-search="true"
|
|
id="codeProduit" NAME="codeProduit" required autofocus onchange="javascript:parametre_produit();">
|
|
<?php liste_options($produits, $codeProduit); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_parametres">
|
|
|
|
|
|
</div>
|