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

33 lines
1.6 KiB
PHP
Executable File

<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-select" 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-select">
<?= 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-select">
<?= 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>