]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.data.lp1826759.items_out_typo.sql
Signed-off-by: Shula Link <slink@gchrl.org>
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.data.lp1826759.items_out_typo.sql
1 BEGIN;
2
3 UPDATE config.org_unit_setting_type
4     SET description = oils_i18n_gettext('ui.circ.show_billing_tab_on_bills',
5         'If enabled and a patron has outstanding bills and the alert page is not required, show the billing tab by default, instead of the checkout tab, when a patron is loaded',
6         'coust', 'description')
7     WHERE name = 'ui.circ.show_billing_tab_on_bills';
8 UPDATE config.org_unit_setting_type    
9     SET description = oils_i18n_gettext('ui.circ.show_billing_tab_on_bills',
10         'If enabled and a patron has outstanding bills and the alert page is not required, show the billing tab by default, instead of the checkout tab, when a patron is loaded',
11         'coust', 'description')
12     WHERE name = 'ui.circ.show_billing_tab_on_bills';
13 UPDATE config.org_unit_setting_type
14     SET description = oils_i18n_gettext(
15         'ui.circ.items_out.longoverdue',
16         'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
17         'or "Other/Special Circulations") the circulation '||
18         'should appear while checked out, and B. Whether the circulation should '||
19         'continue to appear in the "Other" tab when checked in with '||
20         'outstanding fines.  '||
21         '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
22         '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
23         'coust',
24         'description'
25     )
26     WHERE name = 'ui.circ.items_out.longoverdue';
27 UPDATE config.org_unit_setting_type
28     set description = oils_i18n_gettext(
29         'ui.circ.items_out.lost',
30         'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
31         'or "Other/Special Circulations") the circulation '||
32         'should appear while checked out, and B. Whether the circulation should '||
33         'continue to appear in the "Other" tab when checked in with '||
34         'outstanding fines.  '||
35         '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
36         '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
37         'coust',
38         'description'
39     )
40     WHERE name = 'ui.circ.items_out.lost';
41 UPDATE config.org_unit_setting_type
42     set description = oils_i18n_gettext(
43         'ui.circ.items_out.claimsreturned',
44         'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
45         'or "Other/Special Circulations") the circulation '||
46         'should appear while checked out, and B. Whether the circulation should '||
47         'continue to appear in the "Other" tab when checked in with '||
48         'outstanding fines.  '||
49         '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
50         '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
51         'coust',
52         'description'
53     )
54     WHERE name = 'ui.circ.items_out.claimsreturned';
55
56 END;