This commit is contained in:
KANE LAZENI 2026-06-13 20:21:25 +00:00
parent 2a4ee2e824
commit f40ebe0ecc

View File

@ -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));
}