From 8dc22762b47160e8ccc7e4ab3331f87bc330303a Mon Sep 17 00:00:00 2001 From: Thomas Berezansky Date: Fri, 23 Sep 2011 19:30:20 -0400 Subject: [PATCH] Unwrapped Suppress Transits upgrade script Signed-off-by: Thomas Berezansky Signed-off-by: Dan Wells --- .../sql/Pg/upgrade/XXXX.suppress_transits.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.suppress_transits.sql diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.suppress_transits.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.suppress_transits.sql new file mode 100644 index 0000000000..8f551c3ba0 --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.suppress_transits.sql @@ -0,0 +1,17 @@ +INSERT into config.org_unit_setting_type (name, grp, label, description, datatype) VALUES +( 'circ.transit.suppress_hold', 'circ', + oils_i18n_gettext('circ.transit.suppress_hold', + 'Suppress Hold Transits Group', + 'coust', 'label'), + oils_i18n_gettext('circ.transit.suppress_hold', + 'If set to a non-empty string Hold Transits will be suppressed between this OU and others with the same value. If set to an empty string transits will not be suppressed.', + 'coust', 'description'), + 'string') +,( 'circ.transit.suppress_non_hold', 'circ', + oils_i18n_gettext('circ.transit.suppress_non_hold', + 'Suppress Non-Hold Transits Group', + 'coust', 'label'), + oils_i18n_gettext('circ.transit.suppress_non_hold', + 'If set to a non-empty string Non-Hold Transits will be suppressed between this OU and others with the same value. If set to an empty string transits will not be suppressed.', + 'coust', 'description'), + 'string'); -- 2.43.2