40 lines
1.7 KiB
PHP
40 lines
1.7 KiB
PHP
<div id="div_fiche_acte">
|
|
<?php
|
|
$idActe = $this->nettoyer($acte['id']);
|
|
$codeActe = $acte['codeActe'];
|
|
$codeFamilleActe = $acte['codeFamilleActe'];
|
|
$ententePrealable = $acte['ententePrealable'];
|
|
$exclu = $acte['exclu'];
|
|
$chirurgie = $acte['chirurgie'];
|
|
$actif = $acte['actif'];
|
|
?>
|
|
|
|
<input class="sr-only" type="text" id="idActe" name="idActe" value="<?= $idActe ?>" >
|
|
<input class="sr-only" type="text" id="codeActe" name="codeActe" value="<?= $codeActe ?>" >
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("Désignation") ?> </td>
|
|
<td width="40%" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelle" NAME="libelle" value="<?=$this->nettoyer( $acte['libelle'])?>" required AUTOCOMPLETE="OFF" ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Famille") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeFamilleActe" NAME="codeFamilleActe" autofocus style="font-size:9pt;">
|
|
<?php liste_options_consultation($familleacte, $codeFamilleActe , 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_requeteperso();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td> <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:effacer_caracteristiques_un_acte();" style='font-size:9pt;' > </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|