From 2785fc67dddb7e856f2429ab66b5cecc27cba358 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Tue, 20 Jan 2026 05:31:58 +0000 Subject: [PATCH] a --- Controleur/ControleurAjaxmouvementassurevalider.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Controleur/ControleurAjaxmouvementassurevalider.php b/Controleur/ControleurAjaxmouvementassurevalider.php index 4dd1587..4e2122f 100644 --- a/Controleur/ControleurAjaxmouvementassurevalider.php +++ b/Controleur/ControleurAjaxmouvementassurevalider.php @@ -23,24 +23,24 @@ class ControleurAjaxmouvementassurevalider extends Controleur { { $idMvtTemp = $this->requete->getParametreFormulaire("idMvtTemp"); $choix = $this->requete->getParametreFormulaire("choix"); - $this->facture->selectionner_mouvements_rh($idMvtTemp, $choix); + $this->mouvementassure->selectionner_mouvements_rh($idMvtTemp, $choix); } public function selectionnertout() { $choix = $this->requete->getParametreFormulaire("choix"); - $this->facture->selectionner_facture_gc_tout($choix); + $this->mouvementassure->selectionner_facture_gc_tout($choix); } public function validerselection() { - $this->facture->valider_factures_gc_non_sel(); + $this->mouvementassure->valider_factures_gc_non_sel(); $idGcReglement = $_SESSION['idGcReglement']; - $reglement = $this->facture->getgcreglement($idGcReglement); + $reglement = $this->mouvementassure->getgcreglement($idGcReglement); - $composante = $this->facture->getListeCompsanteReglement(); + $composante = $this->mouvementassure->getListeCompsanteReglement(); $this->genererVueAjax(array('reglement' => $reglement, 'composante' => $composante)); }