From 3f936eed431e16f769d8b5d7eb302c65649b767d Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 25 Sep 2023 10:11:03 -0400 Subject: [PATCH] Bug 22873: Add comment to explain what disallow_overpayment is for --- C4/SIP/ILS/Transaction/FeePayment.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/SIP/ILS/Transaction/FeePayment.pm b/C4/SIP/ILS/Transaction/FeePayment.pm index a9fae17da9a..2e5b3364b54 100644 --- a/C4/SIP/ILS/Transaction/FeePayment.pm +++ b/C4/SIP/ILS/Transaction/FeePayment.pm @@ -55,6 +55,7 @@ sub pay { my $account = Koha::Account->new( { patron_id => $borrowernumber } ); + # Bug 16899: Add ability to disallow overpayments for SIP if ($disallow_overpayment) { return { ok => 0 } if $account->balance < $amt; } -- 2.30.2