lp1856097 Tide Default Classification Scheme Description
authorKyle Huckins <khuckins@catalyte.io>
Wed, 11 Dec 2019 23:17:22 +0000 (23:17 +0000)
committerJane Sandberg <js7389@princeton.edu>
Fri, 4 Nov 2022 02:53:03 +0000 (19:53 -0700)
- With the updates in lp1839341, the description in the YAOUS for
Default Classification Scheme is incorrect. It prompts for a number:
1, 2, or 3. The Angular Settings Editor now displays a verbose
dropdown. The description has been updated accordingly.

Signed-off-by: Kyle Huckins <khuckins@catalyte.io>

 Changes to be committed:
modified:   Open-ILS/src/sql/Pg/950.data.seed-values.sql
new file:   Open-ILS/src/sql/Pg/upgrade/XXXX.data.default_classification-description-update.sql

Signed-off-by: Susan Morrison <smorrison@georgialibraries.org>
Signed-off-by: Jane Sandberg <js7389@princeton.edu>

Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/XXXX.data.default_classification-description-update.sql [new file with mode: 0644]

index 93b7481..ddfabe4 100644 (file)
@@ -3303,7 +3303,7 @@ INSERT into config.org_unit_setting_type
         'Default Classification Scheme',
         'coust', 'label'),
     oils_i18n_gettext('cat.default_classification_scheme',
-        'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
+        'Defines the default classification scheme for new call numbers.',
         'coust', 'description'),
     'link', 'acnc')
 
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.default_classification-description-update.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.default_classification-description-update.sql
new file mode 100644 (file)
index 0000000..cf3e907
--- /dev/null
@@ -0,0 +1,10 @@
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+UPDATE config.org_unit_setting_type SET description = oils_i18n_gettext('cat.default_classification_scheme',
+        'Defines the default classification scheme for new call numbers.',
+         'coust', 'description')
+    WHERE name = 'cat.default_classification_scheme'
+
+COMMIT;
\ No newline at end of file