@@ -, +, @@ description --- .../prog/en/modules/circ/view_holdsqueue.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt @@ -1,5 +1,6 @@ [% USE KohaDates %] [% USE ItemTypes %] +[% USE Branches %] [% USE AuthorisedValues %] [% INCLUDE 'doc-head-open.inc' %] Koha › Circulation › Holds queue @@ -77,7 +78,7 @@ $(document).ready(function() { [% AuthorisedValues.GetByCode( 'CCODE', itemsloo.ccode ) %] [% ItemTypes.GetDescription( itemsloo.itype ) %] - [% itemsloo.location %] [% itemsloo.itemcallnumber %] + [% IF ( itemsloo.location ) %][% AuthorisedValues.GetByCode( 'LOC', itemsloo.location ) %] [% END %][% itemsloo.itemcallnumber %] [% itemsloo.copynumber %] [% itemsloo.enumchron %] @@ -88,7 +89,7 @@ $(document).ready(function() { [% END %]

[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])

[% itemsloo.phone %]

- [% itemsloo.pickbranch %] + [% Branches.GetName( itemsloo.pickbranch ) %] [% itemsloo.reservedate | $KohaDates %] [% itemsloo.notes %] --