menuvue = new Menuvueutilisateur(); $this->menuvue->getMenuVue('Nouveleacte'); $this->familleacte = new Familleacte(); $this->oui_non = new Ouinon(); $this->garantie = new Garantie(); $this->tarif = new Tarifsactes(); $this->typeprestation = new Typeprestation(); } public function index() { $actesHarmonises = $_SESSION['actesHarmonises']; if( isset($actesHarmonises) && ($actesHarmonises=="1") ) { $_SESSION['codeTarifActe_C'] = "ST"; } $codeTarifActe = $_SESSION['codeTarifActe_C']; $familleacte = $this->familleacte->getListeFamilleActeTarifCombo($codeTarifActe); // $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_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)); } }