From b735034b5df46f95a62c33df1ec1c6cf7f1d5dbf Mon Sep 17 00:00:00 2001 From: erickson Date: Thu, 12 Aug 2010 12:57:13 +0000 Subject: [PATCH] avoid confusion by not installing the non-functional GenerateBatchOverduePDF reactor with the seed data. git-svn-id: svn://svn.open-ils.org/ILS/trunk@17185 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql | 1 - Open-ILS/src/sql/Pg/400.schema.action_trigger.sql | 21 ++++++++++++--------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql index 885f7adf0..6768baa86 100644 --- a/Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/1.4.0.5-1.6.0.0-upgrade-db.sql @@ -3225,7 +3225,6 @@ INSERT INTO action_trigger.reactor (module,description) VALUES ('fourty_two','Re 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'); diff --git a/Open-ILS/src/sql/Pg/400.schema.action_trigger.sql b/Open-ILS/src/sql/Pg/400.schema.action_trigger.sql index 525ef8b74..4701a904a 100644 --- a/Open-ILS/src/sql/Pg/400.schema.action_trigger.sql +++ b/Open-ILS/src/sql/Pg/400.schema.action_trigger.sql @@ -121,15 +121,18 @@ INSERT INTO action_trigger.reactor (module,description) VALUES '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' - ) -); + +-- 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 ( 'MarkItemLost', oils_i18n_gettext( -- 2.11.0