Bug 15672: (follow-up) Show descriptions instead of codes on the hold ratios report

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
This commit is contained in:
Jonathan Druart 2016-03-17 08:48:56 +00:00 committed by Brendan A Gallagher
parent 6ecf823300
commit cfba05da3b

View file

@ -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 ),