From 4e77682ef958083c13ae2fb760a29069608deb10 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 11 Jun 2013 10:00:58 -0400 Subject: [PATCH] Bug 10445 - SIP Server doesn't respect maxoutstanding system preference The system preference 'maxoutstanding' is defined as the maximum amount of fees owed by the patron before Koha should block placing holds ( terrible naming on this one ). However, although the Koha OPAC respects this preference, placing holds via a SIP2 device will not. Test Plan: 1) Set maxoutstanding to $10 2) Pick a patron owning more than $10 in fees 3) Attempt to place a hold for this patron from a SIP2 device This attempt should succeed 4) Apply this patch 5) Restart your SIP2 server 6) Attempt to place a hold for this patron from a SIP2 device again This attempt should now fail --- C4/SIP/ILS.pm | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/C4/SIP/ILS.pm b/C4/SIP/ILS.pm index 5d59850..703bb96 100644 --- a/C4/SIP/ILS.pm +++ b/C4/SIP/ILS.pm @@ -254,6 +254,10 @@ sub add_hold { return $trans; } + if ( $patron->holds_blocked_by_excessive_fees() ) { + $trans->screen_msg("Excessive fees blocking placement of hold."); + } + if ($item->fee and $fee_ack ne 'Y') { $trans->screen_msg = "Fee required to place hold."; return $trans; -- 1.7.2.5