Commit 9e243ff5 authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

Correction #48151

parent 23423738
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ class StatutService extends AbstractEntityService
        $result = [];
        foreach ($statuts as $value) {
            if ($value instanceof Statut) {
                if (($value->estNonHistorise() && $value->getDossierSelectionnable()) ||
                if (($value->estNonHistorise() && $value->getDossierSelectionnable() && $value->getDossier()) ||
                    $statut->getCode() == $value->getCode()) {
                    $result[] = $value;
                }