acte = new Actes_temp(); } public function index() { $prestations = $this->acte->get_prestations_ajoute_dec(); $this->genererVueAjax(array('prestations' => $prestations)); } public function ajouteractedecompte() { $codeActe = $this->requete->getParametreFormulaire("codeActe"); $ententePrealable = $this->requete->getParametreFormulaire("ententePrealable"); $this->acte->ajouteractedecompte($codeActe, $ententePrealable); $this->executerAction("index"); } public function retireractedecompte() { $idActe = $this->requete->getParametreFormulaire("idActe"); $this->acte->retireractedecompte($idActe); $this->executerAction("index"); } }