[Koha-bugs] [Bug 29196] New: Follow-up to Bug 27068 - fix remaining ocurrence of hold policy check

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Oct 8 15:39:34 CEST 2021


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

            Bug ID: 29196
           Summary: Follow-up to Bug 27068 - fix remaining ocurrence of
                    hold policy check
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P5 - low
         Component: Hold requests
          Assignee: koha-bugs at lists.koha-community.org
          Reporter: nick at bywatersolutions.com
        QA Contact: testopia at bugs.koha-community.org
                CC: gmcharlt at gmail.com

726                     # Don't fill item level holds that contravene the hold
pickup policy at this time
727                     next unless $item->{hold_fulfillment_policy} eq 'any'
728                         || $request->{branchcode} eq $item->{
$item->{hold_fulfillment_policy} };


Should be:
# Don't fill item level holds that contravene the hold pickup policy at this
time
next unless _checkHoldPolicy($item, $request);

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


More information about the Koha-bugs mailing list