@@ -, +, @@ --- C4/SIP/ILS.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/C4/SIP/ILS.pm +++ a/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); } --