111 lines
4.3 KiB
PHP
Executable File
111 lines
4.3 KiB
PHP
Executable File
<?php
|
|
$this->titre = "ISA WEB - Fiche Utilisteur Assureur";
|
|
|
|
$idUtilisateur = $users_ass['id'];
|
|
$codeUtilisateur = $users_ass['codeUtilisateur'];
|
|
$codeProfil = $users_ass['codeProfil'];
|
|
$actif = $users_ass['actif'];
|
|
$actVisible = $users_ass['actVisible'];
|
|
$reInit = $users_ass['reInit'];
|
|
$codeLangue = $users_ass['codeLangue'];
|
|
$AffectionVisible = $users_ass['AffectionVisible'];
|
|
|
|
$codePointVente = $users_ass['codePointVente'];
|
|
$filtrePointVente = $users_ass['filtrePointVente'];
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<input class="sr-only" type="text" id="idUtilisateur" name="idUtilisateur" value="<?= $idUtilisateur ?>" >
|
|
|
|
<legend> <?= _("Modifier l'Utilisateur du centre de gestion") . ": " . $codeUtilisateur ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="7%" class="required"> <?= _("Nom") ?> </td>
|
|
<td width="45%" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="nom" NAME="nom" value="<?=$this->nettoyer($users_ass['nom'])?>" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="12%" align="center" class="required"> <?= _("Prenoms") ?> </td>
|
|
<td colspan="3" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="prenoms" NAME="prenoms" value="<?=$this->nettoyer($users_ass['prenoms'])?>" required></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="required"> <?= _("Profil") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-control selectpicker" data-live-search="true" id="codeProfil" NAME="codeProfil" required AUTOCOMPLETE="OFF" >
|
|
<?php liste_options($profil, $codeProfil); ?>
|
|
</SELECT>
|
|
</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-select" id="actVisibleUser" NAME="actVisibleUser" >
|
|
<?php liste_options($user_actVisible, $actVisible, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="required"> <?= _("Téléphone") ?> </td>
|
|
<td><INPUT style='font-size:10pt;' class="form-control" TYPE="tel" id="telephone" NAME="telephone" value="<?=$this->nettoyer( $users_ass['telephone'])?>" required></td>
|
|
|
|
<td align="center" class="required"> E-mail </td>
|
|
<td colspan="3" > <INPUT style='font-size:10pt;' class="form-control" TYPE="email" id="email" NAME="email" value="<?=$this->nettoyer( $users_ass['email'])?>" required > </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td > <?= _("Langue") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-select" 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-select" id="AffectionVisible" NAME="AffectionVisible" >
|
|
<?php liste_options($user_AffectionVisible, $AffectionVisible, true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="required"> <?= _("Point Vente") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-select" id="codePointVente" NAME="codePointVente" >
|
|
<?php liste_options($pointvente, $codePointVente); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center" class="required"> <?= _("Filtre Point Vente?") ?> </td>
|
|
<td colspan="3">
|
|
<SELECT style="font-size:10pt;" class="form-select" id="filtrePointVente" NAME="filtrePointVente" >
|
|
<?php liste_options($user_FiltrePointVente, $filtrePointVente); ?>
|
|
</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_usersassureur();" 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_usersassureur();" style='font-size:9pt;' > </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|