From df7599ab9b4bb5800fc9f0f4a7fe0e9b940eb98d Mon Sep 17 00:00:00 2001 From: Pierr0 Date: Fri, 5 Jan 2024 22:36:58 +0100 Subject: [PATCH] =?UTF-8?q?mise=20=C3=A0=20jour=20de=20la=20bdd=20pour=20l?= =?UTF-8?q?es=20fiches=20de=20frais=20et=20suppression=20des=20hors=20forf?= =?UTF-8?q?ait?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Class/class.newFiche.php | 107 +++++++++++++++++++++++++++++++- controleurs/c_actionFiche.php | 40 ++++++++++++ controleurs/c_nouvelleFiche.php | 9 +-- include/newFiche.js | 62 +++++++++++++++++- sqlFunction.sql | 55 ++++++++++++++++ sqlFunction.txt | 24 ------- vues/v_newFiche.php | 48 +++++++------- 7 files changed, 290 insertions(+), 55 deletions(-) create mode 100644 controleurs/c_actionFiche.php create mode 100644 sqlFunction.sql delete mode 100644 sqlFunction.txt diff --git a/Class/class.newFiche.php b/Class/class.newFiche.php index eca0ed7..74014e1 100644 --- a/Class/class.newFiche.php +++ b/Class/class.newFiche.php @@ -1,9 +1,12 @@ fetch()['rMontantValide']; } + /** + * RETOURNE LE STATUS DE LA FICHE + */ public function getStatus(): string { $req = 'select etat."eId" from remboursement @@ -115,4 +122,98 @@ class Class_newFiche return $result->fetch()['eId']; } + + /** + * UPDATE LES INFOS DE LA FICHE + */ + public function updateFile(int $nbJustif, float $mttValid): bool + { + $req = 'UPDATE remboursement + SET "rNbJustificatifs" = :nbJustif, + "rMontantValide" = :mttValid, + "rDateModif" = NOW() + WHERE "rVisiteur" = :idVisiteur AND "rMois" = :mois;'; + + $result = $this->pdo->prepare($req); + + $result->bindParam(':nbJustif', $nbJustif); + $result->bindParam(':mttValid', $mttValid); + $result->bindParam(':idVisiteur', $this->userId); + $result->bindParam(':mois', $this->month); + + return $result->execute(); + } + + /** + * AJOUTE LES LIGNES HF + */ + public function addFraisHF(string $libelle, string $date, float $montant): bool + { + $req = 'SELECT MAX("lhId")+1 + FROM ligne_hors_forfait'; + $result = $this->pdo->prepare($req); + $result->execute(); + $idLigne = $result->fetch()[0]; + + $req = 'INSERT INTO ligne_hors_forfait + VALUES (:idLigne, :userId, :monthF, :libelle, :dateL, :mttF, \'true\', \'false\');'; + $result = $this->pdo->prepare($req); + $result->bindParam(':idLigne', $idLigne); + $result->bindParam(':libelle', $libelle); + $result->bindParam(':dateL', $date); + $result->bindParam(':mttF', $montant); + $result->bindParam(':userId', $this->userId); + $result->bindParam(':monthF', $this->month); + + return $result->execute(); + } + + /** + * Refuse ou accepte un frais HF + */ + public function accceptFrais(int $idFrais, bool $state) + { + $req = 'UPDATE ligne_hors_forfait + SET "lhRefus" = :stateF + WHERE "rVisiteur" = :userId AND "rMois" = :monthF AND "lhId" = :idFrais;'; + $result = $this->pdo->prepare($req); + $result->bindParam(':stateF', $state); + $result->bindParam(':idFrais', $idFrais); + $result->bindParam(':userId', $this->userId); + $result->bindParam(':monthF', $this->month); + + return $result->execute(); + } + + /** + * UPDATE LA LIGNE FRAIS FORFAITAIRES + */ + public function updateFraisF(int $qttF, int $montant, string $idForfait): bool + { + $req = 'UPDATE ligne_forfait + SET "lfQuantite" = :qttF, + "lfMontant" = :mttF + WHERE "lfVisiteur" = :userId AND "lfMois" = :monthF AND "lfForfait" = :idForfait;'; + $result = $this->pdo->prepare($req); + $result->bindParam(':qttF', $qttF); + $result->bindParam(':mttF', $montant); + $result->bindParam(':idForfait', $idForfait); + $result->bindParam(':userId', $this->userId); + $result->bindParam(':monthF', $this->month); + + return $result->execute(); + } + + /** + * SUPPRIME LA LIGNE HF + */ + public function suprLigneHF(int $idLine): bool + { + $req = 'DELETE FROM ligne_hors_forfait + WHERE "lhId" = :idLine'; + $result = $this->pdo->prepare($req); + $result->bindParam(':idLine', $idLine); + + return $result->execute(); + } } \ No newline at end of file diff --git a/controleurs/c_actionFiche.php b/controleurs/c_actionFiche.php new file mode 100644 index 0000000..85bf982 --- /dev/null +++ b/controleurs/c_actionFiche.php @@ -0,0 +1,40 @@ +updateFraisF( + $value['quantité'], + intval($value['montant']), + $value['id'] + ); + } + //FRAIS HORS FORFAIT + foreach ($_REQUEST['fraisHF'] as $value) { + if ($value['id'] == NULL) { + $pdoNewFiche->addFraisHF( + $value['libelle'], + $value['date'], + $value['montant'] + ); + } + } + break; + case 'suprFraisHF': + $pdoNewFiche->suprLigneHF($_GET['idFrais']); + break; + + default: + # code... + break; +} \ No newline at end of file diff --git a/controleurs/c_nouvelleFiche.php b/controleurs/c_nouvelleFiche.php index d5db967..f63edb8 100644 --- a/controleurs/c_nouvelleFiche.php +++ b/controleurs/c_nouvelleFiche.php @@ -2,9 +2,9 @@ require_once(__DIR__ . '/../Class/class.newFiche.php'); $typeUser = $_SESSION['uType']; //visiteur ou comptable +//$typeUser = 'comptable';//$_SESSION['uType']; //visiteur ou comptable $userId = $_SESSION['uId']; //exemple: 'b34' - /** * Gestion de la date selon la vue à afficher */ @@ -12,7 +12,7 @@ if (isset($_GET['currentList'])) { //Date des req SQL et function $date = date('Ym'); - //Date du header + //Date du header en français try { //sudo timedatectl set-local-rtc 1 $format = new IntlDateFormatter( @@ -37,8 +37,9 @@ if (isset($_GET['currentList'])) { $date = $_GET['dateListing']; } - $date = '202404'; +$date = '202312'; //TESTVAR +//Instance de l'objet newFiche qui gère toute la partie bdd $newFiche = new Class_newFiche($pdo, $userId, $date); /** @@ -63,7 +64,7 @@ $totalFraisFiche = $newFiche->getMontantValide(); * ETAT DE LA FICHE */ $status = $newFiche->getStatus(); -//$status = 'CR'; //créé +$status = 'CR'; //créé $disabled = ($status !== 'CR') ? 'disabled' : ''; include(__DIR__ . '/../vues/v_newFiche.php'); diff --git a/include/newFiche.js b/include/newFiche.js index e7643d2..25078c2 100644 --- a/include/newFiche.js +++ b/include/newFiche.js @@ -62,7 +62,7 @@ $(document).ready(function () { line.find('.btn').attr('id', 'frsSup-' + lastId) - var line = $(''); + var line = $(''); var tdDate = $(''); tdDate.html(date.val()); var tdLibelle = $(''); @@ -89,7 +89,6 @@ $(document).ready(function () { updatePrixTotal(); }) - }) /** @@ -97,13 +96,70 @@ $(document).ready(function () { */ $(document).on('click', '.btnSuprFraisHf', function () { id = $(this).attr('id').split('-')[1] - console.log(id) + fiche = $('#idFiche').attr('data-id') + idFrais = $(this).parent().parent().attr('data-id') + //SUPPRIME DE LA BD + $.ajax({ + url: "../controleurs/c_actionFiche.php?action=suprFraisHF&fiche=" + fiche + "&idFrais=" + idFrais, + method: "POST", + }) $('#fraisHf-' + id).remove() calcPrixTotalFrsHorsF(); updatePrixTotal(); }) +/** + * PARTIE ENVOIE DE LA FICHE + */ +$(document).on('click', '#sendFileBtn', function () { + + //FRAIS FORFAITAIRES + var listeFraisF = [] + $('tr.fraisForfaitaire').each(function () { + quantite = parseInt($(this).find('.frsFrt').val()) + montant = parseFloat($(this).find('.mttFrsTotal').html()) + id = $(this).attr('data-id') + + tabData = { + 'quantité': quantite, + 'montant': montant, + 'id': id + } + listeFraisF.push(tabData); + }) + + //FRAIS HF + var listeFraisHf = [] + $('tr.fraisHF').each(function () { + date = $(this).find('#dateFrsHF').html() + libelle = $(this).find('#LibelleFrsHF').html() + montant = parseFloat($(this).find('#MttFrsHF').html()) + id = $(this).attr('data-id') + + tabData = { + 'date': date, + 'libelle': libelle, + 'montant': montant, + 'id': id + } + listeFraisHf.push(tabData); + }) + data = { + fraisF: listeFraisF, + fraisHF: listeFraisHf + } + fiche = $('#idFiche').attr('data-id') + + $.ajax({ + url: "../controleurs/c_actionFiche.php?action=update&fiche=" + fiche, + method: "POST", + data: data, + }).done(function () { + location.reload(); + }) +}) + /** * Calcul prix total frais forfaitaires */ diff --git a/sqlFunction.sql b/sqlFunction.sql new file mode 100644 index 0000000..cde81fa --- /dev/null +++ b/sqlFunction.sql @@ -0,0 +1,55 @@ + +--Fonction pour créer une fiche si celle-ci n'existe pas +CREATE OR REPLACE FUNCTION newRemboursement(userId CHAR(10), monthFile CHAR(10)) RETURNS int AS $$ +DECLARE + returnValue INT; + forfaitRecord RECORD; +BEGIN + SELECT COUNT(*) INTO returnValue + FROM remboursement + WHERE "rVisiteur" = userId AND "rMois" = monthFile; + + IF returnValue = 0 THEN + -- Ajoute une nouvelle ligne à la table remboursement + INSERT INTO remboursement + VALUES(userId, monthFile, 0, 0, CURRENT_DATE, 'CR'); + + -- Parcours des lignes de la table forfait pour insérer dans ligne_hors_forfait + FOR forfaitRecord IN SELECT * FROM forfait LOOP + INSERT INTO ligne_forfait + VALUES(userId, monthFile, forfaitRecord."fId", 0, 0); + END LOOP; + + -- Mettre à jour la valeur de returnValue après l'insertion + returnValue := 1; -- Valeur pour indiquer qu'une ligne a été insérée + END IF; + + RETURN returnValue; +END; +$$ LANGUAGE 'plpgsql'; + + + + + + + + +--AJOUTE LES LIGNES HF +INSERT ligne_hors_forfait +("lhVisiteur", "lhMois", "lhLibelle", "lhDate", "lhMontant", "lhJustificatif", "lhRefus") +VALUES (:userId, :monthF, :libelle, :dateL, :mttF, 'true', 'false'); + +--UPDATE LES LIGNES HF SI REFUS +UPDATE ligne_hors_forfait +SET "lhRefus" = 'true' +WHERE "rVisiteur" = '' AND "rMois" = '' AND "lhId" = ''; + +--UPDATE LES LIGNE FORFAIT +UPDATE ligne_forfait +SET "lfQuantite" = :qttF, +"lfMontant" = :mttF +WHERE "rVisiteur" = :userId AND "rMois" = :monthF AND "lfForfait" = :idForfait; + + + diff --git a/sqlFunction.txt b/sqlFunction.txt deleted file mode 100644 index 80f04af..0000000 --- a/sqlFunction.txt +++ /dev/null @@ -1,24 +0,0 @@ - ---Fonction pour créer une fiche si celle-ci n'existe pas - -CREATE OR REPLACE FUNCTION newRemboursement(userId CHAR(10), monthFile CHAR(10)) RETURNS int AS $$ -DECLARE - returnValue INT; -BEGIN - SELECT COUNT(*) INTO returnValue - FROM remboursement - WHERE "rVisiteur" = userId AND "rMois" = monthFile; - - IF returnValue = 0 THEN - -- Ajoute une nouvelle ligne à la table remboursement - INSERT INTO remboursement - VALUES(userId, monthFile, 0, 0, CURRENT_DATE, 'CR'); - - -- Mettre à jour la valeur de returnValue après l'insertion - returnValue := 1; -- Valeur pour indiquer qu'une ligne a été insérée - END IF; - - RETURN returnValue; -END; -$$ LANGUAGE 'plpgsql'; - diff --git a/vues/v_newFiche.php b/vues/v_newFiche.php index deca165..aa7793d 100644 --- a/vues/v_newFiche.php +++ b/vues/v_newFiche.php @@ -4,6 +4,9 @@

Mois de

+

+ ID: +


- - - - - - - - - - - + ?> + + + + + + + + + + + @@ -148,7 +154,7 @@ if ($status === 'CR'): ?>
-