[% USE Asset %] [% USE KohaDates %] [% USE Koha %] [% USE AuthorisedValues %] [% USE Branches %] [% USE ColumnsSettings %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %]
Title | Author | Barcode | Library | Hold date | Expiration date | Waiting date | Cancellation date | Item type | Status | [% FOREACH hold IN holds %][% hold.biblio.title |html %] | [% hold.biblio.author %] | [% hold.item.barcode %] | [% Branches.GetName( hold.branchcode ) %] | [% 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 %] | [% hold.itemtype %] | [% IF hold.found == 'F' %] Fulfilled [% ELSIF hold.cancellationdate %] Cancelled [% ELSIF hold.found == 'W' %] Waiting [% ELSIF hold.found == 'T' %] In transit [% ELSE %] Pending [% END %] | [% END %]
---|