Commit 86891178 authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

Fix : private methode (Recherche avancée)

parent 807fbc11
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -1176,7 +1176,7 @@ class ProjectGrantSearchService implements UseEntityManager, UsePersonService, U
     * Retourne la liste des comptes (Plan comptable) utilisés dans les dépenses.
     * @return array
     */
    private function getFilterOptionsAccountsUsed(): array
    public function getFilterOptionsAccountsUsed(): array
    {
        return $this->getSpentService()->getAccountsInfosUsed()->getAccounts();
    }
@@ -1185,7 +1185,7 @@ class ProjectGrantSearchService implements UseEntityManager, UsePersonService, U
     * Retourne la liste des numérotations personnalisées dans les activités.
     * @return array
     */
    private function getFilterOptionsActivityNumbers(): array
    public function getFilterOptionsActivityNumbers(): array
    {
        return $this->getOscarConfigurationService()->getNumerotationKeys();
    }
@@ -1194,7 +1194,7 @@ class ProjectGrantSearchService implements UseEntityManager, UsePersonService, U
     * Liste des types de document.
     * @return array
     */
    private function getFilterOptionsDocumentTypes(): array
    public function getFilterOptionsDocumentTypes(): array
    {
        $types = [];
        foreach ($this->getProjectGrantService()->getDocumentTypes() as $type) {
@@ -1207,7 +1207,7 @@ class ProjectGrantSearchService implements UseEntityManager, UsePersonService, U
     * Liste des types d'activités.
     * @return array
     */
    private function getFilterOptionsActivityTypes(): array
    public function getFilterOptionsActivityTypes(): array
    {
        return $this->getProjectGrantService()->getActivityTypes(true);
    }
@@ -1217,7 +1217,7 @@ class ProjectGrantSearchService implements UseEntityManager, UsePersonService, U
     * Liste des disciplines.
     * @return array
     */
    private function getFilterOptionsDisciplines(): array
    public function getFilterOptionsDisciplines(): array
    {
        /** @var DisciplineRepository $disciplineRepository */
        $disciplineRepository = $this->getEntityManager()->getRepository(Discipline::class);