[Koha-bugs] [Bug 27718] Holds to Pull list doesn't respect holdallowed circulation rule anymore

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Feb 24 05:21:06 CET 2021


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27718

--- Comment #9 from Andrew Nugged <nugged at gmail.com> ---
Jonathan 
QA Note by the way:


this in tests:

    $items = $holds->get_items_that_can_fill;


but this in the main code we have:

    foreach my $item ( $holds->get_items_that_can_fill )

is that was intended for the subroutine to sense "wantarray" (so it works in
for), or we should just change that for to smth:

    foreach my $item ( @{$holds->get_items_that_can_fill} )

?

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list