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

51 lines
2.5 KiB
PHP
Executable File

<form id="formData">
<legend id="titre_formData"><?= _("Ajouter des données") ?></legend>
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="5%" align="center" class="required">Type</td>
<td width="20%">
<select name="codeTypeApporteur" id="codeTypeApporteur" class="form-select" required>
<?= liste_options($typeinter,'',false) ?>
</select>
</td>
<td width="5%" align="center" class="required"><?= _("Raison Sociale") ?></td>
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required></td>
<td width="5%" align="center"><?= _("Responsable") ?></td>
<td colspan="3" ><INPUT class="form-control majuscule" TYPE="text" id="nomResponsable" NAME="nomResponsable"></td>
</tr>
<tr>
<td width="5%" align="center"><?= _("Téléphone") ?></td>
<td width="20%" ><INPUT class="form-control" TYPE="tel" id="telephone" NAME="telephone"></td>
<td width="5%" align="center">E-mail</td>
<td width="20%" ><INPUT class="form-control" TYPE="email" id="email" NAME="email"></td>
<td width="5%" align="center"><?= _("Bureau") ?></td>
<td width="20%">
<select name="codeBureau" id="codeBureau" class="form-select">
<?= liste_options($bureau,'',false) ?>
</select>
</td>
<td width="5%" align="center"><?= _("Déduire Com") ?></td>
<td >
<select name="deduireComm" id="deduireComm" class="form-select">
<?= liste_options($ouinonoptionnelle,'1',true) ?>
</select>
</td>
</tr>
<tr>
<td width="5%" align="center"><?= _("Mobile Payer") ?></td>
<td ><INPUT class="form-control" TYPE="number" id="mobilePaiement" NAME="mobilePaiement" value="0" title="<?= _("L'indicatif est obligatoire")?>"></td>
<td width="5%" align="center"><?= _("Adresse Géo.") ?></td>
<td ><INPUT class="form-control majuscule" TYPE="text" id="adresseGeo" NAME="adresseGeo" value=""></td>
<td width="5%" align="center"><?= _("Adresse Post.") ?></td>
<td colspan="3" ><INPUT class="form-control majuscule" TYPE="text" id="adressePost" NAME="adressePost" value=""></td>
</tr>
</tbody>
</table>
</form>