45 lines
1.7 KiB
PHP
Executable File
45 lines
1.7 KiB
PHP
Executable File
<?php $this->titre = "INTER SANTE - Seuil alerte consommation";
|
|
|
|
$codeGcAssureur = isset($_SESSION['codeGcAssureur_S']) ? $_SESSION['codeGcAssureur_S'] : "";
|
|
$codeProduit = isset($_SESSION['codeProduit_S']) ? $_SESSION['codeProduit_S'] : "";
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<legend> <?= _("Modification Seuil alerte consommation") ?> </legend>
|
|
|
|
<INPUT class="sr-only" TYPE="text" id="nomForm" NAME="nomForm" value="modifierseuilalerte" >
|
|
|
|
<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:filtreproduitgarant();" >
|
|
<?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" id="codeProduit" NAME="codeProduit" required>
|
|
<?php liste_options($produits, $codeProduit); ?>
|
|
</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_garantie_produit();"> </td>
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<div id="div_garantieproduit">
|
|
</div>
|