@@ -, +, @@ --- C4/SIP/ILS/Transaction/FeePayment.pm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) --- a/C4/SIP/ILS/Transaction/FeePayment.pm +++ a/C4/SIP/ILS/Transaction/FeePayment.pm @@ -62,11 +62,12 @@ sub pay { if ( $fee ) { my $pay_response = $account->pay( { - amount => $amt, - type => $type, - payment_type => 'SIP' . $sip_type, - lines => [$fee], - interface => C4::Context->interface + amount => $amt, + type => $type, + payment_type => 'SIP' . $sip_type, + lines => [$fee], + interface => C4::Context->interface, + cash_register => $register_id } ); return { --