diff --git a/Class/class.gestionFiche.php b/Class/class.gestionFiche.php index 741cc28..823d41f 100644 --- a/Class/class.gestionFiche.php +++ b/Class/class.gestionFiche.php @@ -20,7 +20,7 @@ class Class_gestionFiche public function get_ListesFiches(string $idUtilisateur): array { - $req = 'SELECT "rMois", "rEtat","rNbJustificatifs","rMontantValide","eLibelle" + $req = 'SELECT "rMois", "rEtat", "rNbJustificatifs", ROUND("rMontantValide", 2) as "rMontantValide", "eLibelle" FROM remboursement INNER JOIN etat ON etat."eId"=remboursement."rEtat" WHERE "rVisiteur"= :userId @@ -33,5 +33,10 @@ class Class_gestionFiche return $result->fetchAll(); } + public function dateComplete(string $date) : string + { + return substr($date, 0, 4) . '-' . substr($date, 4); + } + } \ No newline at end of file diff --git a/Class/class.user.php b/Class/class.user.php index d40064f..e532bf9 100644 --- a/Class/class.user.php +++ b/Class/class.user.php @@ -13,7 +13,7 @@ class Class_user $this->pdo = $pDO->getPdoGsb(); } - public function connectUser(string $login, string $password): array + public function connectUser(string $login, string $password): array|bool { $req = 'SELECT "uId", "uNom", "uPrenom", "uAdresse", "uCp", "uVille", "uSecteur", "uLabo", "parametre"."pLibelle" FROM utilisateur diff --git a/controleurs/c_connexion.php b/controleurs/c_connexion.php index 6821616..6bdae1b 100644 --- a/controleurs/c_connexion.php +++ b/controleurs/c_connexion.php @@ -6,6 +6,11 @@ if (isset($_POST['login']) && isset($_POST['password'])) { //Récupère les données de l'utilisateur $data = $userClass->connectUser($_POST['login'], $_POST['password']); + if($data == false) { + header('location: index.php'); + } + + //Si l'utilisateur existe ou pas if (count($data) === 0) { header('location: index.php?direction=connexion&msg=errorco'); diff --git a/controleurs/c_nouvelleFiche.php b/controleurs/c_nouvelleFiche.php index 90417bf..11992d5 100644 --- a/controleurs/c_nouvelleFiche.php +++ b/controleurs/c_nouvelleFiche.php @@ -1,40 +1,57 @@ format(time()); - - } catch (\Throwable $th) { - $dateHeader = date('F Y'); - } + //Timestamp de la date + $dateTimeStamp = strtotime(date('Y-m-\01')); //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']; + //Données pour nourire la vue + $userId = $_REQUEST['userId']; + $date = $_REQUEST['dateListing']; + + //Timestamp de la date + $dateTimeStamp = strtotime(substr($date, 0, 4) . '-' . substr($date, 4) . '-01'); + + //Date du formulaire HF + $dateFormHFMin = substr($date, 0, 4) . '-' . substr($date, 4) . '-01'; + $dateFormHFMax = date("Y-m-t", mktime(0, 0, 0, date('m', $dateTimeStamp), 1, date('Y', $dateTimeStamp))); // retourne le dernier jour du mois (30 ou 31) + +} +//Date du header en français +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($dateFormat); + +} catch (\Throwable $th) { + $dateHeader = date('F Y', $dateTimeStamp); } //$date = '202312'; //TESTVAR diff --git a/include/newFiche.js b/include/newFiche.js index e53a6c3..e65527b 100644 --- a/include/newFiche.js +++ b/include/newFiche.js @@ -195,6 +195,12 @@ function calcPrixTotalFrsF() { */ function calcPrixTotalFrsHorsF() { + console.log($('td#MttFrsHF').length) + + if ($('td#MttFrsHF').length == 0) { + vf + } + var prixTotal = 0; $('td#MttFrsHF').each(function () { prixTotal += parseFloat($(this).html().replace('€', '')) diff --git a/vues/v_gestionFiches.php b/vues/v_gestionFiches.php index 90f7f66..1e3b819 100644 --- a/vues/v_gestionFiches.php +++ b/vues/v_gestionFiches.php @@ -43,7 +43,7 @@ - + dateComplete($uneFiche['rMois']) ?> € @@ -52,7 +52,7 @@ voir + href="index.php?direction=nouvelleFiche&userId=&dateListing=">voir