From 879ee53be7351d88cc16b370ada9953d6c96e805 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 20 Jan 2016 09:40:25 +0000 Subject: [PATCH] Bug 15560: Fix display of multiple item types in pending reserves report Same fix as previous patch, but for item types. Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com --- circ/pendingreserves.pl | 4 ++-- .../intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/circ/pendingreserves.pl b/circ/pendingreserves.pl index d5bcbbb819..932b035c23 100755 --- a/circ/pendingreserves.pl +++ b/circ/pendingreserves.pl @@ -104,7 +104,7 @@ if ( $run_report ) { ORDER BY items.itemnumber SEPARATOR ', ') l_branch, items.holdingbranch as branch, GROUP_CONCAT(DISTINCT items.itype - ORDER BY items.itemnumber SEPARATOR '
') l_itype, + ORDER BY items.itemnumber SEPARATOR '|') l_itype, GROUP_CONCAT(DISTINCT items.location ORDER BY items.itemnumber SEPARATOR '|') l_location, GROUP_CONCAT(DISTINCT items.itemcallnumber @@ -177,7 +177,7 @@ if ( $run_report ) { count => $data->{icount}, rcount => $data->{rcount}, pullcount => $data->{icount} <= $data->{rcount} ? $data->{icount} : $data->{rcount}, - itype => $data->{l_itype}, + itypes => [split('\|', $data->{l_itype})], locations => [split('\|', $data->{l_location})], } ); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt index 28cbd4fa2d..6be57ab438 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -134,7 +134,11 @@ $(document).ready(function() {

[% reserveloo.itemcallnumber %]

[% reserveloo.copyno %]

[% reserveloo.enumchron %]

- [% ItemTypes.GetDescription( reserveloo.itype ) %] + + [% FOREACH itype IN reserveloo.itypes %] + [% ItemTypes.GetDescription( itype ) %] + [% END %] + [% FOREACH loc IN reserveloo.locations %] [% AuthorisedValues.GetByCode('LOC', loc) %]
-- 2.20.1