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

45 lines
1.9 KiB
PHP
Executable File

<?php
$this->titre = "INTER SANTE - Modification tarif acte";
?>
<legend> <?= _("Modification tarif actes") ?> </legend>
<input class="sr-only" type="text" id="idTarif" name="idTarif" value="<?= $this->nettoyer($tarif['idTarif']) ?>" >
<table class="table table-responsive table-condensed" style="font-size:10pt;">
<tbody>
<tr>
<td width="8%" > <?= _("Code") ?> </td>
<td width="10%"><INPUT style="font-size:10pt; text-align:center;" class="form-control" TYPE="text" id="codeTarifActe" NAME="codeTarifActe" value="<?=$this->nettoyer($tarif['codeTarifActe'])?>" readonly ></td>
<td align="center" width="10%" class="required"> <?= _("Nom Français") ?> </td>
<td ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelle" NAME="libelle" value="<?=$this->nettoyer($tarif['libelle'])?>" required AUTOCOMPLETE="OFF" ></td>
<td align="center" width="10%" > <?= _("Nom Anglais") ?> </td>
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?=$this->nettoyer($tarif['libelleEng'])?>"></td>
</tr>
<tr>
<td class="required"> <?= _("Type Tarif") ?> </td>
<td colspan="5">
<select name="codeTypeTarifActe" id="codeTypeTarifActe" class="form-select" required AUTOCOMPLETE="OFF">
<?= liste_options($typeTarif,$this->nettoyer($tarif['codeTypeTarifActe']),true) ?>
</select>
</td>
</tr>
<tr>
<td colspan="3"> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:enregistrer_modif_tarif_actes();" style='font-size:10pt;' > </td>
<td colspan="2"> </td>
<td > <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:lister_tarif_actes();" style='font-size:10pt;' > </td>
</tr>
</tbody>
</table>