Add Leddy to the list of libraries for circ_date_to_expire
authorDan Scott <dscott@laurentian.ca>
Thu, 23 Aug 2012 14:56:41 +0000 (10:56 -0400)
committerDan Scott <dscott@laurentian.ca>
Tue, 7 May 2013 18:58:00 +0000 (14:58 -0400)
Signed-off-by: Dan Scott <dscott@laurentian.ca>
tools/daily-scripts/circ_date_to_expire_date.pl

index 50492ed..d4da5c4 100644 (file)
@@ -16,6 +16,9 @@ use OpenSRF::Utils::SettingsClient;
 
 my ($config, $set_due_time) = ('/openils/conf/opensrf_core.xml', 0);
 
+# list of patron home_ous to check for expiry dates
+my $libraries = "103, 109, 110, 122, 126";
+
 GetOptions(
        "bootstrap=s"   => \$config,
        "set_due_time"  => \$set_due_time,
@@ -49,7 +52,7 @@ sub end_of_day {
                WHERE aoc.due_date > au.expire_date
                AND au.expire_date > NOW()
                AND au.expire_date < NOW() + '2 years'::interval
-               AND au.home_ou IN (103, 110, 126)
+               AND au.home_ou IN ($libraries)
                ORDER BY au.expire_date
 STMT
 
@@ -60,7 +63,7 @@ STMT
                         AND ac.due_date > au.expire_date
                         AND au.expire_date > NOW()
                         AND au.expire_date < NOW() + '2 years'::interval
-                        AND au.home_ou IN (103, 110, 126)
+                        AND au.home_ou IN ($libraries)
                         AND ac.checkin_time IS NULL
 UPDATE