Skip to content
Snippets Groups Projects
Commit fec70490 authored by Robert Lange's avatar Robert Lange
Browse files

refs #20835 [finc] override VuFind getMyStorageRetrievalRequests

* consolidate comments
parent dfe1c9c3
No related merge requests found
...@@ -734,20 +734,17 @@ class FincLibero extends FincILS implements TranslatorAwareInterface ...@@ -734,20 +734,17 @@ class FincLibero extends FincILS implements TranslatorAwareInterface
/** /**
* This method queries the ILS for a patron's current storage retrieval requests. * This method queries the ILS for a patron's current storage retrieval requests.
* Returns items with properties: * Returns items with properties:
* - document.status = 2(ordered) * - document.status = 2 (ordered)
* - document.storage und document.storageid haben einen bestimmten Wert (Magazin) * - document.storage and document.storageid do have a certain location (Magazin, but not Lesesaal)
*
* note: stackURIs musst be configured in FincLibero.ini as required
* *
* @param array $patron Array returned from patronLogin() * @param array $patron Array returned from patronLogin()
* *
* @return array * @return array
* @note identical to de_15\FincLibero:getMyStorageRetrievalRequests
*/ */
public function getMyStorageRetrievalRequests($patron) public function getMyStorageRetrievalRequests($patron)
{ {
// filters for getMyStorageRetrievalRequests are:
// status = 2 - ordered
// document.storage und document.storageid do have a certain location (Magazin, but not Lesesaal)
// stackURIs musst be configured in FincLibero.ini as required
$filter = [ $filter = [
'status' => [2], 'status' => [2],
'storageid' => $this->stackURIs, 'storageid' => $this->stackURIs,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment