Browse Source

Bug 15422: Consider partial copies needed as whole numbers

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
remotes/origin/19.11.x
Nick Clemens 6 years ago
committed by Martin Renvoize
parent
commit
3ab36c2c93
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 3
      circ/reserveratios.pl

3
circ/reserveratios.pl

@ -22,6 +22,7 @@ use Modern::Perl;
use CGI qw ( -utf8 );
use Date::Calc qw/Today Add_Delta_YM/;
use POSIX qw( ceil );
use C4::Context;
use C4::Output;
@ -154,7 +155,7 @@ $sth->execute(@query_params);
my @reservedata;
while ( my $data = $sth->fetchrow_hashref ) {
my $thisratio = $data->{reservecount} / $data->{itemcount};
my $ratiocalc = $data->{reservecount}/$ratio - $data->{itemcount};
my $ratiocalc = ceil($data->{reservecount}/$ratio - $data->{itemcount});
$ratiocalc >= 1 or next; # TODO: tighter targeting -- get ratio limit into SQL using HAVING clause
push(
@reservedata,

Loading…
Cancel
Save