prestation = new Prestationactes(); } public function index() { $numeroFeuilleMaladie = $_SESSION['p_numeroFeuilleMaladie_C']; $codePrestataire = $_SESSION['p_codePrestataire_C']; $prestations = $this->prestation->getactesmedicauxfeuille($numeroFeuilleMaladie, $codePrestataire); $prestations_total = $this->prestation->getactesmedicauxfeuille_total($numeroFeuilleMaladie, $codePrestataire); $this->genererVueAjax(array('prestations' => $prestations, 'prestations_total' => $prestations_total)); } public function majquantite() { $idPrestationactes = $this->requete->getParametre("idPrestationactes"); $quantite = $this->requete->getParametreFormulaire("quantite", "numerique"); $this->prestation->majquantite($idPrestationactes, $quantite); $this->executerAction("index"); } public function majprixacte() { $idPrestationactes = $this->requete->getParametre("idPrestationactes"); $prix = $this->requete->getParametreFormulaire("prix", "numerique"); $this->prestation->majprixacte($idPrestationactes, $prix); $this->executerAction("index"); } }