prestation/Vue/Ajaxouvrirtypetarif/index.php
2025-12-05 10:42:46 +00:00

53 lines
2.3 KiB
PHP
Executable File

<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal">&times;</button>
<legend class="modal-title text-center">Ajouter un Type de Tarif</legend>
</div>
<div class="modal-body">
<form id="formModal">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="10%" align="center" class="required">Code:</td>
<td ><INPUT class="form-control majuscule" TYPE="text" id="codeTypeTarifActe" NAME="codeTypeTarifActe" autofocus required AUTOCOMPLETE="OFF" ></td>
<td width="10%" align="center" class="required">Français:</td>
<td ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
</tr>
<tr>
<td width="10%" align="center" class="required">Défaut?</td>
<td >
<SELECT class="form-control" id="appliqueParDefaut" disabled>
<?php liste_options($ouinonappliquepardefaut,0, true); ?>
</SELECT>
</td>
<td width="10%" align="center" class="required">English:</td>
<td ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" required AUTOCOMPLETE="OFF" ></td>
</tr>
<tr>
<td width="10%" align="center" >Description Fr:</td>
<td><INPUT class="form-control majuscule" TYPE="text" id="description" NAME="description"></td>
<td width="10%" align="center" >Description Eng:</td>
<td ><INPUT class="form-control majuscule" TYPE="text" id="descriptionEng" NAME="descriptionEng"></td>
</tr>
<tr>
<td colspan="4" align="center" height="50" style="vertical-align: top; color: #551210; background-color: #ffffff; font-size: 20px;">
</td>
</tr>
<tr>
<td colspan="4">
<input type="button" name="btn-enreg" id="btn-enreg" class="btn btn-primary form-control" value="Enregistrer"
onclick="JAVASCRIPT:enregistrerTypeTarif();">
</td>
</tr>
</tbody>
</table>
</form>
</div>
<div class="modal-footer">
<button type="button" id="btn-fermer-modal" class="btn btn-default" data-bs-dismiss="modal">Fermer</button>
</div>
</div>
</div>
</div>