Commit e8b428a0 authored by Jean-Baptiste Oellers's avatar Jean-Baptiste Oellers
Browse files

Fix: activité non indexée quand elle a un numéro personnalisé redmine #65771

parent 4fc26dd7
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ class ElasticActivitySearch extends ElasticSearchEngine implements IActivitySear
            'label' => $activity->getLabel(),
            'description' => $activity->getDescription(),
            'saic' => $activity->getCentaureId(),
            'numerotation' => $activity->getNumbers(),
            'numerotation' => implode(" ", $activity->getNumbersValues()),
            'oscar' => $activity->getOscarNum(),
            'activitytype' => $activity->getActivityType() ? (string)$activity->getActivityType() : '',
            'numbers' => implode(" ", $activity->getNumbersValues()),