Holds history
[% UNLESS Koha.Preference('intranetreadinghistory') %]Staff members are not allowed to access patron's holds history
[% ELSIF is_anonymous %]
This is the anonymous patron, so no holds history is displayed.
[% ELSIF ( !holds ) %]
[% ELSE %]
[% SET show_itemtype_column = Koha.Preference('AllowHoldItemTypeSelection') %]
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 %] [% ELSE %] [% END %] | [% IF hold.waitingdate %] [% hold.waitingdate | $KohaDates %] [% ELSE %] [% END %] | [% IF hold.cancellationdate %] [% hold.cancellationdate | $KohaDates %] [% ELSE %] [% 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 %] |