diff --git a/Class/class.newFiche.php b/Class/class.newFiche.php index 2c7a793..5ef3619 100644 --- a/Class/class.newFiche.php +++ b/Class/class.newFiche.php @@ -216,4 +216,17 @@ class Class_newFiche return $result->execute(); } + + public function validSheet(): bool + { + $req = 'UPDATE remboursement + SET "rEtat" = \'RB\' + WHERE "rVisiteur" = :visiteur AND "rMois" = :mois; + '; + $result = $this->pdo->prepare($req); + $result->bindParam('visiteur', $this->userId); + $result->bindParam('mois', $this->month); + + return $result->execute(); + } } diff --git a/controleurs/c_actionFiche.php b/controleurs/c_actionFiche.php index 6ad575e..d9e4841 100644 --- a/controleurs/c_actionFiche.php +++ b/controleurs/c_actionFiche.php @@ -38,6 +38,24 @@ switch ($_GET['action']) { //mise a jour de la fiche remboursement $pdoNewFiche->updateRemboursement($nbJustif, $mttValid); + break; + case 'valid': + $mttValid = 0; + //FRAIS FORFAITAIRES + foreach ($_REQUEST['fraisF'] as $value) { + $mttValid = $mttValid + $value['montant']; + $pdoNewFiche->updateFraisF( + $value['quantité'], + intval($value['montant']), + $value['id'] + ); + } + $nbJustif = $_REQUEST['nbJustif']; + + //mise a jour de la fiche remboursement + $pdoNewFiche->updateRemboursement($nbJustif, $mttValid); + $pdoNewFiche->validSheet(); + break; case 'suprFraisHF': $pdoNewFiche->suprLigneHF($_GET['idFrais']); diff --git a/controleurs/c_connexion.php b/controleurs/c_connexion.php index 61e3ced..9b35e12 100644 --- a/controleurs/c_connexion.php +++ b/controleurs/c_connexion.php @@ -2,6 +2,7 @@ require_once(__DIR__ . '/../Class/class.user.php'); $userClass = new Class_user($pdo); + if (isset($_POST['login']) && isset($_POST['password'])) { //Récupère les données de l'utilisateur $data = $userClass->connectUser($_POST['login'], $_POST['password']); diff --git a/include/newFiche.js b/include/newFiche.js index 20b7257..fe14e9c 100644 --- a/include/newFiche.js +++ b/include/newFiche.js @@ -174,10 +174,48 @@ $(document).on('click', '#sendFileBtn', function () { method: "POST", data: data, }).done(function () { - //location.reload(); + location.reload(); }) }) +/** + * Partie Validation fiche par le comptable + */ +$(document).on('click', '#validSheetBtn', 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); + }) + + nbFraisHf = $('tr.fraisHF').length + + data = { + fraisF: listeFraisF, + nbJustif: nbFraisHf + } + fiche = $('#idFiche').attr('data-id') + + $.ajax({ + url: "controleurs/c_actionFiche.php?action=valid&fiche=" + fiche, + // 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/vues/v_fichesAvalider.php b/vues/v_fichesAvalider.php index 387e6f3..a3b37e3 100644 --- a/vues/v_fichesAvalider.php +++ b/vues/v_fichesAvalider.php @@ -14,13 +14,13 @@ - + dateComplete($uneFiche['rMois']) ?> - + @@ -29,11 +29,11 @@ - voir + + voir - + @@ -51,20 +51,19 @@
  • "> - +
  • "> - Suivante + Suivante
  • +} +; +?> \ No newline at end of file diff --git a/vues/v_newFiche.php b/vues/v_newFiche.php index 37a4665..2dd86da 100644 --- a/vues/v_newFiche.php +++ b/vues/v_newFiche.php @@ -155,9 +155,18 @@ if ($disabled == ''): ?>
    - + + + + + + +