prestation/Vue/Compositiontarifactespoliceprestataire/index.php
2025-12-05 10:42:46 +00:00

62 lines
2.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']:"";
$idPolice = isset($_SESSION['idPolice_C'])? $_SESSION['idPolice_C']:"";
//var_dump($_SESSION['idPolice_C']);
$codePrestataire = isset($_SESSION['codePrestataire'])? $_SESSION['codePrestataire']:"";
?>
<input class="form-control" style="text-align: center; font-size:10pt;" type="text" value="<?= _("Composition tarif Actes par police dans un centre") ?>" 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="ajaxfiltrefamilleactecomposantetarif();ajaxfiltretarifpolice();ajaxfiltretarifprestataire();" 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="3" width="42%" >
<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 width="5%"> <?= _("Police") ?> </td>
<td >
<div id="div_police">
<SELECT onChange="javascript:ajax_composante_tarif_police_prestataire();" class="form-control selectpicker" data-live-search="true" id="idPolice" NAME="idPolice" style="font-size:10pt;">
<?php liste_options($polices, $idPolice); ?>
</SELECT>
</div>
</td>
<td width="7%" align='center'> <?= _("Prestataire") ?> </td>
<td >
<div id="div_prestataire">
<SELECT onChange="javascript:ajax_composante_tarif_police_prestataire();" class="form-control selectpicker" data-live-search="true" id="codePrestataire" NAME="codePrestataire" style="font-size:10pt;">
<?php liste_options($prestataires, $codePrestataire); ?>
</SELECT>
</div>
</td>
<td align='center' width="10%">
<input class="form-control btn btn-primary" type="button" value="<?= _("Actualiser...") ?>"
onClick="javascript:ajax_composante_tarif_police_prestataire();" style="font-size:10pt;">
</td>
</tr>
</tbody>
</table>
</div>
<div id="div_compsante_tarif">
</div>