From 970c790019b64b2b6b7bb9eab75154293435cad8 Mon Sep 17 00:00:00 2001 From: Dorian Merz <merz@ub.uni-leipzig.de> Date: Fri, 24 Jul 2020 13:55:00 +0200 Subject: [PATCH] refs #18091 [master] introduce generic getBoundItemInfo() * fixes function call bug from getItemStatus --- module/finc/src/finc/ILS/Driver/FincLibero.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/module/finc/src/finc/ILS/Driver/FincLibero.php b/module/finc/src/finc/ILS/Driver/FincLibero.php index f2325e0b015..0d6ef93772a 100644 --- a/module/finc/src/finc/ILS/Driver/FincLibero.php +++ b/module/finc/src/finc/ILS/Driver/FincLibero.php @@ -691,4 +691,14 @@ class FincLibero extends FincILS implements TranslatorAwareInterface return $pickUpLocations; } + /** + * TODO: check status of this function + * de_15 -> getBoundItemId() vs. de_l152 -> getBoundItemInfo() + * @param $item + * @return array + */ + public function getBoundItemId($item) + { + return []; + } } -- GitLab