]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0834.data.yaous-items-out-by-stop-fines.sql
LP#1096209: add check_sms_notify parameter to all relevant event defs
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0834.data.yaous-items-out-by-stop-fines.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0834', :eg_version);
4
5 INSERT INTO config.org_unit_setting_type 
6     (name, grp, datatype, label, description)
7 VALUES (
8     'ui.circ.items_out.longoverdue', 'gui', 'integer',
9     oils_i18n_gettext(
10         'ui.circ.items_out.longoverdue',
11         'Items Out Long-Overdue display setting',
12         'coust',
13         'label'
14     ),
15     oils_i18n_gettext(
16         'ui.circ.items_out.longoverdue',
17 'Value is a numeric code, describing which list the circulation '||
18 'should appear while checked out and whether the circulation should '||
19 'continue to appear in the bottom list, when checked in with '||
20 'oustanding fines.  '||
21 '1 = top list, bottom list.  2 = bottom list, bottom list.  ' ||
22 '5 = top list, do not display.  6 = bottom list, do not display.',
23         'coust',
24         'description'
25     )
26 ), (
27     'ui.circ.items_out.lost', 'gui', 'integer',
28     oils_i18n_gettext(
29         'ui.circ.items_out.lost',
30         'Items Out Lost display setting',
31         'coust',
32         'label'
33     ),
34     oils_i18n_gettext(
35         'ui.circ.items_out.lost',
36 'Value is a numeric code, describing which list the circulation '||
37 'should appear while checked out and whether the circulation should '||
38 'continue to appear in the bottom list, when checked in with '||
39 'oustanding fines.  '||
40 '1 = top list, bottom list.  2 = bottom list, bottom list.  ' ||
41 '5 = top list, do not display.  6 = bottom list, do not display.',
42         'coust',
43         'description'
44     )
45 ), (
46     'ui.circ.items_out.claimsreturned', 'gui', 'integer',
47     oils_i18n_gettext(
48         'ui.circ.items_out.claimsreturned',
49         'Items Out Claims Returned display setting',
50         'coust',
51         'label'
52     ),
53     oils_i18n_gettext(
54         'ui.circ.items_out.claimsreturned',
55 'Value is a numeric code, describing which list the circulation '||
56 'should appear while checked out and whether the circulation should '||
57 'continue to appear in the bottom list, when checked in with '||
58 'oustanding fines.  '||
59 '1 = top list, bottom list.  2 = bottom list, bottom list.  ' ||
60 '5 = top list, do not display.  6 = bottom list, do not display.',
61         'coust',
62         'description'
63     )
64 );
65
66 COMMIT;