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:
parent
6ecf823300
commit
cfba05da3b
1 changed files with 2 additions and 2 deletions
|
@ -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 ),
|
||||
|
|
Loading…
Reference in a new issue