From d2e40bb078f4d4e8a131ec28e81438747f917e08 Mon Sep 17 00:00:00 2001
From: Ere Maijala <ere.maijala@helsinki.fi>
Date: Mon, 2 Dec 2019 18:01:37 +0200
Subject: [PATCH] Alma: Make it easier to customize item location in
 getHolding. (#1514)

---
 module/VuFind/src/VuFind/ILS/Driver/Alma.php | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/module/VuFind/src/VuFind/ILS/Driver/Alma.php b/module/VuFind/src/VuFind/ILS/Driver/Alma.php
index ed1448f4dce..d6881b2e8dd 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/Alma.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/Alma.php
@@ -340,8 +340,7 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface
                     'source' => 'Solr',
                     'availability' => $this->getAvailabilityFromItem($item),
                     'status' => $status,
-                    'location'
-                        => $this->getTranslatableString($item->item_data->location),
+                    'location' => $this->getItemLocation($item),
                     'reserve' => 'N',   // TODO: support reserve status
                     'callnumber' => $this->getTranslatableString(
                         $item->holding_data->call_number
@@ -1855,6 +1854,18 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface
         return false === $subfield ? '' : $subfield->getData();
     }
 
+    /**
+     * Get location for an item
+     *
+     * @param SimpleXMLElement $item Item
+     *
+     * @return \VuFind\I18n\TranslatableString|string
+     */
+    protected function getItemLocation($item)
+    {
+        return $this->getTranslatableString($item->item_data->location);
+    }
+
     // @codingStandardsIgnoreStart
 
     /**
-- 
GitLab