Skip to content
Snippets Groups Projects
Commit 7de795c8 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Correction filtre "noIndividu" erroné.

parent a5867544
No related branches found
No related tags found
No related merge requests found
......@@ -15,12 +15,12 @@ class People extends Filter
/**
* Génère un filtre de recherche par numéro Harpège
*
* @param string $numero Numéro Harpère d'un individu
* @param string|integer $numero Numéro Harpère d'un individu
* @return self
*/
public static function noIndividu($numero)
{
return self::equals('supannEmpId', $numero);
return self::equals('supannEmpId', sprintf("%08s", intval($numero)));
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment