From 2a42360ed7d9994fa282fe3bc0ee9911aa8a19cd Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 2 Mar 2015 06:06:58 -0800 Subject: [PATCH] Bug 13411 [QA Followup] - Add logging Added a fix for bug in C4/SIP/ILS.pm line 202 as described above. Tested OK. Setting to Signed Off as it works as previously noted. --- C4/SIP/ILS.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/C4/SIP/ILS.pm b/C4/SIP/ILS.pm index 8bc95bc..a50de25 100644 --- a/C4/SIP/ILS.pm +++ b/C4/SIP/ILS.pm @@ -191,13 +191,15 @@ sub checkin { # It's ok to check it in if it exists, and if it was checked out # or it was not checked out but the checked_in_ok flag was set $circ->ok( ( $checked_in_ok && $item ) || ( $item && $item->{patron} ) ); + syslog("LOG_DEBUG", "C4::SIP::ILS::checkin - using checked_in_ok") if $checked_in_ok; if ( !defined( $item->{patron} ) ) { $circ->screen_msg("Item not checked out") unless $checked_in_ok; + syslog("LOG_DEBUG", "C4::SIP::ILS::checkin - item not checked out"); } else { if ( $circ->ok ) { - $circ->patron( $patron = new ILS::Patron $item->{patron} ); + $circ->patron($patron = C4::SIP::ILS::Patron->new( $item->{patron} )); delete $item->{patron}; delete $item->{due_date}; $patron->{items} = [ grep { $_ ne $item_id } @{ $patron->{items} } ]; -- 1.7.10.4