This commit is contained in:
2025-12-24 14:05:19 +00:00
parent c5a04e6f6a
commit 94e467a300
3 changed files with 14 additions and 8 deletions

View File

@@ -19,7 +19,13 @@ class Synthese extends Modele {
{
$idClient = $_SESSION['idClient_C'];
$sql = 'call sp_c_dashboard_claims_by_client(?)';
if (est_anglophone())
{
$sql = 'call sp_c_dashboard_claims_by_client_eng(?)';
}else{
$sql = 'call sp_c_dashboard_claims_by_client(?)';
}
$resultat = $this->executerRequete($sql, array($idClient));