58 lines
2.7 KiB
PHP
58 lines
2.7 KiB
PHP
<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">Code</td>
|
|
<td width="40%" ><INPUT class="form-control majuscule" TYPE="text" id="codeGarantie" NAME="codeGarantie" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="10" align="center" class="required">Libellé FR</td>
|
|
<td width="40%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%" align="center" class="required">Libellé Eng</td>
|
|
<td width="40%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" required AUTOCOMPLETE="OFF" ></td>
|
|
|
|
<td width="10%" align="center">Garantie Parent</td>
|
|
<td width="40%" >
|
|
<select name="codeGarantieParent" id="codeGarantieParent" class="form-control">
|
|
<?= liste_options($garantieParent,'',false) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%" align="center">Taux Plafond (%)</td>
|
|
<td width="40%" ><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="40%" ><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="40%" ><INPUT class="form-control" TYPE="text" id="plafondLettre" NAME="plafondLettre"></td>
|
|
|
|
<td width="10%" align="center">Ordre Affichage</td>
|
|
<td width="20%" ><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="20%">
|
|
<select name="optionnelle" id="optionnelle" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($ouinonoptionnelle,'0',true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="10%" align="center">Plafond Modifiable ?</td>
|
|
<td width="40%">
|
|
<select name="plafondModifiable" id="plafondModifiable" class="form-control">
|
|
<?= liste_options($ouinonplafondmodifiable,'1',true) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|