@@ -, +, @@ on request.pl - Change one of your libraries so that "Pickup location" is set to "No." - Locate a title in the catalog which has an item at that location. - The "pick up at" list will exclude the library so and additional steps must be taken to get the message - Select a patron and set their library to the one we can't pick up at. - Start the process of placing a hold on the title. - After selecting the patron to place the hold for, look at the table of items under "Place a hold on a specific item." - The item located at the library you modified should show an error message in the "Hold" column, "Library is not a pickup location." --- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 2 ++ 1 file changed, 2 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -629,6 +629,8 @@ Only pickup locations within the same hold group are allowed [% ELSIF itemloo.not_holdable == 'noReservesAllowed' %] No reserves are allowed on this item + [% ELSIF itemloo.not_holdable == 'libraryNotPickupLocation' %] + Library is not a pickup location [% ELSE %] [% itemloo.not_holdable | html %] [% END %] --