33 lines
1.6 KiB
PHP
33 lines
1.6 KiB
PHP
<form id="formData">
|
|
<legend id="titre_formData">Modification des données</legend>
|
|
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$tableaucommission['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center">Type Intermédiaire</td>
|
|
<td width="20%">
|
|
<select name="codeTypeApporteur" id="codeTypeApporteur" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($typeapporteur,$this->nettoyer($tableaucommission['codeTypeApporteur']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Etape Police</td>
|
|
<td width="20%">
|
|
<select name="codeEtape" id="codeEtape" class="form-control">
|
|
<?= liste_options($etapepolice,$this->nettoyer($tableaucommission['codeEtape']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Type Contrat</td>
|
|
<td width="20%">
|
|
<select name="codeTypeContrat" id="codeTypeContrat" class="form-control" >
|
|
<?= liste_options($typecontrat,$this->nettoyer($tableaucommission['codeTypeContrat']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Taux Commission</td>
|
|
<td colspan="3" ><INPUT class="form-control majuscule" TYPE="number" id="tauxCommission" NAME="tauxCommission" value="<?= $this->nettoyer($tableaucommission['tauxCommission']); ?>"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|