prestation/Vue/Listeverres/index.php
2025-12-01 18:54:33 +00:00

49 lines
1.6 KiB
PHP

<?php
?>
<input class="form-control" style="text-align: center; font-size:10pt;" type="text" value="<?= _("Liste Verres") ?>" readonly>
<div id="div_entete_verres" onkeypress="javascript:ctrlkeypress_rechercher_verres_param(event);">
<table class="table table-condensed" style="font-size:10pt; paddind:0px;">
<tbody>
<tr>
<td width="7%"> <?= _("Désignation") ?> </td>
<td colspan="2" width="60%" >
<INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="libelleVerre" name="libelleVerre" >
</td>
<td align='center' width="15%">
<input class="form-control btn btn-primary" type="button" value="<?= _("Actualiser...") ?>"
onClick="javascript:rechercher_verres_param();" style="font-size:10pt;">
</td>
</tr>
</tbody>
</table>
</div>
<div id="div_detail_verres">
</div>
<button class="sr-only" id="btn_exporter" name="btn_exporter" type="button" data-bs-toggle="modal" data-bs-target="#pop_exporter" > </button>
<div class="modal fade" id="pop_exporter" role="dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button id="btn_close_pop" name="btn_close_pop" type="button" class="close" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
<h4 class="modal-title"> <?= _("Exporter liste verres...") ?> </h4>
</div>
<div class="modal-body">
<div id="div_export_verres">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
</div>
</div>
</div>
</div>