From 02161c8ccbe06b2e229274f426fa703f30f3264a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 17 Mar 2016 08:48:56 +0000 Subject: [PATCH] Bug 15672: (follow-up) Show descriptions instead of codes on the hold ratios report Signed-off-by: Jonathan Druart --- circ/reserveratios.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/circ/reserveratios.pl b/circ/reserveratios.pl index 5d3063c..b7888c9 100755 --- a/circ/reserveratios.pl +++ b/circ/reserveratios.pl @@ -151,8 +151,8 @@ while ( my $data = $sth->fetchrow_hashref ) { holdingbranch_list => [split('\|', $data->{holdingbranch_list})], branch => $data->{branch}, itemcallnumber => $data->{itemcallnumber}, - location => => [split('\|', $data->{l_location})], - itype => => [split('\|', $data->{l_itype})], + location => [split('\|', $data->{l_location})], + itype => [split('\|', $data->{l_itype})], reservecount => $data->{reservecount}, itemcount => $data->{itemcount}, ratiocalc => sprintf( "%.0d", $ratio_atleast1 ? ( $thisratio / $ratio ) : $thisratio ), -- 2.7.0