59 lines
2.1 KiB
PHP
Executable File
59 lines
2.1 KiB
PHP
Executable File
<?php
|
|
// $this->titre = "INTER SANTE - Tarif Actes Médicaux";
|
|
$codeTarifActe = isset($_SESSION['codeTarifActe_C'])? $_SESSION['codeTarifActe_C']: "";
|
|
$idPolice = isset($_SESSION['idcollege_C'])? $_SESSION['idcollege_C']:"";
|
|
|
|
$idCollege = isset($_SESSION['idCollege_C'])? $_SESSION['idCollege_C']:"";
|
|
|
|
?>
|
|
|
|
|
|
|
|
<legend> <?= _("Tarif Négocié Collège par prestataire") ?> </legend>
|
|
|
|
<div id="div_entete_tarif" onkeypress="javascript:ctrlkeypress_rechercher_actes_famille_param(event);">
|
|
|
|
<table class="table table-condensed" style="font-size:10pt; padding:0px;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center" class="required"> <?= _("Police") ?> </td>
|
|
<td colspan="2">
|
|
<SELECT onChange="javascript:filtrecollegepolice();" id="idPolice" NAME="idPolice" style="font-size:10pt; height:30px;" class="form-control selectpicker" data-live-search="true" required AUTOFOCUS>
|
|
<?php liste_options($polices, $idPolice); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center" class="required"> <?= _("Collège") ?> </td>
|
|
<td colspan="2">
|
|
<div id="div_college">
|
|
<SELECT style="font-size:10pt; height:30px;" class="form-control selectpicker" data-live-search="true" id="idCollege" NAME="idCollege" onChange="" >
|
|
<?php liste_options($colleges, $idCollege); ?>
|
|
</SELECT>
|
|
<div>
|
|
</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center" class="required"> <?= _("Tarif") ?> </td>
|
|
<td width="85%">
|
|
<SELECT onChange="javascript:ajax_composante_tarif_college_prestataire();" class="form-control selectpicker" data-live-search="true" id="codeTarifActe"
|
|
NAME="codeTarifActe" style="font-size:10pt;" required>
|
|
<?php liste_options($tarifs, $codeTarifActe); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align='center'>
|
|
<input class="form-control btn btn-primary" type="button" value="<?= _("Actualiser...") ?>"
|
|
onClick="javascript:ajax_composante_tarif_college_prestataire();" style="font-size:10pt;">
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<div id="div_compsante_tarif">
|
|
</div>
|