From 8da7d598effbe1a4f6b101385173c063fd431198 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 9 Oct 2025 16:07:51 +0100 Subject: [PATCH] Bug 40866: Add missing override states to action-logs.inc This follow-up adds missing override state translations that were discovered during testing. The patchset logs various override states but some were not covered in the log viewer display template. Missing states added: - USERBLOCKEDNOENDDATE: Patron had an indefinite restriction - CURRENTISSUE: Item is currently checked out to this patron - UNSEEN: Unseen renewal - SEEN: Seen renewal These states are now properly displayed in the action logs viewer when reviewing circulation override logging. Signed-off-by: Andrew Fuerste Henry Signed-off-by: Paul Derscheid --- koha-tmpl/intranet-tmpl/prog/en/includes/action-logs.inc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/action-logs.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/action-logs.inc index 57092d75e7d..b38c82ab76b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/action-logs.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/action-logs.inc @@ -191,6 +191,8 @@ Patron had debt [% CASE 'USERBLOCKEDOVERDUE' %] Patron had overdues + [% CASE 'USERBLOCKEDNOENDDATE' %] + Patron had an indefinite restriction [% CASE 'ADDITIONAL_MATERIALS' %] Additional materials were confirmed [% CASE 'RENEW_ISSUE' %] @@ -251,6 +253,12 @@ Override auto-renew too much owing restriction [% CASE 'OVERRIDDEN' %] Restriction overridden temporarily + [% CASE 'CURRENTISSUE' %] + Item is currently checked out to this patron + [% CASE 'UNSEEN' %] + Unseen renewal + [% CASE 'SEEN' %] + Seen renewal [% CASE %] [% override | html %] [% END %] -- 2.39.5