@@ -, +, @@ - Display the item-level hold only if it is the next hold (priority == - Display "There is an item level hold on this item (priority=X)" - Place several next available holds on a single item record - Place an item level hold on the item - Go the the biblio detail page - Check the item in, confirm the hold - Cancel all the holds except the item-level one --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -359,10 +359,12 @@ [% IF hold %] [% IF hold.waitingdate %] Waiting at [% Branches.GetName( hold.branchcode ) | html %] since [% hold.waitingdate | $KohaDates %]. - [% ELSE %] + [% ELSIF hold.priority == 1 %] Item-level hold (placed [% hold.reservedate | $KohaDates %]) for delivery at [% Branches.GetName( hold.branchcode ) | html %]. + [% ELSE %] + There is an item level hold on this item (priority = [% hold.priority %]). [% END %] - [% IF ( canreservefromotherbranches ) %] + [% IF canreservefromotherbranches AND ( hold.waitingdate OR hold.priority == 1 ) %] Hold for: [% INCLUDE 'patron-title.inc' patron=hold.borrower hide_patron_infos_if_needed=1 %] [% END %] --