[Koha-bugs] [Bug 16272] Transform checkout from on-site checkout to regular checkout

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Aug 16 15:25:31 CEST 2016


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

Nick Clemens <nick at bywatersolutions.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Signed Off                  |Failed QA

--- Comment #10 from Nick Clemens <nick at bywatersolutions.com> ---
For the special case, if a default rule is set in addition to the circ rule
then the onsite checkout to change to a regular checkout still activates a too
many warning

I think you need the delta at the lines below as well

 539         if (
C4::Context->preference('ConsiderOnSiteCheckoutsAsNormalCheckouts') ) {
 540             if ( $checkout_count >= $max_checkouts_allowed ) {
 541                 return {
 542                     reason => 'TOO_MANY_CHECKOUTS',
 543                     count => $checkout_count,
 544                     max_allowed => $max_checkouts_allowed,
 545                 };
 546             }

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


More information about the Koha-bugs mailing list