From 215fd0119705ef1a928ea49f38a96d485f9139c7 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 4 Mar 2025 14:40:18 +0000 Subject: [PATCH] Bug 37907: Add column to user summary to show date an item was checked out on This patch adds a "Checked out on" column to the table of checkouts and the table of overdues on the OPAC user summary page. To test, apply the patch and log in to the OPAC as a user who has overdue items. - On the user summary page confirm that the "Checked out" table shows a column for "Checked out on" and that the information is displayed correctly. - Make the same check of the "Overdue" tab. Sponsored-by: Athens County Public Libraries Signed-off-by: Olivier V Signed-off-by: Baptiste Wojtkowski --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt index 8a90f4de..ac63043c 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -340,6 +340,7 @@ [% IF ( JacketImages ) %] [% END %] Title Author + Checked out on Due [% IF ( Koha.Preference('BiblioItemtypeInfo') || !item_level_itypes ) %] Item type @@ -428,6 +429,7 @@ [% ISSUE.author | html %] + [% ISSUE.issuedate | $KohaDates as_due_date => 1 %] [% IF ( ISSUE.overdue ) %] [% ISSUE.date_due | $KohaDates as_due_date => 1 %] [% ELSE %] @@ -710,7 +712,6 @@ [% c.item.barcode | html %] [% c.item.itemcallnumber | html %] - [% r.firstname | html %] [% r.surname | html %] @@ -733,6 +734,7 @@ [% UNLESS ( item_level_itypes ) %]Item type[% END %] [% IF ( show_barcode ) %]Barcode[% END %] Call number + Checked out on Due [% IF ( OpacRenewalAllowed ) %] Renew @@ -803,6 +805,7 @@ [% OVERDUE.barcode | html %] [% END %] [% OVERDUE.itemcallnumber | html %] + [% OVERDUE.issuedate | $KohaDates as_due_date => 1 %] [% OVERDUE.date_due | $KohaDates as_due_date => 1 %] [% IF ( OpacRenewalAllowed ) %] -- 2.30.2