Bugzilla – Attachment 179418 Details for
Bug 31167
Only mark due dates in the past red on overdues report
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31167: Only mark due dates in the past red on overdues report
Bug-31167-Only-mark-due-dates-in-the-past-red-on-o.patch (text/plain), 4.54 KB, created by
David Nind
on 2025-03-18 01:44:11 UTC
(
hide
)
Description:
Bug 31167: Only mark due dates in the past red on overdues report
Filename:
MIME Type:
Creator:
David Nind
Created:
2025-03-18 01:44:11 UTC
Size:
4.54 KB
patch
obsolete
>From 07c2c46de5f0ae6d2d9d31646d29dfe467154708 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >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 <david@davidnind.com> >--- > 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 @@ > <tbody> > [% FOREACH overdueloo IN overdueloop %] > <tr> >- <td data-order="[% overdueloo.duedate | html %]"><span class="overdue">[% overdueloo.duedate | $KohaDates %]</span></td> >+ <td data-order="[% overdueloo.duedate | html %]"> >+ [% IF ( overdueloo.overdue ) %] >+ <span class="overdue">[% overdueloo.duedate | $KohaDates %]</span> >+ [% ELSE %] >+ [% overdueloo.duedate | $KohaDates %] >+ [% END %] >+ </td> > <td> > [% 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 @@ > <td>[% Branches.GetName( overdueloo.homebranchcode ) | html %]</td> > <td>[% Branches.GetName( overdueloo.holdingbranchcode ) | html %]</td> > <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => overdueloo.location ) | html %]</td> >- <td data-order="[% overdueloo.datelastborrowed | html %]"><span class="overdue">[% overdueloo.datelastborrowed | $KohaDates %]</span></td> >+ <td data-order="[% overdueloo.datelastborrowed | html %]">[% overdueloo.datelastborrowed | $KohaDates %]</td> > <td > ><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber | uri %]&itemnumber=[% overdueloo.itemnum | uri %]#item[% overdueloo.itemnum | uri %]" > >[% overdueloo.barcode | html %]</a >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 31167
:
179414
|
179418
|
179562