diff --git a/Controleur/ControleurGedadherent.php b/Controleur/ControleurGedadherent.php index e39bb7c..0688e2a 100644 --- a/Controleur/ControleurGedadherent.php +++ b/Controleur/ControleurGedadherent.php @@ -142,8 +142,7 @@ class ControleurGedadherent extends Controleur { $d1 = $_SESSION['dUneSemaineAvant_C']; $d2 = date('Y-m-d'); - var_dump($d1, $d2, $nomOrigine, $codeNaturePiece); - die(); + $geds = $this->ged->getgedadherent($d1, $d2, $nomOrigine, $codeNaturePiece); unset($_FILES['fichier_upload']); diff --git a/Modele/Ged.php b/Modele/Ged.php index 46a756d..e27cb4f 100755 --- a/Modele/Ged.php +++ b/Modele/Ged.php @@ -76,6 +76,9 @@ class Ged extends Modele { $codeNaturePiece = contruireParamLike($codeNaturePiece); $sql = 'call sp_get_ged_adherent_rh(?, ?, ?, ?, ?);'; + + var_dump(array($idAdherent, $d1, $d2, $nomOrigine, $codeNaturePiece)); + die(); $resultat = $this->executerRequete($sql, array($idAdherent, $d1, $d2, $nomOrigine, $codeNaturePiece));