From 9a6b059db136eeed143ee5c5c12379c0816ef72f 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 Content-Type: text/plain; charset=utf-8 Signed-off-by: Marcel de Rooy --- 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 9cedce5..fe49197 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.1.4