61 lines
2.7 KiB
PHP
61 lines
2.7 KiB
PHP
<?php
|
|
//$this->titre = "INTER-SANTE - Modification tarif médicaments";
|
|
?>
|
|
|
|
<legend> <?= _("Modification famille actes") ?> </legend>
|
|
|
|
<input class="sr-only" type="text" id="idFamilleacte" name="idFamilleacte" value="<?= $this->nettoyer($famillacte['idFamilleacte']) ?>" >
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="15%" class="required"> <?= _("Nom Français") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" value="<?=$this->nettoyer($famillacte['libelle'])?>" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td align="center" width="15%" class="required"> <?= _("Nom Anglais") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?=$this->nettoyer($famillacte['libelleEng'])?>" required AUTOCOMPLETE="OFF" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Garantie") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeGarantie" NAME="codeGarantie" style='font-size:10pt; text-align:center;' >
|
|
<?php liste_options($garanties, $this->nettoyer($famillacte['codeGarantie'])); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center" > <?= _("Type") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeTypePrestation" NAME="codeTypePrestation" style='font-size:10pt; text-align:center;' >
|
|
<?php liste_options($typesprestation, $this->nettoyer($famillacte['codeTypePrestation'])); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Tarif") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeTarifActe" NAME="codeTarifActe" autofocus style="font-size:10pt;">
|
|
<?php liste_options_consultation($tarifs, $this->nettoyer($famillacte['codeTarifActe']), true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center" > <?= _("Hospit")."?" ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="hospitalisation" NAME="hospitalisation" style='font-size:10pt; text-align:center;' >
|
|
<?php liste_options($famille_hospitalisation, $this->nettoyer($famillacte['hospitalisation']), true); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:enregistrer_modif_famille_actes();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td> <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:lister_famille_actes();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|