production/Vue/Tarifapplique/index.php
2025-12-01 16:12:12 +00:00

109 lines
4.3 KiB
PHP
Executable File

<?php
// $this->titre = "INTER SANTE - Tarif Actes Médicaux";
?>
<legend> <?= _("Tarif appliqué pour un bénéficiaire chez un prestataire") ?> </legend>
<input class="sr-only" id="nomForm" name="nomForm" type="text" value= "tarifappliquebeneficiaire" >
<input class="sr-only" id="idAssure" name="idAssure" type="text" value="<?= $idBeneficiaire ;?>" >
<div id="div_entete_tarif" >
<table class="table table-condensed" style="font-size:10pt; padding:0px;">
<tbody>
<tr>
<td width="10%" class="required"> <?= _("No Bénéficiaire") ?> </td>
<td width="35%">
<div >
<input id="searchInput" name="searchInput" style="font-size:12pt; height:30px;" class="form-control" type="text" value="<?= $numeroBeneficiaire ;?>" autofocus required AUTOCOMPLETE="OFF">
<div id="div_selection" class="div_selection_list">
</div>
</div>
</td>
<td width="10%" align="center"> <?= _("Nom et Prénoms") ?> </td>
<td >
<input id="nomAssure" name="nomAssure" style="font-size:12pt; height:30px;" class="form-control" type="text" value="<?= $beneficiaire ;?>" readonly>
</td>
<td width="5%" align="center"> <?= _("Lien") ?> </td>
<td width="5%">
<input id="codeLienParente" name="codeLienParente" style="font-size:12pt; height:30px;" class="form-control" type="text" value="<?= $codeLienParente ;?>" readonly>
</td>
</tr>
<tr>
<td > <?= _("No Adhérent") ?> </td>
<td >
<input id="noAdherent" name="noAdherent" style="font-size:12pt; height:30px;" class="form-control" type="text" value="<?= $noAdherent ;?>" readonly>
</td>
<td align="center"> <?= _("Adhérent") ?> </td>
<td colspan="3">
<input id="nomAdherent" name="nomAdherent" style="font-size:12pt; height:30px;" class="form-control" type="text" value="<?= $nomAdherent ;?>" readonly>
</td>
</tr>
<tr>
<td > <?= _("Police") ?> </td>
<td >
<input id="nomPolice" name="nomPolice" style="font-size:12pt; height:30px;" class="form-control" type="text" value="<?= $nomPolice ;?>" readonly>
</td>
<td align="center"> <?= _("Collège") ?> </td>
<td colspan="3">
<input id="nomCollege" name="nomCollege" style="font-size:12pt; height:30px;" class="form-control" type="text" value="<?= $nomCollege ;?>" readonly>
</td>
</tr>
<tr>
<td width="8%" class="required"> <?= _("Prestataire") ?> </td>
<td colspan="5">
<input id="searchInputPrestataire" name="searchInputPrestataire" style="font-size:12pt; height:30px;" class="form-control" type="text" required AUTOCOMPLETE="OFF"
onkeyup="javascript:affichelisteprestataires(this.value);">
<INPUT class="sr-only" TYPE="text" id="codePrestataire" NAME="codePrestataire" value="">
<div id="div_selection_prestataire" style="width:92%">
</div>
</td>
</tr>
<tr>
<td width="8%" class="required"> <?= _("Acte") ?> </td>
<td colspan="5">
<input id="searchInputActe" name="searchInputActe" AUTOCOMPLETE="OFF" style="font-size:12pt; height:30px;" class="form-control" type="text" required AUTOCOMPLETE="OFF"
onkeyup="javascript:affichelisteactes(this.value, 'acte');">
<INPUT class="sr-only" TYPE="text" id="codeActe" NAME="codeActe" value="">
<div id="div_selection_acte" style="width:92%">
</div>
</td>
</tr>
<tr>
<td width="8%" class="required"> <?= _("Date Prestation") ?> </td>
<td >
<INPUT style='text-align:center; font-size:12pt;' class="form-control datepicker" TYPE="text" id="datePrestation"
NAME="datePrestation" value="" required AUTOCOMPLETE="OFF">
</td>
<td ></td>
<td >
<input style='font-size:12pt;' id="btn_inserer" name="btn_inserer"
class = "form-control btn btn-primary" type="button" value="<?= _("Afficher le tarif appliqué") ?>"
onclick="javascript:affichertarifapplique();">
</td>
<td colspan="2">
<input style='font-size:12pt;' id="btn_reinit" name="btn_reinit"
class = "form-control btn btn-info" type="button" value="<?= _("Réinitialiser") ?>"
onclick="javascript:reinit_tarifapplique();">
</td>
</tr>
</tbody>
</table>
</div>
<div id="div_tarif_applique">
</div>