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

26 lines
1.5 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="<?=$moyenpaiement['id']?>">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="5%" align="center">Code</td>
<td width="10%" ><INPUT class="form-control majuscule" TYPE="text" id="codeMoyenPaiement" NAME="codeMoyenPaiement" value="<?= $this->nettoyer($moyenpaiement['codeMoyenPaiement']); ?>" disabled></td>
<td width="5%" align="center" class="required"><?= _("Libellé") ?></td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($moyenpaiement['libelle']); ?>"></td>
<td width="5%" align="center" class="required">Type</td>
<td width="20%">
<select name="codeTypePaiement" id="codeTypePaiement" class="form-select" required AUTOCOMPLETE="OFF">
<?= liste_options($typepaiement,$this->nettoyer($moyenpaiement['codeTypePaiement']),true) ?>
</select>
</td>
<td width="5%" align="center"><?= _("N° Compte") ?></td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="numeroCompte" NAME="numeroCompte" value="<?= $this->nettoyer($moyenpaiement['numeroCompte']); ?>"></td>
</tr>
</tbody>
</table>
</form>