42 lines
1.7 KiB
PHP
Executable File
42 lines
1.7 KiB
PHP
Executable File
<?php
|
|
// $this->titre = "INTER-SANTE - Tarif Actes Médicaux";
|
|
$codeTarifActe = isset($_SESSION['codeTarifActe_C'])? $_SESSION['codeTarifActe_C']: "";
|
|
$codeFamilleActe = isset($_SESSION['codeFamilleActe_C'])? $_SESSION['codeFamilleActe_C']:"";
|
|
?>
|
|
<input class="form-control" style="text-align: center; font-size:10pt;" type="text" value="<?= _("Composition du tarif des Actes par acte") ?>" readonly>
|
|
|
|
<div id="div_entete_tarif" onkeypress="javascript:ctrlkeypress_rechercher_actes_famille_param(event);">
|
|
|
|
<table class="table table-condensed" style="font-size:10pt; paddind:0px;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%"> <?= _("Tarif") ?> </td>
|
|
<td>
|
|
<SELECT onChange="javascript:ajaxfiltrefamilleactecomposantetarif();" class="form-control selectpicker" data-live-search="true" id="codeTarifActe" NAME="codeTarifActe" autofocus style="font-size:10pt;">
|
|
<?php liste_options($tarifs, $codeTarifActe); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align='center' width="7%"> <?= _("Famille") ?> </td>
|
|
|
|
<td colspan="2" width="40%" >
|
|
<div id="listefamille">
|
|
<SELECT onChange="javascript:ajax_composante_tarif();" class="form-control" id="codeFamilleActe" NAME="codeFamilleActe" style="font-size:10pt;">
|
|
<?php liste_options($familleacte, $codeFamilleActe); ?>
|
|
</SELECT>
|
|
</div>
|
|
</td>
|
|
|
|
<td align='center' width="10%">
|
|
<input class="form-control btn btn-primary" type="button" value="<?= _("Actualiser...") ?>"
|
|
onClick="javascript:ajax_composante_tarif();" style="font-size:10pt;">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<div id="div_compsante_tarif">
|
|
</div>
|