add the patron opt-in settings
authorJason Etheridge <jason@esilibrary.com>
Fri, 10 Jun 2011 20:40:46 +0000 (16:40 -0400)
committerJason Etheridge <jason@esilibrary.com>
Fri, 10 Jun 2011 20:43:12 +0000 (16:43 -0400)
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/0550.data.patron_opt_in_settings.sql [new file with mode: 0644]

index 7b34e66..9b5bffb 100644 (file)
@@ -86,7 +86,7 @@ CREATE TRIGGER no_overlapping_deps
     BEFORE INSERT OR UPDATE ON config.db_patch_dependencies
     FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
 
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0549', :eg_version); -- phasefx/berick
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0550', :eg_version); -- phasefx/jamesrf
 
 CREATE TABLE config.bib_source (
        id              SERIAL  PRIMARY KEY,
index e07160a..35651d2 100644 (file)
@@ -2730,7 +2730,19 @@ INSERT into config.org_unit_setting_type
 ( 'opac.fully_compressed_serial_holdings',
     oils_i18n_gettext('opac.fully_compressed_serial_holdings', 'OPAC: Use fully compressed serial holdings', 'coust', 'label'),
     oils_i18n_gettext('opac.fully_compressed_serial_holdings', 'Show fully compressed serial holdings for all libraries at and below the current context unit', 'coust', 'description'),
-    'bool')
+    'bool'),
+
+( 'org.patron_opt_boundary',
+    oils_i18n_gettext( 'org.patron_opt_boundary', 'Circ: Patron Opt-In Boundary', 'coust', 'label'),
+    oils_i18n_gettext( 'org.patron_opt_boundary', 'This determines at which depth above which patrons must be opted in, and below which patrons will be assumed to be opted in.', 'coust', 'label'),
+    'integer'),
+
+( 'org.patron_opt_default',
+    oils_i18n_gettext( 'org.patron_opt_default', 'Circ: Patron Opt-In Default', 'coust', 'label'),
+    oils_i18n_gettext( 'org.patron_opt_default', 'This is the default depth at which a patron is opted in; it is calculated as an org unit relative to the current workstation.', 'coust', 'label'),
+    'integer');
+
+COMMIT;
 ;
 
 UPDATE config.org_unit_setting_type
diff --git a/Open-ILS/src/sql/Pg/upgrade/0550.data.patron_opt_in_settings.sql b/Open-ILS/src/sql/Pg/upgrade/0550.data.patron_opt_in_settings.sql
new file mode 100644 (file)
index 0000000..58a4169
--- /dev/null
@@ -0,0 +1,40 @@
+BEGIN;
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('0550', :eg_version);
+
+INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
+    'org.patron_opt_boundary',
+    oils_i18n_gettext( 
+        'org.patron_opt_boundary',
+        'Circ: Patron Opt-In Boundary',
+        'coust',
+        'label'
+    ),
+    oils_i18n_gettext( 
+        'org.patron_opt_boundary',
+        'This determines at which depth above which patrons must be opted in, and below which patrons will be assumed to be opted in.',
+        'coust',
+        'label'
+    ),
+    'integer'
+);
+
+INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
+    'org.patron_opt_default',
+    oils_i18n_gettext( 
+        'org.patron_opt_default',
+        'Circ: Patron Opt-In Default',
+        'coust',
+        'label'
+    ),
+    oils_i18n_gettext( 
+        'org.patron_opt_default',
+        'This is the default depth at which a patron is opted in; it is calculated as an org unit relative to the current workstation.',
+        'coust',
+        'label'
+    ),
+    'integer'
+);
+
+COMMIT;