@@ -, +, @@ exact full payment --- C4/SIP/ILS/Transaction/FeePayment.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/SIP/ILS/Transaction/FeePayment.pm +++ a/C4/SIP/ILS/Transaction/FeePayment.pm @@ -57,7 +57,7 @@ sub pay { if ($fee_id) { my $fee = Koha::Account::Lines->find($fee_id); - if ( $fee && $fee->amountoutstanding == $amt ) { + if ( $fee ) { $account->pay( { amount => $amt, --