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

73 lines
2.6 KiB
PHP

<?php
// $this->titre = "INTER-SANTE - Tarif Actes Médicaux";
$codeTarifActe = $_SESSION['codeTarifActe_C'];
$codeFamilleActe = $_SESSION['codeFamilleActe_C'];
?>
<legend> <?= _("Liste Actes Médicaux") ?> </legend>
<div id="div_ente_tarif" onkeypress="javascript:ctrlkeypress_rechercher_actes_famille_param(event);">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive " style="font-size:10pt; paddind:0px;">
<tbody>
<tr>
<td width="5%"> <?= _("Tarif") ?> </td>
<td>
<SELECT onChange="ajaxfiltrefamilleactetarif();" class="form-control" id="codeTarifActe" NAME="codeTarifActe" autofocus style="font-size:10pt;">
<?php liste_options_consultation($tarifs, $codeTarifActe , true); ?>
</SELECT>
</td>
<td align='center' width="7%"> <?= _("Famille") ?> </td>
<td colspan="2" width="45%" >
<div id="listefamille">
<SELECT class="form-control" id="codeFamilleActe" NAME="codeFamilleActe" style="font-size:10pt;">
<?php liste_options($familleacte, $codeFamilleActe); ?>
</SELECT>
</div>
</td>
</tr>
<tr>
<td colspan="3" ><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="libelleActe" name="libelleActe" ></td>
<td align='center'> <input class="form-control btn btn-primary" type="button" value="<?= _("Rechercher dans la famille...") ?>"
onClick="javascript:rechercher_actes_famille_param();" style="font-size:10pt;"></td>
<td align='center'> <input class="form-control btn btn-primary" type="button" value="<?= _("Rechercher partout...") ?>"
onClick="javascript:rechercher_actes_famille_param_tous();" style="font-size:10pt;"></td>
</tr>
</tbody>
</table>
</div>
<div id="div_detail_actes">
</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 actes...") ?> </h4>
</div>
<div class="modal-body">
<div id="div_export_acte">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
</div>
</div>
</div>
</div>