menuvue = new Menuvueutilisateur(); $this->menuvue->getMenuVue('Modifieracte'); $this->acte = new Acte(); $this->familleacte = new Familleacte(); $this->oui_non = new Ouinon(); $this->garantie = new Garantie(); $this->tarif = new Tarifsactes(); $this->typeprestation = new Typeprestation(); } public function index() { // $_SESSION['idActe_C'] = $this->requete->getParametre("idActe"); $_SESSION['idActe_C'] = $this->requete->getParametre("id"); $idActe = $_SESSION['idActe_C']; $acte = $this->acte->getcaracteristiqueunsacte($idActe); $familleacte = $this->familleacte->getListeCode(); $acte_miseEnObservation = $this->oui_non->getListe(); $acte_ententePrealable = $this->oui_non->getListe(); $acte_exclu = $this->oui_non->getListe(); $acte_chirurgie = $this->oui_non->getListe(); $acte_actif = $this->oui_non->getListe(); $garanties = $this->garantie->getListePourActe(); $tarifs = $this->tarif->getListeCreation(); $typesprestation = $this->typeprestation->getListe(); $acte_alerte = $this->oui_non->getListe(); $lettrecle = $this->tarif->getListeLettreCle(); $this->genererVue(array('acte' => $acte, 'acte_ententePrealable' => $acte_ententePrealable, 'acte_exclu' => $acte_exclu, 'acte_chirurgie' => $acte_chirurgie, 'acte_actif' => $acte_actif, 'familleacte' => $familleacte, 'lettrecle' => $lettrecle, 'garanties' => $garanties, 'tarifs' => $tarifs, 'typesprestation' => $typesprestation, 'acte_alerte' => $acte_alerte, 'acte_miseEnObservation' => $acte_miseEnObservation)); } }