31 lines
796 B
PHP
Executable File
31 lines
796 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Produit.php';
|
|
//require_once $_SESSION['dossierSociete'].'/Tarifs/Modele/College_temp.php';
|
|
|
|
class ControleurAjaxfiltreticketmoderateur extends Controleur {
|
|
//private $college_temp;
|
|
private $produit;
|
|
|
|
public function __construct() {
|
|
//$this->college_temp = new College_temp();
|
|
$this->produit = new Produit();
|
|
}
|
|
|
|
public function index() {
|
|
|
|
$idBaremePriseEnCharge = $this->requete->getParametreFormulaire('idBaremePriseEnCharge');
|
|
|
|
|
|
$ticketModerateurCollege = $this->produit->getTicketModerateurBareme($idBaremePriseEnCharge);
|
|
|
|
|
|
$this->genererVueAjax(array(
|
|
'ticketModerateurCollege' => $ticketModerateurCollege
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|