ajout liste selon utilisateur
This commit is contained in:
parent
63eddbbc8b
commit
4eac346ff2
@ -1,13 +1,23 @@
|
||||
<?php
|
||||
$_SESSION ["typeU"] = "comptable";
|
||||
$_SESSION["typeU"] = "comptable";
|
||||
|
||||
require_once(__DIR__ . '/../Class/class.gestionFiche.php');
|
||||
$gestionFiche = new Class_gestionFiche($pdo);
|
||||
|
||||
$userId = $_SESSION ['uId'];
|
||||
|
||||
$LesUtilisateurs = $gestionFiche->getLesUtilisateurs(); //RENVOIE LISTE USERS
|
||||
|
||||
if ($_SESSION["typeU"] == "comptable") {
|
||||
if (isset($_REQUEST['selVisiteur'])) {
|
||||
$userId = $_REQUEST['selVisiteur'];
|
||||
} else {
|
||||
$userId = $LesUtilisateurs[0]['uId'];
|
||||
}
|
||||
} else {
|
||||
$userId = $_SESSION['uId'];
|
||||
}
|
||||
|
||||
$lesFiches = $gestionFiche->get_ListesFiches($userId);
|
||||
|
||||
|
||||
|
||||
include("vues/v_gestionFiches.php");
|
||||
|
@ -4,25 +4,27 @@
|
||||
<?php
|
||||
if ($_SESSION['typeU'] != 'comptable') {
|
||||
echo '<h3>Gérer mes fiches de frais</h3>';
|
||||
} else {
|
||||
/**
|
||||
* Mettre dans un formulaire
|
||||
* action: index.php?direction=gestionFiche
|
||||
* method: get
|
||||
*/
|
||||
echo '<h3>Gérer les fiches de frais de :</h3>';
|
||||
echo '<select class="form-select" name="selVisiteur" id="">';
|
||||
foreach ($LesUtilisateurs as $key => $value) {
|
||||
$id = $value['uId'];
|
||||
$prenom = $value['uPrenom'];
|
||||
$nom = $value['uNom'];
|
||||
} else { ?>
|
||||
|
||||
echo '<option value="' . $id . '">' . $nom . " " . $prenom . "</option>";
|
||||
}
|
||||
echo '</select>'; ?>
|
||||
<button type="submit">Envoyer</button>
|
||||
<!-- Fin du formulaire -->
|
||||
<?php }
|
||||
<form action="index.php?direction=gestionFiche" method="POST">
|
||||
<?php
|
||||
echo '<h3>Gérer les fiches de frais de :</h3>';
|
||||
echo '<select class="form-select" name="selVisiteur" id="">';
|
||||
foreach ($LesUtilisateurs as $key => $value) {
|
||||
$id = $value['uId'];
|
||||
$prenom = $value['uPrenom'];
|
||||
$nom = $value['uNom'];
|
||||
|
||||
if ($id == $userId) {
|
||||
echo '<option value="' . $id . '" selected>' . $nom . " " . $prenom . "</option>";
|
||||
} else {
|
||||
echo '<option value="' . $id . '">' . $nom . " " . $prenom . "</option>";
|
||||
}
|
||||
}
|
||||
echo '</select>'; ?>
|
||||
<button type="submit" class="btn btn-dark m-2" >Selectionner</button>
|
||||
<!-- Fin du formulaire -->
|
||||
<?php }
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user