From f40ebe0ecc310bac110cbbc152b95472dd60dfe4 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Sat, 13 Jun 2026 20:21:25 +0000 Subject: [PATCH] a --- Controleur/ControleurAjaxlisteacteexamen.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Controleur/ControleurAjaxlisteacteexamen.php b/Controleur/ControleurAjaxlisteacteexamen.php index 7b333255..ea7229ab 100755 --- a/Controleur/ControleurAjaxlisteacteexamen.php +++ b/Controleur/ControleurAjaxlisteacteexamen.php @@ -3,16 +3,19 @@ require_once 'Framework/Controleur.php'; require_once 'Modele/Ententeprealable.php'; require_once 'Modele/Affection.php'; require_once 'Modele/Ged.php'; +require_once 'Modele/Ouinon.php'; class ControleurAjaxlisteacteexamen extends Controleur { private $ententeprealable; private $affection; private $ged; + private $oui_non; public function __construct() { $this->ententeprealable = new Ententeprealable(); $this->affection = new Affection(); $this->ged = new Ged(); + $this->oui_non = new Ouinon(); } public function index() @@ -42,8 +45,10 @@ class ControleurAjaxlisteacteexamen extends Controleur { $geds = array(); } + $article52OuiNon = $this->oui_non->getListe(); + $this->genererVueAjax(array('entete' => $entete, 'ententeprealables' => $ententeprealables, 'numeroBon' => $numeroBon, 'affections' => $affections, - 'geds' => $geds)); + 'geds' => $geds, 'article52OuiNon' => $article52OuiNon)); }