[open-ils-commits] r17185 - trunk/Open-ILS/src/sql/Pg (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Aug 12 08:57:14 EDT 2010


Author: erickson
Date: 2010-08-12 08:57:13 -0400 (Thu, 12 Aug 2010)
New Revision: 17185

Modified:
   trunk/Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql
   trunk/Open-ILS/src/sql/Pg/400.schema.action_trigger.sql
Log:
avoid confusion by not installing the non-functional GenerateBatchOverduePDF reactor with the seed data.

Modified: trunk/Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql	2010-08-12 07:46:01 UTC (rev 17184)
+++ trunk/Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql	2010-08-12 12:57:13 UTC (rev 17185)
@@ -3225,7 +3225,6 @@
 INSERT INTO action_trigger.reactor (module,description) VALUES ('NOOP_True','Always returns true -- reaction always passes');
 INSERT INTO action_trigger.reactor (module,description) VALUES ('NOOP_False','Always returns false -- reaction always fails');
 INSERT INTO action_trigger.reactor (module,description) VALUES ('SendEmail','Send an email based on a user-defined template');
-INSERT INTO action_trigger.reactor (module,description) VALUES ('GenerateBatchOverduePDF','Output a batch PDF of overdue notices for printing');
 INSERT INTO action_trigger.reactor (module,description) VALUES ('MarkItemLost','Marks a circulation and associated item as lost');
 INSERT INTO action_trigger.reactor (module,description) VALUES ('ApplyCircFee','Applies a billing with a pre-defined amount to a circulation');
 INSERT INTO action_trigger.reactor (module,description) VALUES ('ProcessTemplate', 'Processes the configured template');

Modified: trunk/Open-ILS/src/sql/Pg/400.schema.action_trigger.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/400.schema.action_trigger.sql	2010-08-12 07:46:01 UTC (rev 17184)
+++ trunk/Open-ILS/src/sql/Pg/400.schema.action_trigger.sql	2010-08-12 12:57:13 UTC (rev 17185)
@@ -121,16 +121,19 @@
         'description'
     )
 );
+
+-- TODO: build a PDF generator
+--INSERT INTO action_trigger.reactor (module,description) VALUES
+--(   'GenerateBatchOverduePDF',
+--    oils_i18n_gettext(
+--        'GenerateBatchOverduePDF',
+--        'Output a batch PDF of overdue notices for printing',
+--        'atreact',
+--        'description'
+--    )
+--);
+
 INSERT INTO action_trigger.reactor (module,description) VALUES
-(   'GenerateBatchOverduePDF',
-    oils_i18n_gettext(
-        'GenerateBatchOverduePDF',
-        'Output a batch PDF of overdue notices for printing',
-        'atreact',
-        'description'
-    )
-);
-INSERT INTO action_trigger.reactor (module,description) VALUES
 (   'MarkItemLost',
     oils_i18n_gettext(
         'MarkItemLost',



More information about the open-ils-commits mailing list