[open-ils-commits] r17727 - branches/rel_2_0/Open-ILS/src/sql/Pg (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Sep 16 10:28:11 EDT 2010
Author: miker
Date: 2010-09-16 10:28:09 -0400 (Thu, 16 Sep 2010)
New Revision: 17727
Modified:
branches/rel_2_0/Open-ILS/src/sql/Pg/950.data.seed-values.sql
Log:
Missed some holds-related OU setting types from 0077.data.holds_local_avail_and_override.sql in the seed data
Modified: branches/rel_2_0/Open-ILS/src/sql/Pg/950.data.seed-values.sql
===================================================================
--- branches/rel_2_0/Open-ILS/src/sql/Pg/950.data.seed-values.sql 2010-09-16 14:22:05 UTC (rev 17726)
+++ branches/rel_2_0/Open-ILS/src/sql/Pg/950.data.seed-values.sql 2010-09-16 14:28:09 UTC (rev 17727)
@@ -7515,3 +7515,28 @@
'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')
+;
+
+
More information about the open-ils-commits
mailing list