diff --git a/Class/class.newFiche.php b/Class/class.newFiche.php index 03cbab4..2c7a793 100644 --- a/Class/class.newFiche.php +++ b/Class/class.newFiche.php @@ -127,7 +127,7 @@ class Class_newFiche /** * UPDATE LES INFOS DE LA FICHE */ - public function updateFile(int $nbJustif, float $mttValid): bool + public function updateRemboursement(int $nbJustif, float $mttValid): bool { $req = 'UPDATE remboursement SET "rNbJustificatifs" = :nbJustif, diff --git a/controleurs/c_actionFiche.php b/controleurs/c_actionFiche.php index bf11f66..6ad575e 100644 --- a/controleurs/c_actionFiche.php +++ b/controleurs/c_actionFiche.php @@ -11,8 +11,10 @@ $pdoNewFiche = new Class_newFiche($pdo, $id[0], $id[1]); switch ($_GET['action']) { case 'update': + $mttValid = 0; //FRAIS FORFAITAIRES foreach ($_REQUEST['fraisF'] as $value) { + $mttValid = $mttValid + $value['montant']; $pdoNewFiche->updateFraisF( $value['quantité'], intval($value['montant']), @@ -20,8 +22,12 @@ switch ($_GET['action']) { ); } //FRAIS HORS FORFAIT + $nbJustif = 0; foreach ($_REQUEST['fraisHF'] as $value) { + //SI le fraisHf ne possède pas d'id de la bdd if ($value['id'] == NULL) { + $mttValid = $mttValid + $value['montant']; + $nbJustif = $nbJustif + 1; $pdoNewFiche->addFraisHF( $value['libelle'], $value['date'], @@ -29,9 +35,13 @@ switch ($_GET['action']) { ); } } + //mise a jour de la fiche remboursement + $pdoNewFiche->updateRemboursement($nbJustif, $mttValid); + break; case 'suprFraisHF': $pdoNewFiche->suprLigneHF($_GET['idFrais']); + $pdoNewFiche->updateRemboursement($_GET['$nbJustif'], $_GET['mttValid']); break; case 'refusFraisHF': $pdoNewFiche->accceptFrais( diff --git a/include/newFiche.js b/include/newFiche.js index 7818973..20b7257 100644 --- a/include/newFiche.js +++ b/include/newFiche.js @@ -174,7 +174,7 @@ $(document).on('click', '#sendFileBtn', function () { method: "POST", data: data, }).done(function () { - location.reload(); + //location.reload(); }) }) diff --git a/vues/v_gestionFiches.php b/vues/v_gestionFiches.php index 63f0533..d67d844 100644 --- a/vues/v_gestionFiches.php +++ b/vues/v_gestionFiches.php @@ -66,7 +66,7 @@ PAGINATION: --> - 0) { ?> + 1) { ?>