From 898125a126722d4844910a80bb12a8bdb5ff46d9 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Mon, 25 Sep 2023 10:11:03 -0400
Subject: [PATCH] Bug 22873: Add comment to explain what disallow_overpayment
 is for

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
---
 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