From 24e5a2ce373b34d2214cdef84b00d74c4f02901e Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 3 Oct 2022 17:07:20 +0100 Subject: [PATCH] Bug 23336: 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. Signed-off-by: Silvia Meakins Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- C4/Circulation.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index cfdc21e1cb..040ca07db4 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -1546,6 +1546,7 @@ sub AddIssue { $datedue, $issuedate, # here interpreted as the renewal date ); + $issue = Koha::Checkouts->find( { itemnumber => $item_object->itemnumber } ); } else { -- 2.40.1