From 5b470a375daeeebc0d62e9d11347489c6480b444 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 eaaa22dd8fe..6c75664f39d 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.0