Holds history
[% IF !holds %] You have never placed a hold from this library. [% ELSE %] [% SET show_itemtype_column = Koha.Preference('AllowHoldItemTypeSelection') %]Showing 50 items. Show all items
[% ELSE %]Showing all items. Show 50 items
[% END %]Title | Author | Barcode | Library | Hold date | Expiration date | Waiting date | Cancellation date | [% IF show_itemtype_column %]Requested item type | [% END %]Status |
---|---|---|---|---|---|---|---|---|---|
[% INCLUDE 'biblio-title.inc' biblio=hold.biblio %] | [% hold.biblio.author | html %] | [% hold.item.barcode | html %] | [% Branches.GetName( hold.branchcode ) | html %] | [% hold.reservedate | $KohaDates %] | [% IF hold.expirationdate %] [% hold.expirationdate | $KohaDates %] [% END %] | [% IF hold.waitingdate %] [% hold.waitingdate | $KohaDates %] [% END %] | [% IF hold.cancellationdate %] [% hold.cancellationdate | $KohaDates %] [% END %] | [% IF show_itemtype_column %][% IF hold.itemtype %] [% ItemTypes.GetDescription( hold.itemtype ) | html %] [% ELSE %] Any item type [% END %] | [% END %][% IF hold.found == 'F' %] Fulfilled [% ELSIF hold.cancellationdate %] Cancelled [% ELSIF hold.found == 'W' %] Waiting [% ELSIF hold.found == 'T' %] In transit [% ELSE %] Pending [% END %] |