61 lines
2.5 KiB
PHP
Executable File
61 lines
2.5 KiB
PHP
Executable File
<form id="formData">
|
|
<legend id="titre_formData"><?= _("Ajouter des données") ?></legend>
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
|
|
|
|
<td width="10" align="center" class="required"><?= _("Libellé Fr") ?></td>
|
|
<td width="30%"><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" >
|
|
</td>
|
|
|
|
<td width="10%" align="center" class="required"><?= _("Libellé Eng") ?></td>
|
|
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" required AUTOCOMPLETE="OFF"></td>
|
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td width="10%" align="center">Taux Plafond (%)</td>
|
|
<td width="30%" ><INPUT class="form-control" TYPE="number" min="0" step="0.00" id="tauxPlafond" NAME="tauxPlafond" onBlur="controle_numerique(this);"></td>
|
|
|
|
<td width="10%" align="center">Forfait Plafond</td>
|
|
<td width="30%" ><INPUT class="form-control" TYPE="number" min="0" id="forfaitPlafond" NAME="forfaitPlafond" onBlur="controle_numerique(this);"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%" align="center">Plafond en Lettre</td>
|
|
<td width="30%" ><INPUT class="form-control" TYPE="text" id="plafondLettre" NAME="plafondLettre"></td>
|
|
|
|
<td width="10%" align="center">Ordre Affichage</td>
|
|
<td width="30%" ><INPUT class="form-control" TYPE="number" min="0" value="0" id="ordre" NAME="ordre" onBlur="controle_numerique(this);"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%" align="center" class="required">Optionnelle?</td>
|
|
<td width="30%">
|
|
<select name="optionnelle" id="optionnelle" class="form-select" required AUTOCOMPLETE="OFF">
|
|
<?= liste_options($ouinonoptionnelle,'0',true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="10%" align="center">Plafond Modifiable ?</td>
|
|
<td width="30%">
|
|
<select name="plafondModifiable" id="plafondModifiable" class="form-select">
|
|
<?= liste_options($ouinonplafondmodifiable,'1',true) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%" align="center">Garantie Parent</td>
|
|
<td colspan="5">
|
|
<select name="codeGarantieParent" id="codeGarantieParent" class="form-select">
|
|
<?= liste_options($garantieParent,'',false) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</form>
|