From 85c00fde0afa3eaf2b301bd9e0c049890b9aaa81 Mon Sep 17 00:00:00 2001 From: Pierr0 Date: Sat, 30 Dec 2023 19:18:25 +0100 Subject: [PATCH] javascript et finalisation de la vue new fiche avant l'ajout de modification/ajout de fiche --- Class/class.newFiche.php | 16 ++++++++++- controleurs/c_nouvelleFiche.php | 42 +++++++++++++++++++++++++-- include/menu.php | 2 +- include/newFiche.js | 43 ++++++++++++++++++++++----- vues/v_connexion.php | 22 -------------- vues/v_newFiche.php | 51 ++++++++++++++++++++++++--------- 6 files changed, 129 insertions(+), 47 deletions(-) delete mode 100644 vues/v_connexion.php 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 @@
  • - Fiche du mois + Fiche du mois
  • diff --git a/include/newFiche.js b/include/newFiche.js index 330df48..e7643d2 100644 --- a/include/newFiche.js +++ b/include/newFiche.js @@ -1,6 +1,8 @@ $(document).ready(function () { calcPrixTotalFrsF(); + calcPrixTotalFrsHorsF(); + updatePrixTotal(); /** * Partie enregistrement frais F */ @@ -19,6 +21,7 @@ $(document).ready(function () { formTotal.html((val * mttFrs).toFixed(2) + ' €'); calcPrixTotalFrsF(); + updatePrixTotal(); } }) @@ -56,16 +59,11 @@ $(document).ready(function () { if (canAdd == true) { var line = $('tr.fraisHF:first').clone(); lastId = $('tr.fraisHF').length - /* - line.find("#dateFrsHF").html(date.val()); - line.find("#LibelleFrsHF").html(libelle.val()); - line.find("#MttFrsHF").html(parseFloat(montant.val()).toFixed(2) + ' €'); -*/ line.find('.btn').attr('id', 'frsSup-' + lastId) var line = $(''); - var tdDate = $(''); + var tdDate = $(''); tdDate.html(date.val()); var tdLibelle = $(''); tdLibelle.html(libelle.val()); @@ -81,7 +79,14 @@ $(document).ready(function () { $(line).append(btn) line.insertBefore('.newFraisForm') + + date.val('') + libelle.val('') + montant.val('') } + + calcPrixTotalFrsHorsF(); + updatePrixTotal(); }) @@ -95,10 +100,12 @@ $(document).on('click', '.btnSuprFraisHf', function () { console.log(id) $('#fraisHf-' + id).remove() + calcPrixTotalFrsHorsF(); + updatePrixTotal(); }) /** -* Calcul prix total +* Calcul prix total frais forfaitaires */ function calcPrixTotalFrsF() { @@ -107,4 +114,26 @@ function calcPrixTotalFrsF() { prixTotal += parseFloat($(this).html().replace('€', '')) }) $('.prixTotalFrsF').html('TOTAL : ' + prixTotal.toFixed(2) + ' €') + $('.prixTotalFrsF').attr('data-prix', prixTotal.toFixed(2)) +} +/** + * Calcul prix total frais hors forfait + */ +function calcPrixTotalFrsHorsF() { + + var prixTotal = 0; + $('td#MttFrsHF').each(function () { + prixTotal += parseFloat($(this).html().replace('€', '')) + }) + $('#total-frais-HF').html('TOTAL : ' + prixTotal.toFixed(2) + ' €') + $('#total-frais-HF').attr('data-prix', prixTotal.toFixed(2)) +} +/** + * Calcul prix total de la fiche + */ +function updatePrixTotal() { + var total = parseFloat($('#total-frais-HF').attr('data-prix')) + total += parseFloat($('.prixTotalFrsF').attr('data-prix')) + + $('#total-fiche').html('TOTAL : ' + total.toFixed(2) + ' €') } \ No newline at end of file diff --git a/vues/v_connexion.php b/vues/v_connexion.php deleted file mode 100644 index f269327..0000000 --- a/vues/v_connexion.php +++ /dev/null @@ -1,22 +0,0 @@ - -
    -

    Identification utilisateur

    - - -
    - - -

    - - -

    -

    - - -

    - - -

    -
    - -
    \ No newline at end of file diff --git a/vues/v_newFiche.php b/vues/v_newFiche.php index e7605f1..8fd43f5 100644 --- a/vues/v_newFiche.php +++ b/vues/v_newFiche.php @@ -1,7 +1,9 @@
    -

    Nouvelle Fiche de frais

    +

    Fiche de frais


    -

    Mois de Novembre 2023

    +

    Mois de + +


    - - + + + @@ -104,17 +115,29 @@ + + + TOTAL: 0€ + - - + + +
    + +
    +
    - +
    \ No newline at end of file