Bugzilla – Attachment 35715 Details for
Bug 13679
If you have overdues that match a rule, and have some items due in the future they are included in the list of overdues
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13679 : Bug in listing overdues
Bug-13679--Bug-in-listing-overdues.patch (text/plain), 1.17 KB, created by
Chris Cormack
on 2015-02-07 04:06:29 UTC
(
hide
)
Description:
Bug 13679 : Bug in listing overdues
Filename:
MIME Type:
Creator:
Chris Cormack
Created:
2015-02-07 04:06:29 UTC
Size:
1.17 KB
patch
obsolete
>From 659836d8ee182c49d38a0ef37cb64014664b2a57 Mon Sep 17 00:00:00 2001 >From: Chris Cormack <chris@bigballofwax.co.nz> >Date: Sat, 7 Feb 2015 17:04:40 +1300 >Subject: [PATCH] Bug 13679 : Bug in listing overdues > >To test >1/ Create some overdues and some issues due in the future >2/ Run the overdues script >3/ Notice item due in the future is in the list >4/ Apply patch >5/ Run script again >6/ Notice in the future not in the list >--- > misc/cronjobs/overdue_notices.pl | 2 ++ > 1 file changed, 2 insertions(+) > >diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl >index 4d05ff7..8db858d 100755 >--- a/misc/cronjobs/overdue_notices.pl >+++ b/misc/cronjobs/overdue_notices.pl >@@ -602,6 +602,8 @@ END_SQL > my $j = 0; > my $exceededPrintNoticesMaxLines = 0; > while ( my $item_info = $sth2->fetchrow_hashref() ) { >+ next unless ( DateTime->compare( $date_to_run, dt_from_string($item_info->{date_due})) ) == 1; >+ > if ( C4::Context->preference('OverdueNoticeCalendar') ) { > my $calendar = > Koha::Calendar->new( branchcode => $branchcode ); >-- >2.1.0
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 13679
:
35715
|
35986
|
36020