http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14370 Bug ID: 14370 Summary: Use Restrictions in Circulation Change sponsored?: --- Product: Koha Version: 3.18 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Circulation Assignee: koha-bugs@lists.koha-community.org Reporter: joy@bywatersolutions.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com, kyle.m.hall@gmail.com The use restrictions field runs off the 'restricted' authorised value list. However, Koha does not restrict circulation unless the items.restricted =1. The code needs to be updated to allow any RESTRICTED authorised value to be used to restrict circulation. Make this line: $item->{'restricted'} > 0 ?? Circulation.pm if ( $item->{'restricted'} && $item->{'restricted'} == 1 ) { $issuingimpossible{RESTRICTED} = 1; } -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.