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: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
CC: [email protected]
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/