This commit is contained in:
2026-01-04 17:42:34 +00:00
parent 988f7d15ef
commit ea3cd09389
3 changed files with 14 additions and 2 deletions

View File

@@ -85,4 +85,15 @@ class Avenant extends Modele {
$liste = $this->executerRequete($sql, array($idPolice));
return $liste->fetchAll(PDO::FETCH_ASSOC);
}
public function getAvenantIncorporation($idPolice)
{
$sql = 'call sp_avenants_police_client(?)';
$resultat = $this->executerRequete($sql, array($idPolice));
return $resultat->fetchAll(PDO::FETCH_ASSOC);
}
}