]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0378.data.fix_org_unit_setting_types.sql
LP#1206936 - Fix wrong billing info in money.transaction_billing_summary
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0378.data.fix_org_unit_setting_types.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0378'); -- Scott McKellar
4
5 UPDATE config.org_unit_setting_type
6 SET label = oils_i18n_gettext(
7         'acq.fund.balance_limit.block',
8         'Fund Spending Limit for Block',
9         'coust',
10         'label')
11 WHERE name = 'acq.fund.balance_limit.block';
12
13 UPDATE config.org_unit_setting_type
14 SET label = oils_i18n_gettext(
15         'serial.prev_issuance_copy_location',
16         'Serials: Previous Issuance Copy Location',
17         'coust',
18         'label'),
19         description = oils_i18n_gettext(
20         'serial.prev_issuance_copy_location',
21         'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
22         'coust',
23         'description')
24 WHERE name = 'serial.prev_issuance_copy_location';
25
26 UPDATE config.org_unit_setting_type
27 SET label = oils_i18n_gettext(
28         'cat.default_classification_scheme',
29         'Cataloging: Default Classification Scheme',
30         'coust',
31         'label'),
32         description = oils_i18n_gettext(
33         'cat.default_classification_scheme',
34         'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
35         'coust',
36         'description')
37 WHERE name = 'cat.default_classification_scheme';
38
39 COMMIT;