diff --git a/VERSIONS_HOTLINE/41431 b/VERSIONS_HOTLINE/41431 new file mode 100644 index 0000000000000000000000000000000000000000..b49b64affd83dd471748338b0084a69b156014d4 --- /dev/null +++ b/VERSIONS_HOTLINE/41431 @@ -0,0 +1 @@ + - ticket #41431 : Mention disponibilité absente dans le pavé exemplaire en recherche (portail interfacé avec PMB) \ No newline at end of file diff --git a/library/Class/WebService/SIGB/PMB/Service.php b/library/Class/WebService/SIGB/PMB/Service.php index c132aab4cf0b8b820e47a87e66cfeb296e1ccbc2..4c26f59c4d2927221ee844380da9b22fdeb58571 100644 --- a/library/Class/WebService/SIGB/PMB/Service.php +++ b/library/Class/WebService/SIGB/PMB/Service.php @@ -256,19 +256,21 @@ class Class_Webservice_SIGB_PMB_Service extends Class_WebService_SIGB_AbstractSe ->setSection($item_json['section_caption']) ->setCodeAnnexe($item_json['location_id']); - if(static::$ITEM_AVAILABLE == $item_json['situation']) - $item->setReservable(true); + $item->setDisponibilite($item_json['situation']); - if(static::$ITEM_LOANABLE == $item_json['statut']) + if (static::$ITEM_AVAILABLE == $item_json['situation']) $item->setDisponibiliteLibre(); + if(static::$ITEM_LOANABLE == $item_json['statut']) + $item->setReservable(true); + return $item; } protected function _getItemByBarCode($items, $bar_code) { if($items = array_filter($items, function($item) use($bar_code) {return $item->getCodeBarre() == $bar_code;})) - return $items[0]; + return array_values($items)[0]; return Class_WebService_SIGB_Exemplaire::newInstance(); } diff --git a/tests/fixtures/PmbFixtures.php b/tests/fixtures/PmbFixtures.php index fa782700b809393e325b8e49d3c4b8a565f5e1d6..2554d5a0a6c58cf6a762968ec5818b5003a233c8 100644 --- a/tests/fixtures/PmbFixtures.php +++ b/tests/fixtures/PmbFixtures.php @@ -36,7 +36,7 @@ class PmbFixtures { public static function itemJson() { - return '{"id":1,"result":[{"id":"54","cb":"000018","cote":"A GRA","location_id":"1","location_caption":"AFI","section_id":"26","section_caption":"Albums","support":"Livre","statut":"Empruntable","situation":"Disponible"}],"error":null}'; + return '{"id":1,"result":[{"id":"54","cb":"000018","cote":"A GRA","location_id":"1","location_caption":"AFI","section_id":"26","section_caption":"Albums","support":"Livre","statut":"Empruntable","situation":"Disponible"},{"id":"56","cb":"000020","cote":"A GRA","location_id":"1","location_caption":"AFI","section_id":"26","section_caption":"Albums","support":"Livre","statut":"Exclu du prêt","situation":"Exclu du prêt"}],"error":null}'; } diff --git a/tests/library/Class/WebService/SIGB/PMBTest.php b/tests/library/Class/WebService/SIGB/PMBTest.php index 6b0875a97cf02094a235a6ec51b1f115757ba9f5..dea70a42a4a9d2507e4198199e12de7f82b18178 100644 --- a/tests/library/Class/WebService/SIGB/PMBTest.php +++ b/tests/library/Class/WebService/SIGB/PMBTest.php @@ -185,12 +185,26 @@ class PMBServiceTest extends PMBTestCase { /** @test */ - public function item54ShouldBeDisponible() { + public function item54ShouldBeAvailable() { $item = $this->_service->getExemplaire('54', '000018'); $this->assertEquals('Disponible', $item->getDisponibilite()); } + /** @test */ + public function item54ShouldBeHoldable() { + $item = $this->_service->getExemplaire('54', '000018'); + $this->assertTrue($item->isReservable()); + } + + + /** @test */ + public function item20AvailabilityShouldBeExcluDuPret() { + $item = $this->_service->getExemplaire('54', '000020'); + $this->assertEquals('Exclu du prêt', $item->getDisponibilite()); + } + + /** @test */ public function renewLoansShouldReturnError() { $this->assertContains(false, $this->_service->prolongerPret($this->_paul, 15));