From 9aa3a1dbf4ce69395bd15f1c2b4f831f176b6cd1 Mon Sep 17 00:00:00 2001 From: pierre renaudot Date: Thu, 28 Sep 2023 15:54:31 +0200 Subject: [PATCH] visualisation et ajout des gardes pour le chef de caserne --- controleurs/c_disponibilitée.php | 27 +++++++++++++-------- include/class.pdo.php | 12 ++++++---- include/proceduresJava.js | 40 +++++++++++++++++++++++++------- vues/v_ficheGardes.php | 21 +++++++++++++---- 4 files changed, 73 insertions(+), 27 deletions(-) diff --git a/controleurs/c_disponibilitée.php b/controleurs/c_disponibilitée.php index 0f9f7ec..9e38c59 100644 --- a/controleurs/c_disponibilitée.php +++ b/controleurs/c_disponibilitée.php @@ -7,13 +7,20 @@ var_dump($_POST); $pdo = PdoBD::getPdoBD(); -var_dump($_SESSION); - -$pdo->majActivite( - $_SESSION['cis'], - $_SESSION['idUtilisateur'], - $_POST['date'], - $_POST['tranche'], - $_POST['dispo'] -); - +if (isset($_REQUEST['option']) && $_REQUEST['option'] == 'garde') { + $pdo->majGarde( + $_SESSION['cis'], + $_POST['pompier'], + $_POST['date'], + $_POST['tranche'], + $_POST['garde'] + ); +} elseif (isset($_REQUEST['option']) && $_REQUEST['option'] == 'dispo') { + $pdo->majActivite( + $_SESSION['cis'], + $_SESSION['idUtilisateur'], + $_POST['date'], + $_POST['tranche'], + $_POST['dispo'] + ); +} diff --git a/include/class.pdo.php b/include/class.pdo.php index 3fa4050..c128b8f 100644 --- a/include/class.pdo.php +++ b/include/class.pdo.php @@ -96,7 +96,7 @@ class PdoBD } /** - * Met à jour l'activité d'un pompier sur une tranche + * Met à jour les disp d'un pompier sur une tranche */ public function majActivite($cis, $idUser, $jour, $tranche, $newDispo) { @@ -136,10 +136,14 @@ class PdoBD /** * Met à jour la garde d'un pompier sur une tranche */ - public function majGarde() + public function majGarde($cis, $idUser, $jour, $tranche, $newGarde) { - $req = " - "; + $req = 'UPDATE activite + SET aGarde = ' . $newGarde . ' + WHERE aCis = ' . $cis . ' + AND aPompier = ' . $idUser . ' + AND aDateGarde = "' . $jour . '" + AND aTranche = ' . $tranche . ';'; $rs = PdoBD::$monPdo->exec($req); if ($rs === false) { afficherErreurSQL("Probleme lors de la mise à jour de la garde dans la base de données.", $req, PdoBD::$monPdo->errorInfo()); diff --git a/include/proceduresJava.js b/include/proceduresJava.js index a126ea5..170ac49 100644 --- a/include/proceduresJava.js +++ b/include/proceduresJava.js @@ -300,7 +300,7 @@ $(document).on('click', '.select-dispo', function () { "dispo" : dispo } $.ajax({ - url: "/controleurs/c_disponibilitée.php", // URL de l'API ou de la ressource + url: "/controleurs/c_disponibilitée.php?option=dispo", // URL de l'API ou de la ressource method: "POST", // Méthode HTTP (GET, POST, etc.) dataType: "json", // Type de données attendu data : tableauDeDonnees, @@ -315,13 +315,37 @@ $(document).on('click', '.select-dispo', function () { * Gere l'ajout des gardes */ $(document).on('click', '.click-garde', function () { - //console.log($(this).css('background-color')) - console.log($(this).html); - if ($(this).html() == 'X') { - $(this).html() = ""; - } else if ($(this).html() == ""){ - $(this).html() = "X"; + + date = $(this).attr('id').split('/')[0] + tranche = $(this).attr('id').split('/')[1] + idPompier = $(this).attr('id').split('/')[2] + garde = 0; + + if ($(this).text() == 'X') { + $(this).text(''); + garde = 0; + } else if ($(this).text() == ""){ + $(this).text('X'); + garde = 1; } else { - $(this).html() = "X"; + $(this).text( "X"); + garde = 0; } + + var tableauDeDonnees = { + "date" : date, + "tranche" : tranche, + "pompier" : idPompier, + "garde" : garde + } + $.ajax({ + url: "/controleurs/c_disponibilitée.php?option=garde", // URL de l'API ou de la ressource + method: "POST", // Méthode HTTP (GET, POST, etc.) + dataType: "json", // Type de données attendu + data : tableauDeDonnees, + error: function(xhr, status, error) { + // Gérer les erreurs de la requête AJAX + console.error("Erreur lors de la requête AJAX :", status, error); + } + }); }) \ No newline at end of file diff --git a/vues/v_ficheGardes.php b/vues/v_ficheGardes.php index f8ff0d2..456bf2c 100644 --- a/vues/v_ficheGardes.php +++ b/vues/v_ficheGardes.php @@ -50,13 +50,24 @@ " . $unPompier['pNom'] . " " . $unPompier['pPrenom'] . ""; for ($jour = 0; $jour <= 6; $jour++) { - for ($tranche = 0; $tranche <= 3; $tranche++) { - echo ''; - } - } + $leJour = date('Y-m-d', strtotime('+' . $jour . ' day', $premierJour)); + $dateTab = date('d/m/Y', strtotime('+' . $jour . ' day', $premierJour)); + $dispos = $lesDispos[$unPompier['pId']][$dateTab]; + for ($tranche = 1; $tranche <= 4; $tranche++) { + $couleur = 'c' . $tranche; + $garde = 'g' . $tranche; + $dispo = 'd' . $tranche; + + echo '' + . (($dispos[$garde] == 1) ? 'X' : '') + . ''; + } + } echo ("" . PHP_EOL . " "); - // TODO POUR AFFICHER LES GARDES } ?>