47 lines
1.7 KiB
PHP
Executable File
47 lines
1.7 KiB
PHP
Executable File
<?php
|
|
// $this->titre = "INTER SANTE - Tarif Actes Médicaux";
|
|
$codeTarifActe = isset($_SESSION['codeTarifActe_C'])? $_SESSION['codeTarifActe_C']: "";
|
|
$idClient = isset($_SESSION['idClient_C'])? $_SESSION['idClient_C']:"";
|
|
|
|
//var_dump($idClient, $codeTarifActe);
|
|
|
|
?>
|
|
|
|
|
|
<legend> <?= _("Tarif Negocié Souscripteur 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"> <?= _("Souscripteur") ?> </td>
|
|
<td colspan="2">
|
|
<SELECT onChange="" class="form-control selectpicker" data-live-search="true" id="idClient" NAME="idClient" style="font-size:10pt;" autofocus required>
|
|
<?php liste_options($clients, $idClient); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center" class="required"> <?= _("Tarif") ?> </td>
|
|
<td>
|
|
<SELECT onChange="javascript:ajax_composante_tarif_client_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_client_prestataire();" style="font-size:10pt;">
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
<div id="div_compsante_tarif">
|
|
</div>
|