From: Tiffany Little Date: Thu, 21 Jul 2022 15:24:58 +0000 (-0400) Subject: LP1982031 Reword Acq FYE library setting X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6d8e2487fc7a7336c0b7f61878b6cea873991bfa;p=evergreen%2Fjoelewis.git LP1982031 Reword Acq FYE library setting Signed-off-by: Tiffany Little Signed-off-by: Gina Monti Signed-off-by: Galen Charlton --- 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