From 7a74dd3eb364e579d2db6becc525a26117ff2607 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 --- 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.10.2