diff --git a/module/VuFind/src/VuFind/ILS/Driver/Alma.php b/module/VuFind/src/VuFind/ILS/Driver/Alma.php index 6e9f5a4d687ef5db9afcd0e7c8d82913337469aa..ed1448f4dced6a59b563807463a4c7696648303b 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Alma.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Alma.php @@ -1722,15 +1722,30 @@ class Alma extends AbstractBase implements \VuFindHttp\HttpServiceAwareInterface $avail = $this->getMarcSubfield($field, 'e'); $item = $tmpl; $item['availability'] = strtolower($avail) === 'available'; - $item['location'] = $this->getMarcSubfield($field, 'm'); - // Using subfield 't' ('Interface name') as callnumber + // Use the following subfields for location: + // m (Collection name) + // i (Available for library) + // d (Available for library) + // b (Available for library) + $location = [ + $this->getMarcSubfield($field, 'm') ?: 'Get full text' + ]; + foreach (['i', 'd', 'b'] as $code) { + if ($content = $this->getMarcSubfield($field, $code)) { + $location[] = $content; + } + } + $item['location'] = implode(' - ', $location); $item['callnumber'] = $this->getMarcSubfield($field, 't'); $url = $this->getMarcSubfield($field, 'u'); if (preg_match('/^https?:\/\//', $url)) { $item['locationhref'] = $url; } - $item['status'] = $this->getMarcSubfield($field, 's'); - $item['callnumber'] = $this->getMarcSubfield($field, 'd'); + $item['status'] = $this->getMarcSubfield($field, 's') + ?: null; + if ($note = $this->getMarcSubfield($field, 'n')) { + $item['item_notes'] = [$note]; + } $status[] = $item; } // Digital diff --git a/themes/bootstrap3/templates/RecordTab/holdingsils/electronic.phtml b/themes/bootstrap3/templates/RecordTab/holdingsils/electronic.phtml index 352bdfd1f00dee48c78f65377c78f6c2734dfe37..4accf033e601a99820b1d39cb21558cd8a4b2ca1 100644 --- a/themes/bootstrap3/templates/RecordTab/holdingsils/electronic.phtml +++ b/themes/bootstrap3/templates/RecordTab/holdingsils/electronic.phtml @@ -18,6 +18,16 @@ <?php else: ?> <span class="text-danger"><?=$this->transEsc($item['status'])?></span> <?php endif; ?> + <?php if (isset($item['item_notes'])): ?> + <div class="item-notes"> + <b><?=$this->transEsc("Item Notes")?>:</b> + <ul> + <?php foreach ($item['item_notes'] as $item_note): ?> + <li><?=$this->escapeHtml($item_note) ?></li> + <?php endforeach; ?> + </ul> + </div> + <?php endif; ?> </td> </tr> <?php endforeach; ?>