@@ -, +, @@ --- .../prog/en/modules/members/holdshistory.tt | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt @@ -4,6 +4,7 @@ [% USE AuthorisedValues %] [% USE Branches %] [% USE ColumnsSettings %] +[% USE ItemTypes %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Holds history for [% INCLUDE 'patron-title.inc' no_html = 1 %] @@ -32,6 +33,8 @@
This patron has no holds history.
[% ELSE %] +[% SET show_itemtype_column = Koha.Preference('AllowHoldItemTypeSelection') %] +
@@ -43,7 +46,9 @@ - + [% IF show_itemtype_column %] + + [% END %] @@ -74,7 +79,15 @@ [% END %] - + [% IF show_itemtype_column %] + + [% END %]
Expiration date Waiting date Cancellation dateItem typeRequested item typeStatus
[% hold.itemtype %] + [% IF hold.itemtype %] + [% ItemTypes.GetDescription( hold.itemtype ) %] + [% ELSE %] + Any item type + [% END %] + [% IF hold.found == 'F' %] Fulfilled @@ -110,6 +123,10 @@