production/Vue/Produits/index.php
2025-12-01 16:12:12 +00:00

26 lines
871 B
PHP
Executable File

<?php $this->titre = "INTER SANTE - Produits";
$superUser = $_SESSION['superUser'];
?>
<legend><?= _("Liste des Produits par garant") ?></legend>
<INPUT class="sr-only" TYPE="text" id="nomForm" NAME="nomForm" value="frmproduit">
<table class="table table-condensed table-responsive" style="font-size:10pt;" >
<tbody>
<tr>
<td width="10%" class="required text-center"> <?= _("Garant") ?> </td>
<td >
<SELECT style="font-size:10pt;" class="form-control selectpicker" data-live-search="true" id="codeGcAssureur" NAME="codeGcAssureur" required AUTOCOMPLETE="OFF" autofocus
onChange="javascript:filtretabproduit();" >
<?php liste_options($garant,$_SESSION['garant']); ?>
</SELECT>
</td>
</tr>
</tbody>
</table>
<div id="div_tab_produit">
<?php
require 'Vue/Ajaxfiltretabproduit/index.php';
?>
</div>