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

42 lines
1.3 KiB
PHP
Executable File

<div class="modal-dialog">
<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"><?= _("Sélectionner un type de convention"); ?></legend>
</div>
<div class="modal-body">
<table class="table table-responsive table-condensed" style='font-size:12pt;'>
<tbody>
<tr>
<td class="required" ><?= _("Convention") ?></td>
<td width="75%">
<select class="form-select" id="codeConvention" NAME="codeConvention" style="font-size:12pt; height:30px;" required AUTOCOMPLETE="OFF">
<?php liste_options($conventions, $codeConvention); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="2" height="30">
</td>
</tr>
<tr>
<td colspan="2">
<button style='font-size:10pt;' type="button" class="form-control btn btn-info" onclick="javascript:editer_facture_garant();"> <?= _("Edition Facture Garant") ?> </button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" id="btn-fermer-modal" class="btn btn-default" data-bs-dismiss="modal" ><?= _("Fermer") ?></button>
</div>
<div id="div_export_a"></div>
</div>
</div>