diff --git a/VERSIONS_HOTLINE/198092 b/VERSIONS_HOTLINE/198092
new file mode 100644
index 0000000000000000000000000000000000000000..21bf19d4e46da8225404f93c09869312be700104
--- /dev/null
+++ b/VERSIONS_HOTLINE/198092
@@ -0,0 +1 @@
+ - correctif #198092 : Exemplaire : La réservation doit fonctionner pour le connecteur Decalog.
\ No newline at end of file
diff --git a/library/Class/WebService/SIGB/Decalog/Service.php b/library/Class/WebService/SIGB/Decalog/Service.php
index 9d5847fcc4d663b11d039714a06246bc635ca6de..ec96ed04e440acadbf5564e132b162d5ab104597 100644
--- a/library/Class/WebService/SIGB/Decalog/Service.php
+++ b/library/Class/WebService/SIGB/Decalog/Service.php
@@ -79,7 +79,7 @@ class Class_WebService_SIGB_Decalog_Service extends Class_WebService_SIGB_Abstra
 
 
   public function getUserAnnexe($user) : int {
-    return  $annexe = Class_CodifAnnexe::findFirstBy([ 'id_bib' => $user->getIdIntBib()])
+    return ($annexe = Class_CodifAnnexe::findFirstBy(['id_bib' => $user->getIdIntBib()]))
       ? $annexe->getIdOrigine()
       : 0;
   }
diff --git a/tests/library/Class/WebService/SIGB/DecalogTest.php b/tests/library/Class/WebService/SIGB/DecalogTest.php
index 6bedc694278cf90e08a550f740e453c3efbbf8db..1ba97343be8004c38ad2fa27ef17900de2a72ab6 100644
--- a/tests/library/Class/WebService/SIGB/DecalogTest.php
+++ b/tests/library/Class/WebService/SIGB/DecalogTest.php
@@ -720,3 +720,33 @@ class DecalogSaveEmprunteurTest extends DecalogAuthenticationTest {
     $this->assertEquals(['statut' => true, 'erreur' => false], $response);
   }
 }
+
+
+
+
+class DecalogGetUserAnnexeTest extends DecalogTestCase {
+
+  protected $_jlurcat;
+
+  public function setUp() {
+    parent::setUp();
+
+    $this->fixture(Class_CodifAnnexe::class, ['id' => 4,
+                                              'id_bib' => 3,
+                                              'libelle' => 'Bibliothèque de Lunel-Viel',
+                                              'invisible' => 0,
+                                              'id_origine' => 6457987987]);
+
+    $this->_jlurcat = $this->fixture(Class_Users::class, ['id' => '23200',
+                                                          'login' => 'jlurcat',
+                                                          'password' => 'tapstry',
+                                                          'idabon' => '9898',
+                                                          'id_int_bib' => 3]);
+  }
+
+
+  /** @test */
+  public function getUserAnnexeShouldReturn6457987987() {
+    $this->assertEquals(6457987987, $this->_service->getUserAnnexe($this->_jlurcat));
+  }
+}