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

52 lines
2.0 KiB
PHP
Executable File

<?php
// $this->titre = "INTER SANTE - Tarif Pharmacies";
?>
<legend> <?= _("Rechercher les médicaments par tarif") ?> </legend>
<div id="div_ente_tarif" onkeypress="javascript:ctrlkeypress_tarifmedicament(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%" class="required"> <?= _("Tarif") ?> </td>
<td width="30%" >
<select class="form-control selectpicker" data-live-search="true" id="codeTarifMedicament" NAME="codeTarifMedicament" autofocus style="font-size:10pt;" required>
<?php liste_options($tarif, "" ,false); ?>
</SELECT>
</td>
<td width="15%" align='center' > <?= _("Nom Médicament") ?> </td>
<td ><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="libelleMedicament" name="libelleMedicament" ></td>
<td width="10%" align='center'> <input class="form-control btn btn-primary" type="button" value="<?= _("Rechercher...") ?>"
onClick="javascript:afficher_tarifpharmacie();" style="font-size:10pt;"></td>
</tr>
</tbody>
</table>
</div>
<div id="div_detail">
</div>
<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>
<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>