Missed some holds-related OU setting types from 0077.data.holds_local_avail_and_overr...
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 16 Sep 2010 14:28:09 +0000 (14:28 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 16 Sep 2010 14:28:09 +0000 (14:28 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_0@17727 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/950.data.seed-values.sql

index b7aa803..1c853b9 100644 (file)
@@ -7515,3 +7515,28 @@ INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
         'bool'
 );
 
+INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
+    VALUES
+        ('circ.holds.alert_if_local_avail',
+         oils_i18n_gettext('circ.holds.alert_if_local_avail',
+             'Holds: Local available alert', 'coust', 'label'),
+         oils_i18n_gettext('circ.holds.alert_if_local_avail',
+            'If local copy is available, alert the person making the hold', 'coust', 'description'),
+         'bool'),
+
+        ('circ.holds.deny_if_local_avail',
+         oils_i18n_gettext('circ.holds.deny_if_local_avail',
+            'Holds: Local available block', 'coust', 'label'),
+         oils_i18n_gettext('circ.holds.deny_if_local_avail',
+            'If local copy is available, deny the creation of the hold', 'coust', 'description'),
+         'bool'),
+
+        ('circ.holds.clear_shelf.no_capture_holds',
+        oils_i18n_gettext( 'circ.holds.clear_shelf.no_capture_holds',
+            'Holds: Bypass hold capture during clear shelf process', 'coust', 'label'),
+        oils_i18n_gettext( 'circ.holds.clear_shelf.no_capture_holds',
+            'During the clear shelf process, avoid capturing new holds on cleared items.', 'coust', 'description'),
+        'bool')
+;
+
+