From d85cb9649f348459e1e9f8b9d5177e3b6dac9259 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 11 May 2022 15:47:58 +0100 Subject: [PATCH] Bug 29021: RenewAccruingItemWhenPaid renewals are not seen This patch updates the call to AddRewewal from Koha::Accounts to makr the renewal as unseen. Signed-off-by: Matt Blenkinsop Signed-off-by: Kyle M Hall --- Koha/Account/Line.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Account/Line.pm b/Koha/Account/Line.pm index b940d6acef..e7e63adbfa 100644 --- a/Koha/Account/Line.pm +++ b/Koha/Account/Line.pm @@ -1035,7 +1035,7 @@ sub renew_item { $self->{branchcode}, undef, undef, - 1 + 0 ); return { itemnumber => $itemnumber, -- 2.30.2