47 lines
1.6 KiB
PHP
Executable File
47 lines
1.6 KiB
PHP
Executable File
<?php
|
|
// $this->titre = "INTER SANTE - Tarif Actes Médicaux";
|
|
$codeTarifActe = isset($_SESSION['codeTarifActe_C'])? $_SESSION['codeTarifActe_C']: "";
|
|
$idPolice = isset($_SESSION['idPolice_C'])? $_SESSION['idPolice_C']:"";
|
|
|
|
//var_dump($idClient, $codeTarifActe);
|
|
|
|
?>
|
|
|
|
|
|
<legend> <?= _("Tarif Négocié Police 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 align='center' width="7%" class="required"> <?= _("Police") ?> </td>
|
|
<td colspan="2">
|
|
<select class="form-control selectpicker" data-live-search="true" id="idPolice" NAME="idPolice" style="font-size:10pt;" required>
|
|
<?php liste_options($polices, $idPolice); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center" class="required"> <?= _("Tarif") ?> </td>
|
|
<td>
|
|
<SELECT onChange="javascript:ajax_composante_tarif_police_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' 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>
|