acte = new Detailtarifacte(); $this->prescription = new Prestationactes(); } public function index() { $libelle = $this->requete->getParametreFormulaire("libelle"); if ($libelle=="vide" || $libelle=="") { $actes = $this->acte->getactesexamenvide(); }else{ $actes = $this->acte->getactesmedicauxpossibles($libelle); } $this->genererVueAjax(array('actes' => $actes)); } public function actecharge() { $codeActe = $this->requete->getParametreFormulaire("codeActe"); $acte_charge = $this->acte->chargerinfosacte($codeActe); $this->genererVueAjax(array('acte_charge' => $acte_charge)); } }