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

51 lines
1.8 KiB
PHP

<?php
// $this->titre = "INTER-SANTE - Tarif Actes Médicaux";
?>
<button class="sr-only" id="btn_exporter_tarif" name="btn_exporter_tarif" type="button" data-bs-toggle="modal" data-bs-target="#pop_exporter_tarif" style='font-size:10pt;' > </button>
<legend> <?= _("Tarif Actes Médicaux") ?> </legend>
<div id="div_ente_tarif" onkeypress="javascript:ctrlkeypress_tarifacte(event);">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt; paddind:0px;">
<tbody>
<tr>
<td width="40%" >
<SELECT class="form-control" id="codeTarifActe" NAME="codeTarifActe" autofocus style="font-size:10pt;">
<?php liste_options($tarif, "" ,false); ?>
</SELECT>
</td>
<td width="55%" ><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="libelleActe" name="libelleActe" ></td>
<td width="15%" align='center'> <input class="form-control btn btn-primary" type="button" value="<?= _("Rechercher...") ?>"
onClick="javascript:afficher_tarifacte();" style="font-size:10pt;"></td>
</tr>
</tbody>
</table>
</div>
<div id="div_detail">
</div>
<div class="modal fade" id="pop_exporter_tarif" 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 le tarif...") ?> </h4>
</div>
<div class="modal-body">
<div id="div_export_tarif">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
</div>
</div>
</div>
</div>