From 6d8e2487fc7a7336c0b7f61878b6cea873991bfa Mon Sep 17 00:00:00 2001 From: Tiffany Little Date: Thu, 21 Jul 2022 11:24:58 -0400 Subject: [PATCH] LP1982031 Reword Acq FYE library setting Signed-off-by: Tiffany Little Signed-off-by: Gina Monti Signed-off-by: Galen Charlton --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 4 ++-- Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql 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 904ef8030e..5f104f5741 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -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 index 0000000000..abdb8a70cb --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql @@ -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 -- 2.11.0