50 lines
1.9 KiB
PHP
Executable File
50 lines
1.9 KiB
PHP
Executable File
<?php
|
|
// $this->titre = "INTER-SANTE - Tarif Pharmacies";
|
|
?>
|
|
|
|
<legend> <?= _("Tarif Médicaments") ?> </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="25%" >
|
|
<SELECT class="form-control" id="codeTarifMedicament" NAME="codeTarifMedicament" autofocus style="font-size:10pt;">
|
|
<?php liste_options($tarif, "" ,false); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="60%" ><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="libelleMedicament" name="libelleMedicament" ></td>
|
|
|
|
<td width="15%" 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>
|