This commit is contained in:
KONE SOREL 2026-01-22 13:01:15 +00:00
parent 5a56b039c9
commit 36c999ead3

View File

@ -217,5 +217,19 @@ class Ged extends Modele {
$this->executerRequete($sql, array($idGed, $motifSuppression, $user));
}
public function getgedRd()
{
$idDemandeRemboursement = $_SESSION['idDemandeRemboursement'] ?? '0';
$sql = 'call sp_a_get_ged_adherent_rd(?)';
$resultat = $this->executerRequete($sql, array($idDemandeRemboursement));
return $resultat->fetchAll(PDO::FETCH_ASSOC);
}
}