This commit is contained in:
KONE SOREL 2026-01-13 18:19:48 +00:00
parent 40f7e52cba
commit fef51efa9a
2 changed files with 9 additions and 9 deletions

View File

@ -287,4 +287,13 @@ class Client extends Modele {
return $resultat->fetchAll(PDO::FETCH_ASSOC);
}
public function getusersrhclient($idClient)
{
$sql = 'call sp_c_get_users_rh(?)';
$resultat = $this->executerRequete($sql, array($idClient));
return $resultat->fetchAll(PDO::FETCH_ASSOC);
}
}

View File

@ -287,13 +287,4 @@ class Client extends Modele {
return $resultat->fetchAll(PDO::FETCH_ASSOC);
}
public function getusersrhclient($idClient)
{
$sql = 'call sp_c_get_users_rh(?)';
$resultat = $this->executerRequete($sql, array($idClient));
return $resultat->fetchAll(PDO::FETCH_ASSOC);
}
}