New org setting to turn on behind-the-desk hold pickup option for patrons
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 21 Sep 2009 14:57:17 +0000 (14:57 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 21 Sep 2009 14:57:17 +0000 (14:57 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@14071 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/0008.data.org-setting-lib-supports-behind-desk-holds.sql [new file with mode: 0644]

index e691695..5ba3392 100644 (file)
@@ -2220,3 +2220,11 @@ INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VA
     'interval'
 );
 
+-- Setting for behind the desk hold pickups
+INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
+    'circ.holds.behind_desk_pickup_supported',
+    'Holds: Behind Desk Pickup Supported',
+    'If a branch supports both a public holds shelf and behind-the-desk pickups, set this value to true.  This gives the patron the option to enable behind-the-desk pickups for their holds',
+    'bool'
+);
+
diff --git a/Open-ILS/src/sql/Pg/upgrade/0008.data.org-setting-lib-supports-behind-desk-holds.sql b/Open-ILS/src/sql/Pg/upgrade/0008.data.org-setting-lib-supports-behind-desk-holds.sql
new file mode 100644 (file)
index 0000000..1167995
--- /dev/null
@@ -0,0 +1,13 @@
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0008.data.org-setting-lib-supports-behind-desk-holds.sql');
+
+INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
+    'circ.holds.behind_desk_pickup_supported',
+    'Holds: Behind Desk Pickup Supported',
+    'If a branch supports both a public holds shelf and behind-the-desk pickups, set this value to true.  This gives the patron the option to enable behind-the-desk pickups for their holds',
+    'bool'
+);
+
+COMMIT;
+