From e55df1b480ec7f7e5151f57aa05ec989daa803c7 Mon Sep 17 00:00:00 2001 From: Theo Date: Thu, 21 Dec 2023 11:56:22 +0100 Subject: [PATCH] gestionFiche et connectionPDO --- Class/class.gestionFiche.php | 21 +++++ controleurs/c_gestionFiche.php | 18 ++-- vues/v_gestionFiches.php | 150 +++++++++++++-------------------- 3 files changed, 86 insertions(+), 103 deletions(-) create mode 100644 Class/class.gestionFiche.php diff --git a/Class/class.gestionFiche.php b/Class/class.gestionFiche.php new file mode 100644 index 0000000..198e9f8 --- /dev/null +++ b/Class/class.gestionFiche.php @@ -0,0 +1,21 @@ +pdo = $pDO->getPdoGsb(); + } + + public function getLesUtilisateurs(): array + { + $req = 'SELECT "uId", "uNom", "uPrenom" FROM utilisateur WHERE "uStatut"!=0 ORDER BY "uNom" ASC;'; + $result = $this->pdo->prepare($req); + $result ->execute(); + + return $result->fetchAll(); + } + +} \ No newline at end of file diff --git a/controleurs/c_gestionFiche.php b/controleurs/c_gestionFiche.php index ae01c5f..a4ce1d8 100644 --- a/controleurs/c_gestionFiche.php +++ b/controleurs/c_gestionFiche.php @@ -1,15 +1,9 @@ getLesUtilisateurs(); //RENVOIE LISTE USERS + $_SESSION['typeU'] = 'comptable'; - - include("../vues/v_gestionFiches.php"); - - - - - - - - -?> \ No newline at end of file diff --git a/vues/v_gestionFiches.php b/vues/v_gestionFiches.php index 4eb38b6..bdeef9d 100644 --- a/vues/v_gestionFiches.php +++ b/vues/v_gestionFiches.php @@ -1,95 +1,63 @@ - - - - - - - - Page accueil - - - - - -
-
- - -
-
-
-

Gerer mes fiches de frais

-
- +
+
+

Gerer mes fiches de frais

+
+ '; - } - ?> -
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
MoisTotalStatutDétails
Novembre351 €en cours...voir
Octobre1458 €en cours...voir
Septembre1112 €classévoir
-
-
- -
-
-
- + } + ?>
+ - - - \ No newline at end of file +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MoisTotalStatutDétails
Novembre351 €en cours...voir
Octobre1458 €en cours...voir
Septembre1112 €classévoir
+
+
+ +
\ No newline at end of file