]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1242.schema.lost_lo_claimsret_descrip.sql
LP1615805 No inputs after submit in patron search (AngularJS)
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1242.schema.lost_lo_claimsret_descrip.sql
1 BEGIN;
2
3 -- check whether patch can be applied
4 SELECT evergreen.upgrade_deps_block_check('1242', :eg_version);
5
6 -- Long Overdue
7 UPDATE config.org_unit_setting_type
8 SET description = oils_i18n_gettext(
9         'ui.circ.items_out.longoverdue',
10 'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
11 'or "Other/Special Circulations") the circulation '||
12 'should appear while checked out, and B. Whether the circulation should '||
13 'continue to appear in the "Other" tab when checked in with '||
14 'oustanding fines.  '||
15 '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
16 '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
17         'coust',
18         'description'
19     )
20 WHERE NAME = 'ui.circ.items_out.longoverdue';
21
22 -- Lost
23 UPDATE config.org_unit_setting_type
24 SET description = oils_i18n_gettext(
25         'ui.circ.items_out.lost',
26 'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
27 'or "Other/Special Circulations") the circulation '||
28 'should appear while checked out, and B. Whether the circulation should '||
29 'continue to appear in the "Other" tab when checked in with '||
30 'oustanding fines.  '||
31 '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
32 '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
33         'coust',
34         'description'
35     )
36 WHERE NAME = 'ui.circ.items_out.lost';
37
38 -- Claims Returned
39 UPDATE config.org_unit_setting_type
40 SET description = oils_i18n_gettext(
41         'ui.circ.items_out.claimsreturned',
42 'Value is a numeric code, describing: A. In which tab ("Items Checked Out", '||
43 'or "Other/Special Circulations") the circulation '||
44 'should appear while checked out, and B. Whether the circulation should '||
45 'continue to appear in the "Other" tab when checked in with '||
46 'oustanding fines.  '||
47 '1 = (A) "Items", (B) "Other".  2 = (A) "Other", (B) "Other".  ' ||
48 '5 = (A) "Items", (B) do not display.  6 = (A) "Other", (B) do not display.',
49         'coust',
50         'description'
51     )
52 WHERE NAME = 'ui.circ.items_out.claimsreturned';
53
54 COMMIT;