23 lines
682 B
PHP
Executable File
23 lines
682 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Ententeprealable.php';
|
|
|
|
class ControleurAjaxactesexclusbenficiaire extends Controleur {
|
|
private $ententeprealable;
|
|
|
|
public function __construct() {
|
|
$this->ententeprealable = new Ententeprealable();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$idBeneficiaire = $_SESSION['idBeneficiaire_C'];
|
|
$d1 = $this->requete->getParametreDate("d1");
|
|
$d2 = $this->requete->getParametreDate("d2");
|
|
|
|
$ententeprealables = $this->ententeprealable->getacteexclusbenficiaire($idBeneficiaire, $d1, $d2);
|
|
|
|
$this->genererVueAjax(array('ententeprealables' => $ententeprealables));
|
|
}
|
|
}
|