From 508101f6b22a1f92e06e8963eef576a7177d1be4 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 20 Mar 2015 09:09:45 -0400 Subject: [PATCH] Bug 12820 [QA Followup] - Tab and whitespace cleanup Signed-off-by: Kyle M Hall --- C4/SIP/Sip/MsgType.pm | 42 +++++++++++++++++++++--------------------- 1 files changed, 21 insertions(+), 21 deletions(-) diff --git a/C4/SIP/Sip/MsgType.pm b/C4/SIP/Sip/MsgType.pm index cf3a737..5ef7465 100644 --- a/C4/SIP/Sip/MsgType.pm +++ b/C4/SIP/Sip/MsgType.pm @@ -514,19 +514,18 @@ sub handle_checkout { my $fee_ack = $fields->{(FID_FEE_ACK)}; - if ($no_block eq 'Y') { - # Off-line transactions need to be recorded, but there's - # not a lot we can do about it - syslog("LOG_WARNING", "received no-block checkout from terminal '%s'", - $account->{id}); - - $status = $ils->checkout_no_block($patron_id, $item_id, - $sc_renewal_policy, - $trans_date, $nb_due_date); - } else { - # Does the transaction date really matter for items that are - # checkout out while the terminal is online? I'm guessing 'no' - $status = $ils->checkout($patron_id, $item_id, $sc_renewal_policy, $fee_ack); + if ( $no_block eq 'Y' ) { + + # Off-line transactions need to be recorded, but there's + # not a lot we can do about it + syslog( "LOG_WARNING", "received no-block checkout from terminal '%s'", $account->{id} ); + + $status = $ils->checkout_no_block( $patron_id, $item_id, $sc_renewal_policy, $trans_date, $nb_due_date ); + } + else { + # Does the transaction date really matter for items that are + # checkout out while the terminal is online? I'm guessing 'no' + $status = $ils->checkout( $patron_id, $item_id, $sc_renewal_policy, $fee_ack ); } $item = $status->item; @@ -601,14 +600,15 @@ sub handle_checkout { } } } - if ($protocol_version >= 2) { - # Financials : return irrespective of ok status - if ($status->fee_amount) { - $resp .= add_field(FID_FEE_AMT, $status->fee_amount); - $resp .= maybe_add(FID_CURRENCY, $status->sip_currency); - $resp .= maybe_add(FID_FEE_TYPE, $status->sip_fee_type); - $resp .= maybe_add(FID_TRANSACTION_ID, - $status->transaction_id); + + if ( $protocol_version >= 2 ) { + + # Financials : return irrespective of ok status + if ( $status->fee_amount ) { + $resp .= add_field( FID_FEE_AMT, $status->fee_amount ); + $resp .= maybe_add( FID_CURRENCY, $status->sip_currency ); + $resp .= maybe_add( FID_FEE_TYPE, $status->sip_fee_type ); + $resp .= maybe_add( FID_TRANSACTION_ID, $status->transaction_id ); } } -- 1.7.2.5