@@ -, +, @@ the hold ratios report --- circ/reserveratios.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/circ/reserveratios.pl +++ a/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 ), --