From deafd2e93667fa802c373626b07b2090b046b7bb Mon Sep 17 00:00:00 2001
From: Jonathan Foucher <jfoucher@gmail.com>
Date: Mon, 16 Oct 2023 11:24:27 +0200
Subject: [PATCH] Fix https://gitlab.adullact.net/soluris/madis/-/issues/836

---
 src/Domain/AIPD/Dictionary/StatutAnalyseImpactDictionary.php | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/Domain/AIPD/Dictionary/StatutAnalyseImpactDictionary.php b/src/Domain/AIPD/Dictionary/StatutAnalyseImpactDictionary.php
index 7b74589ad..52ca7666a 100644
--- a/src/Domain/AIPD/Dictionary/StatutAnalyseImpactDictionary.php
+++ b/src/Domain/AIPD/Dictionary/StatutAnalyseImpactDictionary.php
@@ -10,6 +10,7 @@ class StatutAnalyseImpactDictionary extends SimpleDictionary
 {
     public const NON_REALISEE            = 'non_realisee';
     public const FAVORABLE               = 'favorable';
+    public const FAVORABLE_RESERVE       = 'favorable_reserve';
     public const FAVORABLE_AVEC_RESERVES = 'favorable_avec_reserves';
     public const NON_FAVORABLE           = 'defavorable';
     public const EN_COURS                = 'en_cours';
@@ -24,6 +25,7 @@ class StatutAnalyseImpactDictionary extends SimpleDictionary
         return [
             self::NON_REALISEE            => 'Non réalisée',
             self::FAVORABLE               => 'Favorable',
+            self::FAVORABLE_RESERVE       => 'Favorable avec réserve(s)',
             self::FAVORABLE_AVEC_RESERVES => 'Favorable avec réserve(s)',
             self::NON_FAVORABLE           => 'Non favorable',
             self::EN_COURS                => 'En cours',
-- 
GitLab