From 4875cdf5b32deedd6a1282fa57cfbfa65700e35d Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 3 Oct 2022 17:07:20 +0100 Subject: [PATCH] Bug 30979: Fix inconsistent return of AddIssue AddIssue can on occasion create a renewal instead of a fresh issue and in such a case we currently return undefined. We should be consistent and return the existing issue object for the renewal. --- C4/Circulation.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index ccfed5882ef..9d584375bf7 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -1545,6 +1545,7 @@ sub AddIssue { $datedue, $issuedate, # here interpreted as the renewal date ); + $issue = Koha::Checkouts->find( { itemnumber => $item_object->itemnumber } ); } else { -- 2.39.1