This commit is contained in:
KONE SOREL 2026-03-24 17:58:34 +00:00
parent 8900c49a91
commit 327d822679
2 changed files with 2 additions and 5 deletions

View File

@ -23,9 +23,6 @@ class ControleurGedadherent extends Controleur {
$nouveau_fichier = "rien";
$nomOrigine = $this->requete->getParametreFormulaire("nomOrigine");
$codeNaturePiece = $this->requete->getParametreFormulaire("codeNaturePiece");
if(!empty($_POST))
{
define('TARGET', $_SESSION['cheminGed']); // Repertoire cible
@ -141,7 +138,7 @@ class ControleurGedadherent extends Controleur {
$d2 = date('Y-m-d');
$geds = $this->ged->getgedadherent($d1, $d2, $nomOrigine, $codeNaturePiece);
$geds = $this->ged->getgedadherent($d1, $d2, "", "");
unset($_FILES['fichier_upload']);

View File

@ -93,7 +93,7 @@ class Ged extends Modele {
$sql = 'call sp_ajouter_ged_adherent_rh(?, ?, ?, ?, ?, ?, ?);';
var_dump(array($idAdherent, $nomOrigine, $cheminFichier, $taille, $user, $codeNaturePiece, $libelleAutre)); die();
//var_dump(array($idAdherent, $nomOrigine, $cheminFichier, $taille, $user, $codeNaturePiece, $libelleAutre)); die();
$this->executerRequete($sql, array($idAdherent, $nomOrigine, $cheminFichier, $taille, $user, $codeNaturePiece, $libelleAutre));
}