From f56a024e8f2e51c8f48352eab0da1d04d7fe3483 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. --- 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 af93725d60..b028a89b5e 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.20.1