From cfba05da3b087641f32d8bf0971c05633f6e7e37 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 Signed-off-by: Brendan A Gallagher --- circ/reserveratios.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/circ/reserveratios.pl b/circ/reserveratios.pl index 3cf5cd17b4..56c84d8f9b 100755 --- a/circ/reserveratios.pl +++ b/circ/reserveratios.pl @@ -162,8 +162,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.39.2