From caac2ac70ced2ae3084564e851f207c672ef64e4 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 5 May 2015 14:20:01 -0400 Subject: [PATCH] Bug 14151 - SIP2 Checkouts file in Koha 3.18 When Bug 12820 was added to Koha 3.18, the namespace was not altered. This causes checkouts to fail via SIP2. Test Plan: 1) Attempt to check out an item via SIP2 2) Note you never get back a response 3) Apply this patch 4) Repeat step 1 5) Note it now works! --- C4/SIP/ILS.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/SIP/ILS.pm b/C4/SIP/ILS.pm index 3db9f6b..ee0d75e 100644 --- a/C4/SIP/ILS.pm +++ b/C4/SIP/ILS.pm @@ -131,8 +131,8 @@ sub checkout { $circ = new ILS::Transaction::Checkout; # BEGIN TRANSACTION - $circ->patron($patron = C4::SIP::ILS::Patron->new( $patron_id)); - $circ->item($item = C4::SIP::ILS::Item->new( $item_id)); + $circ->patron($patron = ILS::Patron->new( $patron_id)); + $circ->item($item = ILS::Item->new( $item_id)); if ($fee_ack) { $circ->fee_ack($fee_ack); } -- 1.7.2.5