This commit is contained in:
KANE LAZENI 2026-01-04 13:36:54 +00:00
parent f0c9520634
commit 2fde2b09ad

View File

@ -84,4 +84,16 @@ class Beneficiaire_temp extends Modele {
$beneficiaires = $this->executerRequete($sql, array($id_college_temp, $user));
return $beneficiaires->fetchAll(PDO::FETCH_ASSOC);
}
public function get_frais_carte_college($idCollege)
{
$sql = 'select fn_get_frais_carte_college(?) as fraisCarte';
$resultat = $this->executerRequete($sql, array($idCollege));
$ligne = $resultat->fetch(PDO::FETCH_ASSOC);
return $ligne['fraisCarte'];
}
}