Import initial du projet Production
This commit is contained in:
44
Vue/Modifiertarifacte/index.php
Executable file
44
Vue/Modifiertarifacte/index.php
Executable file
@@ -0,0 +1,44 @@
|
||||
<?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>
|
||||
|
||||
Reference in New Issue
Block a user