From f75f718e63d49f632f133ae7d5d0d42f5becc731 Mon Sep 17 00:00:00 2001
From: Tomas Cohen Arazi <tomascohen@theke.io>
Date: Mon, 5 Jun 2023 15:18:04 -0300
Subject: [PATCH] Bug 33789: Update POD

---
 Koha/Account.pm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Koha/Account.pm b/Koha/Account.pm
index 13611dc0c31..a0bf3c7d249 100644
--- a/Koha/Account.pm
+++ b/Koha/Account.pm
@@ -159,13 +159,14 @@ my $credit_line = Koha::Account->new({ patron_id => $patron_id })->add_credit(
     {
         amount       => $amount,
         description  => $description,
-        note         => $note,
-        user_id      => $user_id,
         interface    => $interface,
+        issue_id     => $checkout->id,
+        item_id      => $item_id,
         library_id   => $library_id,
+        note         => $note,
         payment_type => $payment_type,
         type         => $credit_type,
-        item_id      => $item_id
+        user_id      => $user_id,
     }
 );
 
-- 
2.34.1