LP1982031 Reword Acq FYE library setting
authorTiffany Little <tlittle@georgialibraries.org>
Thu, 21 Jul 2022 15:24:58 +0000 (11:24 -0400)
committerGalen Charlton <gmc@equinoxOLI.org>
Fri, 28 Oct 2022 01:12:48 +0000 (21:12 -0400)
Signed-off-by: Tiffany Little <tlittle@georgialibraries.org>
Signed-off-by: Gina Monti <gmonti@biblio.org>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>

Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql [new file with mode: 0644]

index 904ef80..5f104f5 100644 (file)
@@ -15818,13 +15818,13 @@ INSERT into config.org_unit_setting_type
         'acq',
         oils_i18n_gettext(
             'acq.fund.allow_rollover_without_money',
-            'Allow funds to be rolled over without bringing the money along',
+            'Rollover encumbrances only',
             'coust',
             'label'
         ),
         oils_i18n_gettext(
             'acq.fund.allow_rollover_without_money',
-            'Allow funds to be rolled over without bringing the money along.  This makes money left in the old fund disappear, modeling its return to some outside entity.',
+            'Rollover encumbrances only when doing fiscal year end.  This makes money left in the old fund disappear, modeling its return to some outside entity.',
             'coust',
             'description'
         ),
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql
new file mode 100644 (file)
index 0000000..abdb8a7
--- /dev/null
@@ -0,0 +1,8 @@
+BEGIN;
+
+UPDATE config.org_unit_setting_type
+    SET label = 'Rollover encumbrances only'
+    SET description = 'Rollover encumbrances only when doing fiscal year end.  This makes money left in the old fund disappear, modeling its return to some outside entity.'
+    WHERE name= 'acq.fund.allow_rollover_without_money';
+
+COMMIT;
\ No newline at end of file