78 lines
3.1 KiB
PHP
Executable File
78 lines
3.1 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - Fiche Utilisteur Gestion Confiée";
|
|
|
|
$codeGcAssureur = $this->nettoyer($user_gc['codeGcAssureur']);
|
|
$idUtilisateur = $user_gc['id'];
|
|
$codeUtilisateur = $user_gc['codeUtilisateur'];
|
|
$actif = $user_gc['actif'];
|
|
$actVisible = $user_gc['actVisible'];
|
|
$reInit = $user_gc['reInit'];
|
|
$codeLangue = $user_gc['codeLangue'];
|
|
$AffectionVisible = $user_gc['AffectionVisible'];
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<input class="sr-only" type="text" id="idUtilisateur" name="idUtilisateur" value="<?= $idUtilisateur ?>" >
|
|
<input class="sr-only" type="text" id="codeGcAssureur" name="codeGcAssureur" value="<?= $codeGcAssureur ?>" >
|
|
|
|
<legend> <?= _("Fiche Utilisteur") . " : " . $codeUtilisateur ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("Nom") ?> </td>
|
|
<td width="40%" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="nom" NAME="nom" value="<?=$this->nettoyer( $user_gc['nom'])?>" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="12%" align="center" > <?= _("Prénoms") ?> </td>
|
|
<td colspan="3" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="prenoms" NAME="prenoms" value="<?=$this->nettoyer( $user_gc['prenoms'])?>" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Assureur") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" value="<?=$this->nettoyer( $user_gc['assureur'])?>" readonly ></td>
|
|
|
|
<td align="center"> <?= _("Actif?") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-control" id="actif" NAME="actif" >
|
|
<?php liste_options($user_actif, $actif, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center"> <?= _("Actes Visibles?") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-control" id="actVisibleUser" NAME="actVisibleUser" >
|
|
<?php liste_options($user_actVisible, $actVisible, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Langue") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-control" id="codeLangueUser" NAME="codeLangueUser" >
|
|
<?php liste_options($langue, $codeLangue, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center"> <?= _("Affections Visibles?") ?> </td>
|
|
<td colspan="3" >
|
|
<SELECT style="font-size:10pt;" class="form-control" id="AffectionVisibleUser" NAME="AffectionVisibleUser" >
|
|
<?php liste_options($user_AffectionVisible, $AffectionVisible, 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_user_gc();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td colspan="3" > <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:retour_a_users_gc();" style='font-size:9pt;' > </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|