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 = $('
Mois de = $dateHeader ?>
++ ID: = $userId . '-' . $date ?> +