From dbc47d147b63c2c803c184b021d973ff8e6a9244 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Wed, 24 Jun 2026 22:21:14 +0000 Subject: [PATCH] a --- Controleur/ControleurAjaxdetailprescription.php | 15 --------------- 1 file changed, 15 deletions(-) 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");