This commit is contained in:
KANE LAZENI 2026-01-20 05:31:58 +00:00
parent 0f702ab164
commit 2785fc67dd

View File

@ -23,24 +23,24 @@ class ControleurAjaxmouvementassurevalider extends Controleur {
{ {
$idMvtTemp = $this->requete->getParametreFormulaire("idMvtTemp"); $idMvtTemp = $this->requete->getParametreFormulaire("idMvtTemp");
$choix = $this->requete->getParametreFormulaire("choix"); $choix = $this->requete->getParametreFormulaire("choix");
$this->facture->selectionner_mouvements_rh($idMvtTemp, $choix); $this->mouvementassure->selectionner_mouvements_rh($idMvtTemp, $choix);
} }
public function selectionnertout() public function selectionnertout()
{ {
$choix = $this->requete->getParametreFormulaire("choix"); $choix = $this->requete->getParametreFormulaire("choix");
$this->facture->selectionner_facture_gc_tout($choix); $this->mouvementassure->selectionner_facture_gc_tout($choix);
} }
public function validerselection() public function validerselection()
{ {
$this->facture->valider_factures_gc_non_sel(); $this->mouvementassure->valider_factures_gc_non_sel();
$idGcReglement = $_SESSION['idGcReglement']; $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)); $this->genererVueAjax(array('reglement' => $reglement, 'composante' => $composante));
} }