From 018b2a390a516463bf7d31176e297be59d542f0f Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 11 Dec 2019 11:53:51 +0000 Subject: [PATCH] Bug 15751: Add ModDateLastSeen to ProcessOfflineReturn Content-Type: text/plain; charset=utf-8 Test plan: 1) Before the patch when one checks in something using the KOCT the last seen date is not updated. 2) After the patch when one checks in something using the KOCT the last seen date is updated. Signed-off-by: Laurence Rault Signed-off-by: Marcel de Rooy --- C4/Circulation.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index faaa2692e8..8db887db2e 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -3884,6 +3884,8 @@ sub ProcessOfflineReturn { my $itemnumber = $item->itemnumber; my $issue = GetOpenIssue( $itemnumber ); if ( $issue ) { + my $leave_item_lost = C4::Context->preference("BlockReturnOfLostItems") ? 1 : 0; + ModDateLastSeen( $itemnumber, $leave_item_lost ); MarkIssueReturned( $issue->{borrowernumber}, $itemnumber, -- 2.11.0