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

33 lines
1.9 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="<?=$banque['id']?>">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="5%" align="center">Code</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="codeBanque" NAME="codeBanque" value="<?= $this->nettoyer($banque['codeBanque']); ?>" 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($banque['libelle']); ?>"></td>
<td width="5%" align="center"><?= _("Code Swift") ?></td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="codeSwift" NAME="codeSwift" value="<?= $this->nettoyer($banque['codeSwift']); ?>"></td>
</tr>
<tr>
<td width="5%" align="center"><?= _("N° Compte Comptable") ?></td>
<td width="20%" ><INPUT class="form-control" TYPE="text" id="numeroCompteCpt" NAME="numeroCompteCpt" value="<?= $this->nettoyer($banque['numeroCompteCpt']); ?>"></td>
<td width="5%" align="center"><?= _("N° Compte Bancaire") ?></td>
<td width="20%" ><INPUT class="form-control" TYPE="text" id="numeroCompteBancaire" NAME="numeroCompteBancaire" value="<?= $this->nettoyer($banque['numeroCompteBancaire']); ?>"></td>
<td width="5%" align="center"><?= _("Banque Société") ?></td>
<td width="5%">
<select name="banqueSociete" id="banqueSociete" class="form-select">
<?= liste_options($ouinonplafondmodifiable,$this->nettoyer($banque['banqueSociete']),true) ?>
</select>
</td>
</tr>
</tbody>
</table>
</form>