diff --git a/Controleur/ControleurAjaxdetailprescription.php b/Controleur/ControleurAjaxdetailprescription.php index 7d0a320..a8fb69a 100755 --- a/Controleur/ControleurAjaxdetailprescription.php +++ b/Controleur/ControleurAjaxdetailprescription.php @@ -13,8 +13,6 @@ class ControleurAjaxdetailprescription extends Controleur { private $garantie; private $ouinonrenouvelable; private $ged; - private $controle; - private $idControle; public function __construct() { $this->prescription = new Prescription(); @@ -27,16 +25,6 @@ class ControleurAjaxdetailprescription extends Controleur { public function index() { - $controle = $this->controle; - $idControle = $this->idControle; - - var_dump( - array( - "controle" => $controle, - "idControle" => $idControle, - ) - ); - $numeroPrescription = $_SESSION['p_numeroPrescription_C']; $prescription = $this->prescription->getprescription($numeroPrescription); @@ -75,9 +63,6 @@ class ControleurAjaxdetailprescription extends Controleur { $idMedicament = $this->requete->getParametre("idMedicament"); $quantite = $this->requete->getParametreFormulaire("quantite", "numerique"); - $this->controle = $this->requete->getParametre("controle"); - $this->idControle = $this->requete->getParametre("idControle"); - $this->detailprescription->majquantite($idMedicament, $quantite); $this->executerAction("index");