ajout liste selon utilisateur

This commit is contained in:
Theo 2024-01-11 09:13:35 +01:00
parent 63eddbbc8b
commit 4eac346ff2
2 changed files with 33 additions and 21 deletions

View File

@ -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");

View File

@ -4,12 +4,10 @@
<?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
*/
} else { ?>
<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) {
@ -17,10 +15,14 @@
$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">Envoyer</button>
<button type="submit" class="btn btn-dark m-2" >Selectionner</button>
<!-- Fin du formulaire -->
<?php }
?>