diff --git a/Class/class.newFiche.php b/Class/class.newFiche.php index 6693c77..57193c9 100644 --- a/Class/class.newFiche.php +++ b/Class/class.newFiche.php @@ -39,7 +39,7 @@ class Class_newFiche { $req = 'SELECT to_char("lhDate", \'YYYY-mm-dd\') AS "lhDate", "lhLibelle", ROUND("lhMontant",2) as "lhMontant", - "lhJustificatif", "lhRefus" + "lhJustificatif", "lhRefus" FROM remboursement inner join "ligne_hors_forfait" on "rVisiteur" = "lhVisiteur" AND "rMois" = "lhMois" @@ -54,4 +54,18 @@ class Class_newFiche return $result->fetchAll(); } + + public function getMontantValide(string $idVisiteur, int $month): float + { + $req = 'SELECT "rMontantValide" + FROM remboursement + WHERE "rVisiteur" = :idVisiteur AND "rMois" = :mois ;'; + + $result = $this->pdo->prepare($req); + $result->bindParam(':idVisiteur', $idVisiteur); + $result->bindParam(':mois', $month); + $result->execute(); + + return $result->fetchAll()[0]['rMontantValide']; + } } \ No newline at end of file diff --git a/controleurs/c_nouvelleFiche.php b/controleurs/c_nouvelleFiche.php index f28eb2b..ccf7286 100644 --- a/controleurs/c_nouvelleFiche.php +++ b/controleurs/c_nouvelleFiche.php @@ -4,11 +4,45 @@ require_once(__DIR__ . '/../Class/class.newFiche.php'); $newFiche = new Class_newFiche($pdo); $_SESSION['userId'] = 'b34'; +$_SESSION['typeU'] = 'visiteur'; +$date = '202011'; + +/** + * Gestion de la date selon la vue à afficher + */ +if (isset($_GET['currentList'])) { + //Date des req SQL et function + $date = date('Ym'); + + //Date du header + try { + //sudo timedatectl set-local-rtc 1 + $format = new IntlDateFormatter( + 'fr_FR', + IntlDateFormatter::FULL, + IntlDateFormatter::FULL, + 'Europe/Paris', + IntlDateFormatter::GREGORIAN, + 'MMMM Y' + ); + $dateHeader = $format->format(time()); + + } catch (\Throwable $th) { + $dateHeader = date('F Y'); + } + + //Date du formulaire HF + $dateFormHFMin = date('Y-m-\01'); + $dateFormHFMax = date("Y-m-t", mktime(0, 0, 0, date('m'), 1, date('Y'))); // retourne le dernier jour du mois (30 ou 31) + +} elseif (isset($_GET['dateListing'])) { + $date = $_GET['dateListing']; +} /** * Liste des frais forfaitaires du mois et de l'user :: sinon afficher les libelle */ -$listeFraisForfaitaire = $newFiche->listFraisForfaitForU($_SESSION['userId'], '202011'); +$listeFraisForfaitaire = $newFiche->listFraisForfaitForU($_SESSION['userId'], $date); if (count($listeFraisForfaitaire) == 0) { $listeFraisForfaitaire = $newFiche->listFraisForfaitaires(); } @@ -16,7 +50,11 @@ if (count($listeFraisForfaitaire) == 0) { /** * Listes des frais HF */ -$listeFraisHf = $newFiche->listFraisHF($_SESSION['userId'], '202011'); +$listeFraisHf = $newFiche->listFraisHF($_SESSION['userId'], $date); +/** + * TOTAL DE LA FICHE + */ +$totalFraisFiche = $newFiche->getMontantValide($_SESSION['userId'], $date); include(__DIR__ . '/../vues/v_newFiche.php'); diff --git a/include/menu.php b/include/menu.php index 140d9a9..b84fe5e 100644 --- a/include/menu.php +++ b/include/menu.php @@ -25,7 +25,7 @@
Mois de Novembre 2023
+Mois de + = $dateHeader ?> +