From: miker Date: Thu, 16 Sep 2010 14:28:09 +0000 (+0000) Subject: Missed some holds-related OU setting types from 0077.data.holds_local_avail_and_overr... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c17dd7d25e9afe566613e17d914864493fd3e75e;p=evergreen%2Fjoelewis.git Missed some holds-related OU setting types from 0077.data.holds_local_avail_and_override.sql in the seed data git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_0@17727 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index b7aa8035e3..1c853b9a98 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -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') +; + +