From 8b528ab09d08eb2c8162d89cb511857520f20c68 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 19 Apr 2017 09:29:13 -0400 Subject: [PATCH] Bug 16895 [QA Followup] - Don't require fee payment to be exact full payment Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall --- C4/SIP/ILS/Transaction/FeePayment.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/SIP/ILS/Transaction/FeePayment.pm b/C4/SIP/ILS/Transaction/FeePayment.pm index 9cedce568e..fe491979fd 100644 --- a/C4/SIP/ILS/Transaction/FeePayment.pm +++ b/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, -- 2.39.5