From 07c2c46de5f0ae6d2d9d31646d29dfe467154708 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 14 Mar 2025 17:52:08 +0000 Subject: [PATCH] Bug 31167: Only mark due dates in the past red on overdues report This patch adds information about whether an entry in the overdue report is overdue so we can style dates accordingly. We can't assume that each result is overdue because the report can be changed to include all checked out items. To test, apply the patch and go to Circulation. - Check out to a patron. - Use the "Specify due date" option to check out some items with due dates in the past, due dates today, and due dates in the future. - Go to Circulation -> Overdues. - You should see the items which have due dates in the past. The date in the "Due date" column should be red text. The "Checked out on" date should be regular text. - In the sidebar, check the "Show any items currently checked out" checkbox and submit the form. - You should now see all the items you just checked out. Only the overdue items should show their due date in red. Sponsored-by: Athens County Public Libraries Signed-off-by: David Nind --- circ/overdue.pl | 3 ++- .../intranet-tmpl/prog/en/modules/circ/overdue.tt | 10 ++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/circ/overdue.pl b/circ/overdue.pl index 7af624600b..d7b237c24f 100755 --- a/circ/overdue.pl +++ b/circ/overdue.pl @@ -386,7 +386,8 @@ if ($noreport) { return_claim_id => $data->{return_claim_id}, enumchron => $data->{enumchron}, itemtype => $data->{itype}, - patron_attr_value_loop => \@patron_attr_value_loop, + overdue => DateTime->compare( dt_from_string( $data->{date_due} ), $today_dt ) == -1 ? 1 : 0, + patron_attr_value_loop => \@patron_attr_value_loop, }; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt index c67eb0cf55..cd9efbccaa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt @@ -112,7 +112,13 @@ [% FOREACH overdueloo IN overdueloop %] - [% overdueloo.duedate | $KohaDates %] + + [% IF ( overdueloo.overdue ) %] + [% overdueloo.duedate | $KohaDates %] + [% ELSE %] + [% overdueloo.duedate | $KohaDates %] + [% END %] + [% INCLUDE 'patron-title.inc' patron=overdueloo.patron hide_patron_infos_if_needed=1 %] [% IF logged_in_user.can_see_patron_infos( overdueloo.patron ) %] @@ -129,7 +135,7 @@ [% Branches.GetName( overdueloo.homebranchcode ) | html %] [% Branches.GetName( overdueloo.holdingbranchcode ) | html %] [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => overdueloo.location ) | html %] - [% overdueloo.datelastborrowed | $KohaDates %] + [% overdueloo.datelastborrowed | $KohaDates %] [% overdueloo.barcode | html %]