diff --git a/config/vufind/Voyager.ini b/config/vufind/Voyager.ini index 197509fda4843a1c930a5292d9aeb4cf8b474c24..49f0b8027216106a4ddd8f48617cdd2485ce07ee 100644 --- a/config/vufind/Voyager.ini +++ b/config/vufind/Voyager.ini @@ -42,6 +42,15 @@ login_field = LAST_NAME ; fund tree to filter out unwanted values. Leave it commented out to get all funds. ;parent_fund = 0 +; This section controls call slip behavior (storage retrieval requests in VuFind). +[StorageRetrievalRequests] +; Colon-separated list of call slip statuses (see CALL_SLIP_STATUS_TYPE table in +; Voyager's database) that control whether a call slip is displayed. Only slips +; matching statuses in this list will be displayed. Current Voyager versions (as of +; May 2016) don't immediately delete a call slip from the database when it has been +; processed and converted to a hold, which may confuse users. +;display_statuses = 1:2:3:5:8:9 + ; Settings for controlling how holdings are displayed [Holdings] ; How purchase history is displayed. Supported values are: diff --git a/config/vufind/VoyagerRestful.ini b/config/vufind/VoyagerRestful.ini index 527b90be11ebff7051d1340eb942c8012a4395d3..ddadcb1d532382e5580f41ba483144244817c367 100644 --- a/config/vufind/VoyagerRestful.ini +++ b/config/vufind/VoyagerRestful.ini @@ -218,6 +218,15 @@ disableAvailabilityCheckForRequestGroups = "15:19:21:32" ;helpText = "Help text for all languages." ;helpText[en-gb] = "Help text for English language." +; This section controls call slip behavior (storage retrieval requests in VuFind). +[StorageRetrievalRequests] +; Colon-separated list of call slip statuses (see CALL_SLIP_STATUS_TYPE table in +; Voyager's database) that control whether a call slip is displayed. Only slips +; matching statuses in this list will be displayed. Current Voyager versions (as of +; May 2016) don't immediately delete a call slip from the database when it has been +; processed and converted to a hold, which may confuse users. +;display_statuses = 1:2:3:5:8:9 + ; This section controls UB (Universal Borrowing, ILL in VuFind) behavior. To enable, ; uncomment (at minimum) the HMACKeys and extraFields settings below. See also ; section ILLRequestSources for mapping between patron ID's and UB libraries. diff --git a/module/VuFind/src/VuFind/ILS/Driver/Voyager.php b/module/VuFind/src/VuFind/ILS/Driver/Voyager.php index 8caeea5b92f74b45e738b58b7d64f1bd76c27699..63684d5b8bc2ce6d813014061b4eed775eeec5ae 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Voyager.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Voyager.php @@ -1794,6 +1794,18 @@ class Voyager extends AbstractBase 'BIB_TEXT.BIB_ID = CALL_SLIP.BIB_ID' ]; + if (!empty($this->config['StorageRetrievalRequests']['display_statuses'])) { + $statuses = preg_replace( + '/[^:\d]*/', + '', + $this->config['StorageRetrievalRequests']['display_statuses'] + ); + if ($statuses) { + $sqlWhere[] = 'CALL_SLIP.STATUS IN (' + . str_replace(':', ',', $statuses) . ')'; + } + } + // Order by $sqlOrderBy = [ "to_char(CALL_SLIP.DATE_REQUESTED, 'YYYY-MM-DD HH24:MI:SS')"