Merge branch 'main' of https://gitea.lyc-lecastel.fr/pierre.renaudot/AP44
This commit is contained in:
commit
a2201a4eb3
@ -1,13 +1,23 @@
|
|||||||
<?php
|
<?php
|
||||||
$_SESSION ["typeU"] = "comptable";
|
$_SESSION["typeU"] = "comptable";
|
||||||
|
|
||||||
require_once(__DIR__ . '/../Class/class.gestionFiche.php');
|
require_once(__DIR__ . '/../Class/class.gestionFiche.php');
|
||||||
$gestionFiche = new Class_gestionFiche($pdo);
|
$gestionFiche = new Class_gestionFiche($pdo);
|
||||||
|
|
||||||
$userId = $_SESSION ['uId'];
|
|
||||||
|
|
||||||
$LesUtilisateurs = $gestionFiche->getLesUtilisateurs(); //RENVOIE LISTE USERS
|
$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);
|
$lesFiches = $gestionFiche->get_ListesFiches($userId);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
include("vues/v_gestionFiches.php");
|
include("vues/v_gestionFiches.php");
|
||||||
|
@ -4,25 +4,27 @@
|
|||||||
<?php
|
<?php
|
||||||
if ($_SESSION['typeU'] != 'comptable') {
|
if ($_SESSION['typeU'] != 'comptable') {
|
||||||
echo '<h3>Gérer mes fiches de frais</h3>';
|
echo '<h3>Gérer mes fiches de frais</h3>';
|
||||||
} else {
|
} 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'];
|
|
||||||
|
|
||||||
echo '<option value="' . $id . '">' . $nom . " " . $prenom . "</option>";
|
<form action="index.php?direction=gestionFiche" method="POST">
|
||||||
}
|
<?php
|
||||||
echo '</select>'; ?>
|
echo '<h3>Gérer les fiches de frais de :</h3>';
|
||||||
<button type="submit">Envoyer</button>
|
echo '<select class="form-select" name="selVisiteur" id="">';
|
||||||
<!-- Fin du formulaire -->
|
foreach ($LesUtilisateurs as $key => $value) {
|
||||||
<?php }
|
$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>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user