[open-ils-commits] r10601 - trunk/Open-ILS/src/support-scripts
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Sep 15 18:11:46 EDT 2008
Author: erickson
Date: 2008-09-15 18:11:41 -0400 (Mon, 15 Sep 2008)
New Revision: 10601
Modified:
trunk/Open-ILS/src/support-scripts/generate_circ_notices.pl
Log:
had order_by clause in the wrong part of the query
Modified: trunk/Open-ILS/src/support-scripts/generate_circ_notices.pl
===================================================================
--- trunk/Open-ILS/src/support-scripts/generate_circ_notices.pl 2008-09-15 21:22:33 UTC (rev 10600)
+++ trunk/Open-ILS/src/support-scripts/generate_circ_notices.pl 2008-09-15 22:11:41 UTC (rev 10601)
@@ -192,10 +192,10 @@
{stop_fines => {'not in' => ["LOST","LONGOVERDUE","CLAIMSRETURNED"]}},
{stop_fines => undef}
],
- due_date => {between => [$start_date, $end_date]},
- order_by => {circ => ['usr', 'circ_lib']}
+ due_date => {between => [$start_date, $end_date]}
}
- }
+ },
+ order_by => {circ => ['usr', 'circ_lib']}
};
# if a circ duration is defined for this type of notice
More information about the open-ils-commits
mailing list