diff --git a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php index ae549bd56670e7fd75c70e2aaf15f0233e3d605c..8211409130bf388db648e4d09a681b8fc8ad07cd 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php @@ -387,6 +387,8 @@ class Symphony extends AbstractBase implements ServiceLocatorAwareInterface $location = $library . ' - ' . ($available && !empty($curr_loc) ? $curr_loc : $home_loc); + $material = $this->translatePolicyID('ITYP', $result['item type']); + $items[$result['id']][] = array( 'id' => $result['id'], 'availability' => $available, @@ -400,6 +402,7 @@ class Symphony extends AbstractBase implements ServiceLocatorAwareInterface 'barcode' => $result['barcode number'], 'item_id' => $result['barcode number'], 'library' => $library, + 'material' => $material ); } }