diff --git a/Class/class.gestionFiche.php b/Class/class.gestionFiche.php index 823d41f..fd20890 100644 --- a/Class/class.gestionFiche.php +++ b/Class/class.gestionFiche.php @@ -38,5 +38,18 @@ class Class_gestionFiche return substr($date, 0, 4) . '-' . substr($date, 4); } + public function get_ficheAvalider() : array + { + $req = 'SELECT "rMois", "rVisiteur", "rEtat", ROUND("rMontantValide", 2) as "rMontantValide", "eLibelle", "uNom", "uPrenom" + from remboursement + INNER JOIN utilisateur ON utilisateur."uId"=remboursement."rVisiteur" + INNER JOIN etat ON etat."eId"=remboursement."rEtat" + where "rEtat"=\'CL\' + ORDER BY "rMois" ASC'; + $result = $this->pdo->prepare($req); + $result ->execute(); + + return $result->fetchAll(); + } } \ No newline at end of file diff --git a/controleurs/c_ficheAvalider.php b/controleurs/c_ficheAvalider.php index 60e281d..bf2e9ab 100644 --- a/controleurs/c_ficheAvalider.php +++ b/controleurs/c_ficheAvalider.php @@ -16,7 +16,7 @@ if ($_SESSION["typeU"] == "comptable") { $userId = $_SESSION['uId']; } -$lesFiches = $gestionFiche->get_ListesFiches($userId); +$lesFiches = $gestionFiche->get_ficheAvalider(); diff --git a/vues/v_fichesAvalider.php b/vues/v_fichesAvalider.php index 5f989b3..ff01b06 100644 --- a/vues/v_fichesAvalider.php +++ b/vues/v_fichesAvalider.php @@ -1,38 +1,9 @@ -
Mois | +Nom Fiche | Total | Statut | Détails | @@ -44,6 +15,10 @@= $gestionFiche->dateComplete($uneFiche['rMois']) ?> | ++ = $uneFiche['uNom'] ?> + = $uneFiche['uPrenom'] ?> + | = $uneFiche['rMontantValide'] ?> € |
---|