]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/950.data.seed-values.sql
Patch from Ben Ostrowsky (LP#782268) to simplify seed/example permission setup and...
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 950.data.seed-values.sql
1 --002.schema.config.sql:
2 INSERT INTO config.bib_source (id, quality, source, transcendant) VALUES 
3     (1, 90, oils_i18n_gettext(1, 'oclc', 'cbs', 'source'), FALSE);
4 INSERT INTO config.bib_source (id, quality, source, transcendant) VALUES 
5     (2, 10, oils_i18n_gettext(2, 'System Local', 'cbs', 'source'), FALSE);
6 INSERT INTO config.bib_source (id, quality, source, transcendant) VALUES 
7     (3, 1, oils_i18n_gettext(3, 'Project Gutenberg', 'cbs', 'source'), TRUE);
8 SELECT SETVAL('config.bib_source_id_seq'::TEXT, 100);
9
10 INSERT INTO biblio.peer_type (id,name) VALUES
11     (1,oils_i18n_gettext(1,'Bound Volume','bpt','name')),
12     (2,oils_i18n_gettext(2,'Bilingual','bpt','name')),
13     (3,oils_i18n_gettext(3,'Back-to-back','bpt','name')),
14     (4,oils_i18n_gettext(4,'Set','bpt','name')),
15     (5,oils_i18n_gettext(5,'e-Reader Preload','bpt','name')); 
16 SELECT SETVAL('biblio.peer_type_id_seq'::TEXT, 100);
17
18 INSERT INTO config.standing (id, value) VALUES (1, oils_i18n_gettext(1, 'Good', 'cst', 'value'));
19 INSERT INTO config.standing (id, value) VALUES (2, oils_i18n_gettext(2, 'Barred', 'cst', 'value'));
20 SELECT SETVAL('config.standing_id_seq'::TEXT, 100);
21
22 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'label') );
23 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
24 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') );
25 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') );
26 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
27 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
28
29 -- some more from 002.schema.config.sql:
30 INSERT INTO config.xml_transform VALUES ( 'marcxml', 'http://www.loc.gov/MARC21/slim', 'marc', '---' );
31 INSERT INTO config.xml_transform VALUES ( 'mods', 'http://www.loc.gov/mods/', 'mods', '');
32 INSERT INTO config.xml_transform VALUES ( 'mods3', 'http://www.loc.gov/mods/v3', 'mods3', '');
33 INSERT INTO config.xml_transform VALUES ( 'mods32', 'http://www.loc.gov/mods/v3', 'mods32', '');
34 INSERT INTO config.xml_transform VALUES ( 'mods33', 'http://www.loc.gov/mods/v3', 'mods33', '');
35 INSERT INTO config.xml_transform VALUES ( 'marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', '' );
36
37 -- Index Definitions
38 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES 
39     (1, 'series', 'seriestitle', oils_i18n_gettext(1, 'Series Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:relatedItem[@type="series"]/mods32:titleInfo$$, TRUE );
40
41 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES 
42     (2, 'title', 'abbreviated', oils_i18n_gettext(2, 'Abbreviated Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='abbreviated')]$$ );
43 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES 
44     (3, 'title', 'translated', oils_i18n_gettext(3, 'Translated Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='translated')]$$ );
45 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES 
46     (4, 'title', 'alternative', oils_i18n_gettext(4, 'Alternate Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='alternative')]$$ );
47 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES 
48     (5, 'title', 'uniform', oils_i18n_gettext(5, 'Uniform Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='uniform')]$$ );
49 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES 
50     (6, 'title', 'proper', oils_i18n_gettext(6, 'Title Proper', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and not (@type)]$$ );
51
52 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field ) VALUES 
53     (7, 'author', 'corporate', oils_i18n_gettext(7, 'Corporate Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='corporate' and mods32:role/mods32:roleTerm[text()='creator']]$$, $$//*[local-name()='namePart']$$, TRUE ); -- /* to fool vim */;
54 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field ) VALUES 
55     (8, 'author', 'personal', oils_i18n_gettext(8, 'Personal Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='personal' and mods32:role/mods32:roleTerm[text()='creator']]$$, $$//*[local-name()='namePart']$$, TRUE ); -- /* to fool vim */;
56 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field ) VALUES 
57     (9, 'author', 'conference', oils_i18n_gettext(9, 'Conference Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='conference' and mods32:role/mods32:roleTerm[text()='creator']]$$, $$//*[local-name()='namePart']$$, TRUE ); -- /* to fool vim */;
58 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field ) VALUES 
59     (10, 'author', 'other', oils_i18n_gettext(10, 'Other Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='personal' and not(mods32:role)]$$, $$//*[local-name()='namePart']$$, TRUE ); -- /* to fool vim */;
60
61 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES 
62     (11, 'subject', 'geographic', oils_i18n_gettext(11, 'Geographic Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:geographic$$, TRUE );
63 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field ) VALUES 
64     (12, 'subject', 'name', oils_i18n_gettext(12, 'Name Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:name$$, $$//*[local-name()='namePart']$$, TRUE ); -- /* to fool vim */;
65 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES 
66     (13, 'subject', 'temporal', oils_i18n_gettext(13, 'Temporal Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:temporal$$, TRUE );
67 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES 
68     (14, 'subject', 'topic', oils_i18n_gettext(14, 'Topic Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:topic$$, TRUE );
69 --INSERT INTO config.metabib_field ( id, field_class, name, format, xpath ) VALUES 
70 --  ( id, field_class, name, xpath ) VALUES ( 'subject', 'genre', 'mods32', $$//mods32:mods/mods32:genre$$ );
71 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES 
72     (15, 'keyword', 'keyword', oils_i18n_gettext(15, 'General Keywords', 'cmf', 'label'), 'mods32', $$//mods32:mods/*[not(local-name()='originInfo')]$$ ); -- /* to fool vim */;
73 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
74     (16, 'subject', 'complete', oils_i18n_gettext(16, 'All Subjects', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject$$ );
75
76 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
77     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marc:controlfield[@tag='001']$$ );
78 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
79     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='020']/marc:subfield[@code='a' or @code='z']$$ );
80 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
81     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='022']/marc:subfield[@code='a' or @code='z']$$ );
82 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
83     (20, 'identifier', 'upc', oils_i18n_gettext(20, 'UPC', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='1']/marc:subfield[@code='a' or @code='z']$$ );
84 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
85     (21, 'identifier', 'ismn', oils_i18n_gettext(21, 'ISMN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='2']/marc:subfield[@code='a' or @code='z']$$ );
86 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
87     (22, 'identifier', 'ean', oils_i18n_gettext(22, 'EAN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='3']/marc:subfield[@code='a' or @code='z']$$ );
88 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
89     (23, 'identifier', 'isrc', oils_i18n_gettext(23, 'ISRC', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='0']/marc:subfield[@code='a' or @code='z']$$ );
90 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
91     (24, 'identifier', 'sici', oils_i18n_gettext(24, 'SICI', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='4']/marc:subfield[@code='a' or @code='z']$$ );
92 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
93     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='099']$$ );
94 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
95     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
96 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
97     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
98
99 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
100
101 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
102 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
103 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
104 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
105 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
106 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
107 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
108
109 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
110 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
111 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
112 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
113 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
114 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
115 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
116 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
117
118 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
119 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
120 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
121 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
122 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
123 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
124 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
125 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
126 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
127 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
128 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
129 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
130 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
131
132 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
133 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
134 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
135 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
136 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
137 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
138 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
139 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
140
141 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
142 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
143 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
144 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
145 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
146 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
147
148 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
149 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
150 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
151
152
153 INSERT INTO config.non_cataloged_type ( id, owning_lib, name ) VALUES ( 1, 1, oils_i18n_gettext(1, 'Paperback Book', 'cnct', 'name') );
154 SELECT SETVAL('config.non_cataloged_type_id_seq'::TEXT, 100);
155
156 INSERT INTO config.identification_type ( id, name ) VALUES 
157     ( 1, oils_i18n_gettext(1, 'Drivers License', 'cit', 'name') );
158 INSERT INTO config.identification_type ( id, name ) VALUES 
159     ( 2, oils_i18n_gettext(2, 'SSN', 'cit', 'name') );
160 INSERT INTO config.identification_type ( id, name ) VALUES 
161     ( 3, oils_i18n_gettext(3, 'Other', 'cit', 'name') );
162 SELECT SETVAL('config.identification_type_id_seq'::TEXT, 100);
163
164 INSERT INTO config.rule_circ_duration VALUES 
165     (1, oils_i18n_gettext(1, '7_days_0_renew', 'crcd', 'name'), '7 days', '7 days', '7 days', 0);
166 INSERT INTO config.rule_circ_duration VALUES 
167     (2, oils_i18n_gettext(2, '28_days_2_renew', 'crcd', 'name'), '28 days', '28 days', '28 days', 2);
168 INSERT INTO config.rule_circ_duration VALUES 
169     (3, oils_i18n_gettext(3, '3_months_0_renew', 'crcd', 'name'), '3 months', '3 months', '3 months', 0);
170 INSERT INTO config.rule_circ_duration VALUES 
171     (4, oils_i18n_gettext(4, '3_days_1_renew', 'crcd', 'name'), '3 days', '3 days', '3 days', 1);
172 INSERT INTO config.rule_circ_duration VALUES 
173     (5, oils_i18n_gettext(5, '2_months_2_renew', 'crcd', 'name'), '2 months', '2 months', '2 months', 2);
174 INSERT INTO config.rule_circ_duration VALUES 
175     (6, oils_i18n_gettext(6, '35_days_1_renew', 'crcd', 'name'), '35 days', '35 days', '35 days', 1);
176 INSERT INTO config.rule_circ_duration VALUES 
177     (7, oils_i18n_gettext(7, '7_days_2_renew', 'crcd', 'name'), '7 days', '7 days', '7 days', 2);
178 INSERT INTO config.rule_circ_duration VALUES 
179     (8, oils_i18n_gettext(8, '1_hour_2_renew', 'crcd', 'name'), '1 hour', '1 hour', '1 hour', 2);
180 INSERT INTO config.rule_circ_duration VALUES 
181     (9, oils_i18n_gettext(9, '28_days_0_renew', 'crcd', 'name'), '28 days', '28 days', '28 days', 0);
182 INSERT INTO config.rule_circ_duration VALUES 
183     (10, oils_i18n_gettext(10, '14_days_2_renew', 'crcd', 'name'), '14 days', '14 days', '14 days', 2);
184 INSERT INTO config.rule_circ_duration VALUES 
185     (11, oils_i18n_gettext(11, 'default', 'crcd', 'name'), '21 days', '14 days', '7 days', 2);
186 SELECT SETVAL('config.rule_circ_duration_id_seq'::TEXT, 100);
187
188 INSERT INTO config.rule_max_fine VALUES 
189     (1, oils_i18n_gettext(1, 'default', 'crmf', 'name'), 5.00);
190 INSERT INTO config.rule_max_fine VALUES 
191     (2, oils_i18n_gettext(2, 'overdue_min', 'crmf', 'name'), 5.00);
192 INSERT INTO config.rule_max_fine VALUES 
193     (3, oils_i18n_gettext(3, 'overdue_mid', 'crmf', 'name'), 10.00);
194 INSERT INTO config.rule_max_fine VALUES 
195     (4, oils_i18n_gettext(4, 'overdue_max', 'crmf', 'name'), 100.00);
196 INSERT INTO config.rule_max_fine VALUES 
197     (5, oils_i18n_gettext(5, 'overdue_equip_min', 'crmf', 'name'), 25.00);
198 INSERT INTO config.rule_max_fine VALUES 
199     (6, oils_i18n_gettext(6, 'overdue_equip_mid', 'crmf', 'name'), 25.00);
200 INSERT INTO config.rule_max_fine VALUES 
201     (7, oils_i18n_gettext(7, 'overdue_equip_max', 'crmf', 'name'), 100.00);
202 SELECT SETVAL('config.rule_max_fine_id_seq'::TEXT, 100);
203
204 INSERT INTO config.rule_recurring_fine VALUES 
205     (1, oils_i18n_gettext(1, 'default', 'crrf', 'name'), 0.50, 0.10, 0.05, '1 day', '1 day');
206 INSERT INTO config.rule_recurring_fine VALUES 
207     (2, oils_i18n_gettext(2, '10_cent_per_day', 'crrf', 'name'), 0.50, 0.10, 0.10, '1 day', '1 day');
208 INSERT INTO config.rule_recurring_fine VALUES 
209     (3, oils_i18n_gettext(3, '50_cent_per_day', 'crrf', 'name'), 0.50, 0.50, 0.50, '1 day', '1 day');
210 SELECT SETVAL('config.rule_recurring_fine_id_seq'::TEXT, 100);
211
212 INSERT INTO config.rule_age_hold_protect VALUES
213         (1, oils_i18n_gettext(1, '3month', 'crahp', 'name'), '3 months', 0);
214 INSERT INTO config.rule_age_hold_protect VALUES
215         (2, oils_i18n_gettext(2, '6month', 'crahp', 'name'), '6 months', 2);
216 SELECT SETVAL('config.rule_age_hold_protect_id_seq'::TEXT, 100);
217
218 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (0,oils_i18n_gettext(0, 'Available', 'ccs', 'name'),'t','t');
219 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (1,oils_i18n_gettext(1, 'Checked out', 'ccs', 'name'),'t','t');
220 INSERT INTO config.copy_status (id,name) VALUES (2,oils_i18n_gettext(2, 'Bindery', 'ccs', 'name'));
221 INSERT INTO config.copy_status (id,name) VALUES (3,oils_i18n_gettext(3, 'Lost', 'ccs', 'name'));
222 INSERT INTO config.copy_status (id,name) VALUES (4,oils_i18n_gettext(4, 'Missing', 'ccs', 'name'));
223 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (5,oils_i18n_gettext(5, 'In process', 'ccs', 'name'),'t','t');
224 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (6,oils_i18n_gettext(6, 'In transit', 'ccs', 'name'),'t','t');
225 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (7,oils_i18n_gettext(7, 'Reshelving', 'ccs', 'name'),'t','t');
226 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (8,oils_i18n_gettext(8, 'On holds shelf', 'ccs', 'name'),'t','t');
227 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (9,oils_i18n_gettext(9, 'On order', 'ccs', 'name'),'t','t');
228 INSERT INTO config.copy_status (id,name) VALUES (10,oils_i18n_gettext(10, 'ILL', 'ccs', 'name'));
229 INSERT INTO config.copy_status (id,name) VALUES (11,oils_i18n_gettext(11, 'Cataloging', 'ccs', 'name'));
230 INSERT INTO config.copy_status (id,name,opac_visible) VALUES (12,oils_i18n_gettext(12, 'Reserves', 'ccs', 'name'),'t');
231 INSERT INTO config.copy_status (id,name) VALUES (13,oils_i18n_gettext(13, 'Discard/Weed', 'ccs', 'name'));
232 INSERT INTO config.copy_status (id,name) VALUES (14,oils_i18n_gettext(14, 'Damaged', 'ccs', 'name'));
233 INSERT INTO config.copy_status (id,name) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'));
234
235 SELECT SETVAL('config.copy_status_id_seq'::TEXT, 100);
236
237 INSERT INTO config.net_access_level (id, name) VALUES 
238     (1, oils_i18n_gettext(1, 'Filtered', 'cnal', 'name'));
239 INSERT INTO config.net_access_level (id, name) VALUES 
240     (2, oils_i18n_gettext(2, 'Unfiltered', 'cnal', 'name'));
241 INSERT INTO config.net_access_level (id, name) VALUES 
242     (3, oils_i18n_gettext(3, 'No Access', 'cnal', 'name'));
243 SELECT SETVAL('config.net_access_level_id_seq'::TEXT, 100);
244
245 -- available locales
246 INSERT INTO config.i18n_locale (code,marc_code,name,description)
247     VALUES ('en-US', 'eng', oils_i18n_gettext('en-US', 'English (US)', 'i18n_l', 'name'),
248         oils_i18n_gettext('en-US', 'American English', 'i18n_l', 'description'));
249 INSERT INTO config.i18n_locale (code,marc_code,name,description)
250     VALUES ('cs-CZ', 'cze', oils_i18n_gettext('cs-CZ', 'Czech', 'i18n_l', 'name'),
251         oils_i18n_gettext('cs-CZ', 'Czech', 'i18n_l', 'description'));
252 INSERT INTO config.i18n_locale (code,marc_code,name,description)
253     VALUES ('en-CA', 'eng', oils_i18n_gettext('en-CA', 'English (Canada)', 'i18n_l', 'name'),
254         oils_i18n_gettext('en-CA', 'Canadian English', 'i18n_l', 'description'));
255 INSERT INTO config.i18n_locale (code,marc_code,name,description)
256     VALUES ('fr-CA', 'fre', oils_i18n_gettext('fr-CA', 'French (Canada)', 'i18n_l', 'name'),
257         oils_i18n_gettext('fr-CA', 'Canadian French', 'i18n_l', 'description'));
258 INSERT INTO config.i18n_locale (code,marc_code,name,description)
259     VALUES ('hy-AM', 'arm', oils_i18n_gettext('hy-AM', 'Armenian', 'i18n_l', 'name'),
260         oils_i18n_gettext('hy-AM', 'Armenian', 'i18n_l', 'description'));
261 --INSERT INTO config.i18n_locale (code,marc_code,name,description)
262 --    VALUES ('es-US', 'spa', oils_i18n_gettext('es-US', 'Spanish (US)', 'i18n_l', 'name'),
263 --      oils_i18n_gettext('es-US', 'American Spanish', 'i18n_l', 'description'));
264 --INSERT INTO config.i18n_locale (code,marc_code,name,description)
265 --    VALUES ('es-MX', 'spa', oils_i18n_gettext('es-MX', 'Spanish (Mexico)', 'i18n_l', 'name'),
266 --      oils_i18n_gettext('es-MX', 'Mexican Spanish', 'i18n_l', 'description'));
267 INSERT INTO config.i18n_locale (code,marc_code,name,description)
268     VALUES ('ru-RU', 'rus', oils_i18n_gettext('ru-RU', 'Russian', 'i18n_l', 'name'),
269         oils_i18n_gettext('ru-RU', 'Russian', 'i18n_l', 'description'));
270
271 -- Z39.50 server attributes
272
273 INSERT INTO config.z3950_source (name, label, host, port, db, auth)
274         VALUES ('loc', oils_i18n_gettext('loc', 'Library of Congress', 'czs', 'label'), 'z3950.loc.gov', 7090, 'Voyager', FALSE);
275 INSERT INTO config.z3950_source (name, label, host, port, db, auth)
276         VALUES ('oclc', oils_i18n_gettext('oclc', 'OCLC', 'czs', 'label'), 'zcat.oclc.org', 210, 'OLUCWorldCat', TRUE);
277 INSERT INTO config.z3950_source (name, label, host, port, db, auth)
278         VALUES ('biblios', oils_i18n_gettext('biblios','‡biblios.net', 'czs', 'label'), 'z3950.biblios.net', 210, 'bibliographic', FALSE);
279
280 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
281         VALUES (1, 'loc','tcn', oils_i18n_gettext(1, 'Title Control Number', 'cza', 'label'), 12, 1);
282 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
283         VALUES (2, 'loc', 'isbn', oils_i18n_gettext(2, 'ISBN', 'cza', 'label'), 7, 6);
284 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
285         VALUES (3, 'loc', 'lccn', oils_i18n_gettext(3, 'LCCN', 'cza', 'label'), 9, 1);
286 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
287         VALUES (4, 'loc', 'author', oils_i18n_gettext(4, 'Author', 'cza', 'label'), 1003, 6);
288 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
289         VALUES (5, 'loc', 'title', oils_i18n_gettext(5, 'Title', 'cza', 'label'), 4, 6);
290 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
291         VALUES (6, 'loc', 'issn', oils_i18n_gettext(6, 'ISSN', 'cza', 'label'), 8, 1);
292 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
293         VALUES (7, 'loc', 'publisher', oils_i18n_gettext(7, 'Publisher', 'cza', 'label'), 1018, 6);
294 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
295         VALUES (8, 'loc', 'pubdate', oils_i18n_gettext(8, 'Publication Date', 'cza', 'label'), 31, 1);
296 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
297         VALUES (9, 'loc', 'item_type', oils_i18n_gettext(9, 'Item Type', 'cza', 'label'), 1001, 1);
298
299 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'loc';
300
301 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
302         VALUES (10, 'oclc', 'tcn', oils_i18n_gettext(10, 'Title Control Number', 'cza', 'label'), 12, 1);
303 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
304         VALUES (11, 'oclc', 'isbn', oils_i18n_gettext(11, 'ISBN', 'cza', 'label'), 7, 6);
305 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
306         VALUES (12, 'oclc', 'lccn', oils_i18n_gettext(12, 'LCCN', 'cza', 'label'), 9, 1);
307 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
308         VALUES (13, 'oclc', 'author', oils_i18n_gettext(13, 'Author', 'cza', 'label'), 1003, 6);
309 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
310         VALUES (14, 'oclc', 'title', oils_i18n_gettext(14, 'Title', 'cza', 'label'), 4, 6);
311 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
312         VALUES (15, 'oclc', 'issn', oils_i18n_gettext(15, 'ISSN', 'cza', 'label'), 8, 1);
313 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
314         VALUES (16, 'oclc', 'publisher', oils_i18n_gettext(16, 'Publisher', 'cza', 'label'), 1018, 6);
315 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
316         VALUES (17, 'oclc', 'pubdate', oils_i18n_gettext(17, 'Publication Date', 'cza', 'label'), 31, 1);
317 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
318         VALUES (18, 'oclc', 'item_type', oils_i18n_gettext(18, 'Item Type', 'cza', 'label'), 1001, 1);
319
320 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
321         VALUES (19, 'biblios','tcn', oils_i18n_gettext(19, 'Title Control Number', 'cza', 'label'), 12, 1);
322 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
323         VALUES (20, 'biblios', 'isbn', oils_i18n_gettext(20, 'ISBN', 'cza', 'label'), 7, 6);
324 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
325         VALUES (21, 'biblios', 'lccn', oils_i18n_gettext(21, 'LCCN', 'cza', 'label'), 9, 1);
326 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
327         VALUES (22, 'biblios', 'author', oils_i18n_gettext(22, 'Author', 'cza', 'label'), 1003, 6);
328 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
329         VALUES (23, 'biblios', 'title', oils_i18n_gettext(23, 'Title', 'cza', 'label'), 4, 6);
330 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
331         VALUES (24, 'biblios', 'issn', oils_i18n_gettext(24, 'ISSN', 'cza', 'label'), 8, 1);
332 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
333         VALUES (25, 'biblios', 'publisher', oils_i18n_gettext(25, 'Publisher', 'cza', 'label'), 1018, 6);
334 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
335         VALUES (26, 'biblios', 'pubdate', oils_i18n_gettext(26, 'Publication Date', 'cza', 'label'), 31, 1);
336 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
337         VALUES (27, 'biblios', 'item_type', oils_i18n_gettext(27, 'Item Type', 'cza', 'label'), 1001, 1);
338
339 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios';
340
341 SELECT SETVAL('config.z3950_attr_id_seq'::TEXT, 100);
342
343 --005.schema.actors.sql:
344
345 -- The PINES levels
346 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent, can_have_users, can_have_vols) VALUES 
347     ( 1, oils_i18n_gettext(1, 'Consortium', 'aout', 'name'),
348         oils_i18n_gettext(1, 'Everywhere', 'aout', 'opac_label'), 0, NULL, FALSE, FALSE );
349 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent, can_have_users, can_have_vols) VALUES 
350     ( 2, oils_i18n_gettext(2, 'System', 'aout', 'name'),
351         oils_i18n_gettext(2, 'Local Library System', 'aout', 'opac_label'), 1, 1, FALSE, FALSE );
352 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES 
353     ( 3, oils_i18n_gettext(3, 'Branch', 'aout', 'name'),
354         oils_i18n_gettext(3, 'This Branch', 'aout', 'opac_label'), 2, 2 );
355 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES 
356     ( 4, oils_i18n_gettext(4, 'Sub-library', 'aout', 'name'),
357         oils_i18n_gettext(4, 'This Specialized Library', 'aout', 'opac_label'), 3, 3 );
358 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES 
359     ( 5, oils_i18n_gettext(5, 'Bookmobile', 'aout', 'name'),
360         oils_i18n_gettext(5, 'Your Bookmobile', 'aout', 'opac_label'), 3, 3 );
361 SELECT SETVAL('actor.org_unit_type_id_seq'::TEXT, 100);
362
363 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
364     (1, NULL, 1, 'CONS', oils_i18n_gettext(1, 'Example Consortium', 'aou', 'name'));
365 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
366     (2, 1, 2, 'SYS1', oils_i18n_gettext(2, 'Example System 1', 'aou', 'name'));
367 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
368     (3, 1, 2, 'SYS2', oils_i18n_gettext(3, 'Example System 2', 'aou', 'name'));
369 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
370     (4, 2, 3, 'BR1', oils_i18n_gettext(4, 'Example Branch 1', 'aou', 'name'));
371 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
372     (5, 2, 3, 'BR2', oils_i18n_gettext(5, 'Example Branch 2', 'aou', 'name'));
373 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
374     (6, 3, 3, 'BR3', oils_i18n_gettext(6, 'Example Branch 3', 'aou', 'name'));
375 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
376     (7, 3, 3, 'BR4', oils_i18n_gettext(7, 'Example Branch 4', 'aou', 'name'));
377 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
378     (8, 4, 4, 'SL1', oils_i18n_gettext(8, 'Example Sub-library 1', 'aou', 'name'));
379 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES 
380     (9, 6, 5, 'BM1', oils_i18n_gettext(9, 'Example Bookmobile 1', 'aou', 'name'));
381 SELECT SETVAL('actor.org_unit_id_seq'::TEXT, 100);
382
383 INSERT INTO actor.org_address (org_unit, street1, city, state, country, post_code)
384 SELECT id, '123 Main St.', 'Anywhere', 'GA', 'US', '30303'
385 FROM actor.org_unit;
386
387 UPDATE actor.org_unit SET holds_address = id, ill_address = id, billing_address = id, mailing_address = id;
388
389 INSERT INTO config.billing_type (id, name, owner) VALUES
390         ( 1, oils_i18n_gettext(1, 'Overdue Materials', 'cbt', 'name'), 1);
391 INSERT INTO config.billing_type (id, name, owner) VALUES
392         ( 2, oils_i18n_gettext(2, 'Long Overdue Collection Fee', 'cbt', 'name'), 1);
393 INSERT INTO config.billing_type (id, name, owner) VALUES
394         ( 3, oils_i18n_gettext(3, 'Lost Materials', 'cbt', 'name'), 1);
395 INSERT INTO config.billing_type (id, name, owner) VALUES
396         ( 4, oils_i18n_gettext(4, 'Lost Materials Processing Fee', 'cbt', 'name'), 1);
397 INSERT INTO config.billing_type (id, name, owner) VALUES
398         ( 5, oils_i18n_gettext(5, 'System: Deposit', 'cbt', 'name'), 1);
399 INSERT INTO config.billing_type (id, name, owner) VALUES
400         ( 6, oils_i18n_gettext(6, 'System: Rental', 'cbt', 'name'), 1);
401 INSERT INTO config.billing_type (id, name, owner) VALUES
402         ( 7, oils_i18n_gettext(7, 'Damaged Item', 'cbt', 'name'), 1);
403 INSERT INTO config.billing_type (id, name, owner) VALUES
404         ( 8, oils_i18n_gettext(8, 'Damaged Item Processing Fee', 'cbt', 'name'), 1);
405 INSERT INTO config.billing_type (id, name, owner) VALUES
406         ( 9, oils_i18n_gettext(9, 'Notification Fee', 'cbt', 'name'), 1);
407
408 INSERT INTO config.billing_type (id, name, owner) VALUES ( 101, oils_i18n_gettext(101, 'Misc', 'cbt', 'name'), 1);
409
410 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101);
411
412 --006.data.permissions.sql:
413 INSERT INTO permission.perm_list ( id, code, description ) VALUES
414  ( -1, 'EVERYTHING', oils_i18n_gettext( -1, 
415     'EVERYTHING', 'ppl', 'description' )),
416  ( 1, 'OPAC_LOGIN', oils_i18n_gettext( 1, 
417     'Allow a user to log in to the OPAC', 'ppl', 'description' )),
418  ( 2, 'STAFF_LOGIN', oils_i18n_gettext( 2, 
419     'Allow a user to log in to the staff client', 'ppl', 'description' )),
420  ( 3, 'MR_HOLDS', oils_i18n_gettext( 3, 
421     'Allow a user to create a metarecord holds', 'ppl', 'description' )),
422  ( 4, 'TITLE_HOLDS', oils_i18n_gettext( 4, 
423     'Allow a user to place a hold at the title level', 'ppl', 'description' )),
424  ( 5, 'VOLUME_HOLDS', oils_i18n_gettext( 5, 
425     'Allow a user to place a volume level hold', 'ppl', 'description' )),
426  ( 6, 'COPY_HOLDS', oils_i18n_gettext( 6, 
427     'Allow a user to place a hold on a specific copy', 'ppl', 'description' )),
428  ( 7, 'REQUEST_HOLDS', oils_i18n_gettext( 7, 
429     'Allow a user to create holds for another user (if true, we still check to make sure they have permission to make the type of hold they are requesting, for example, COPY_HOLDS)', 'ppl', 'description' )),
430  ( 8, 'REQUEST_HOLDS_OVERRIDE', oils_i18n_gettext( 8, 
431     '* no longer applicable', 'ppl', 'description' )),
432  ( 9, 'VIEW_HOLD', oils_i18n_gettext( 9, 
433     'Allow a user to view another user''s holds', 'ppl', 'description' )),
434  ( 10, 'DELETE_HOLDS', oils_i18n_gettext( 10, 
435     '* no longer applicable', 'ppl', 'description' )),
436  ( 11, 'UPDATE_HOLD', oils_i18n_gettext( 11, 
437     'Allow a user to update another user''s hold', 'ppl', 'description' )),
438  ( 12, 'RENEW_CIRC', oils_i18n_gettext( 12, 
439     'Allow a user to renew items', 'ppl', 'description' )),
440  ( 13, 'VIEW_USER_FINES_SUMMARY', oils_i18n_gettext( 13, 
441     'Allow a user to view bill details', 'ppl', 'description' )),
442  ( 14, 'VIEW_USER_TRANSACTIONS', oils_i18n_gettext( 14, 
443     'Allow a user to see another user''s grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION', 'ppl', 'description' )),
444  ( 15, 'UPDATE_MARC', oils_i18n_gettext( 15, 
445     'Allow a user to edit a MARC record', 'ppl', 'description' )),
446  ( 16, 'CREATE_MARC', oils_i18n_gettext( 16, 
447     'Allow a user to create new MARC records', 'ppl', 'description' )),
448  ( 17, 'IMPORT_MARC', oils_i18n_gettext( 17, 
449     'Allow a user to import a MARC record via the Z39.50 interface', 'ppl', 'description' )),
450  ( 18, 'CREATE_VOLUME', oils_i18n_gettext( 18, 
451     'Allow a user to create a volume', 'ppl', 'description' )),
452  ( 19, 'UPDATE_VOLUME', oils_i18n_gettext( 19, 
453     'Allow a user to edit volumes - needed for merging records. This is a duplicate of VOLUME_UPDATE; user must have both permissions at appropriate level to merge records.', 'ppl', 'description' )),
454  ( 20, 'DELETE_VOLUME', oils_i18n_gettext( 20, 
455     'Allow a user to delete a volume', 'ppl', 'description' )),
456  ( 21, 'CREATE_COPY', oils_i18n_gettext( 21, 
457     'Allow a user to create a new copy object', 'ppl', 'description' )),
458  ( 22, 'UPDATE_COPY', oils_i18n_gettext( 22, 
459     'Allow a user to edit a copy', 'ppl', 'description' )),
460  ( 23, 'DELETE_COPY', oils_i18n_gettext( 23, 
461     'Allow a user to delete a copy', 'ppl', 'description' )),
462  ( 24, 'RENEW_HOLD_OVERRIDE', oils_i18n_gettext( 24, 
463     'Allow a user to continue to renew an item even if it is required for a hold', 'ppl', 'description' )),
464  ( 25, 'CREATE_USER', oils_i18n_gettext( 25, 
465     'Allow a user to create another user', 'ppl', 'description' )),
466  ( 26, 'UPDATE_USER', oils_i18n_gettext( 26, 
467     'Allow a user to edit a user''s record', 'ppl', 'description' )),
468  ( 27, 'DELETE_USER', oils_i18n_gettext( 27, 
469     'Allow a user to mark a user as deleted', 'ppl', 'description' )),
470  ( 28, 'VIEW_USER', oils_i18n_gettext( 28, 
471     'Allow a user to view another user''s Patron Record', 'ppl', 'description' )),
472  ( 29, 'COPY_CHECKIN', oils_i18n_gettext( 29, 
473     'Allow a user to check in a copy', 'ppl', 'description' )),
474  ( 30, 'CREATE_TRANSIT', oils_i18n_gettext( 30, 
475     'Allow a user to place an item in transit', 'ppl', 'description' )),
476  ( 31, 'VIEW_PERMISSION', oils_i18n_gettext( 31, 
477     'Allow a user to view user permissions within the user permissions editor', 'ppl', 'description' )),
478  ( 32, 'CHECKIN_BYPASS_HOLD_FULFILL', oils_i18n_gettext( 32, 
479     '* no longer applicable', 'ppl', 'description' )),
480  ( 33, 'CREATE_PAYMENT', oils_i18n_gettext( 33, 
481     'Allow a user to record payments in the Billing Interface', 'ppl', 'description' )),
482  ( 34, 'SET_CIRC_LOST', oils_i18n_gettext( 34, 
483     'Allow a user to mark an item as ''lost''', 'ppl', 'description' )),
484  ( 35, 'SET_CIRC_MISSING', oils_i18n_gettext( 35, 
485     'Allow a user to mark an item as ''missing''', 'ppl', 'description' )),
486  ( 36, 'SET_CIRC_CLAIMS_RETURNED', oils_i18n_gettext( 36, 
487     'Allow a user to mark an item as ''claims returned''', 'ppl', 'description' )),
488  ( 37, 'CREATE_TRANSACTION', oils_i18n_gettext( 37, 
489     'Allow a user to create a new billable transaction', 'ppl', 'description' )),
490  ( 38, 'VIEW_TRANSACTION', oils_i18n_gettext( 38, 
491     'Allow a user may view another user''s transactions', 'ppl', 'description' )),
492  ( 39, 'CREATE_BILL', oils_i18n_gettext( 39, 
493     'Allow a user to create a new bill on a transaction', 'ppl', 'description' )),
494  ( 40, 'VIEW_CONTAINER', oils_i18n_gettext( 40, 
495     'Allow a user to view another user''s containers (buckets)', 'ppl', 'description' )),
496  ( 41, 'CREATE_CONTAINER', oils_i18n_gettext( 41, 
497     'Allow a user to create a new container for another user', 'ppl', 'description' )),
498  ( 42, 'UPDATE_ORG_UNIT', oils_i18n_gettext( 42, 
499     'Allow a user to change the settings for an organization unit', 'ppl', 'description' )),
500  ( 43, 'VIEW_CIRCULATIONS', oils_i18n_gettext( 43, 
501     'Allow a user to see what another user has checked out', 'ppl', 'description' )),
502  ( 44, 'DELETE_CONTAINER', oils_i18n_gettext( 44, 
503     'Allow a user to delete another user''s container', 'ppl', 'description' )),
504  ( 45, 'CREATE_CONTAINER_ITEM', oils_i18n_gettext( 45, 
505     'Allow a user to create a container item for another user', 'ppl', 'description' )),
506  ( 46, 'CREATE_USER_GROUP_LINK', oils_i18n_gettext( 46, 
507     'Allow a user to add other users to permission groups', 'ppl', 'description' )),
508  ( 47, 'REMOVE_USER_GROUP_LINK', oils_i18n_gettext( 47, 
509     'Allow a user to remove other users from permission groups', 'ppl', 'description' )),
510  ( 48, 'VIEW_PERM_GROUPS', oils_i18n_gettext( 48, 
511     'Allow a user to view other users'' permission groups', 'ppl', 'description' )),
512  ( 49, 'VIEW_PERMIT_CHECKOUT', oils_i18n_gettext( 49, 
513     'Allow a user to determine whether another user can check out an item', 'ppl', 'description' )),
514  ( 50, 'UPDATE_BATCH_COPY', oils_i18n_gettext( 50, 
515     'Allow a user to edit copies in batch', 'ppl', 'description' )),
516  ( 51, 'CREATE_PATRON_STAT_CAT', oils_i18n_gettext( 51, 
517     'User may create a new patron statistical category', 'ppl', 'description' )),
518  ( 52, 'CREATE_COPY_STAT_CAT', oils_i18n_gettext( 52, 
519     'User may create a copy statistical category', 'ppl', 'description' )),
520  ( 53, 'CREATE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 53, 
521     'User may create an entry in a patron statistical category', 'ppl', 'description' )),
522  ( 54, 'CREATE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 54, 
523     'User may create an entry in a copy statistical category', 'ppl', 'description' )),
524  ( 55, 'UPDATE_PATRON_STAT_CAT', oils_i18n_gettext( 55, 
525     'User may update a patron statistical category', 'ppl', 'description' )),
526  ( 56, 'UPDATE_COPY_STAT_CAT', oils_i18n_gettext( 56, 
527     'User may update a copy statistical category', 'ppl', 'description' )),
528  ( 57, 'UPDATE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 57, 
529     'User may update an entry in a patron statistical category', 'ppl', 'description' )),
530  ( 58, 'UPDATE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 58, 
531     'User may update an entry in a copy statistical category', 'ppl', 'description' )),
532  ( 59, 'CREATE_PATRON_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 59, 
533     'User may link another user to an entry in a statistical category', 'ppl', 'description' )),
534  ( 60, 'CREATE_COPY_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 60, 
535     'User may link a copy to an entry in a statistical category', 'ppl', 'description' )),
536  ( 61, 'DELETE_PATRON_STAT_CAT', oils_i18n_gettext( 61, 
537     'User may delete a patron statistical category', 'ppl', 'description' )),
538  ( 62, 'DELETE_COPY_STAT_CAT', oils_i18n_gettext( 62, 
539     'User may delete a copy statistical category', 'ppl', 'description' )),
540  ( 63, 'DELETE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 63, 
541     'User may delete an entry from a patron statistical category', 'ppl', 'description' )),
542  ( 64, 'DELETE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 64, 
543     'User may delete an entry from a copy statistical category', 'ppl', 'description' )),
544  ( 65, 'DELETE_PATRON_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 65, 
545     'User may delete a patron statistical category entry map', 'ppl', 'description' )),
546  ( 66, 'DELETE_COPY_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 66, 
547     'User may delete a copy statistical category entry map', 'ppl', 'description' )),
548  ( 67, 'CREATE_NON_CAT_TYPE', oils_i18n_gettext( 67, 
549     'Allow a user to create a new non-cataloged item type', 'ppl', 'description' )),
550  ( 68, 'UPDATE_NON_CAT_TYPE', oils_i18n_gettext( 68, 
551     'Allow a user to update a non-cataloged item type', 'ppl', 'description' )),
552  ( 69, 'CREATE_IN_HOUSE_USE', oils_i18n_gettext( 69, 
553     'Allow a user to create a new in-house-use ', 'ppl', 'description' )),
554  ( 70, 'COPY_CHECKOUT', oils_i18n_gettext( 70, 
555     'Allow a user to check out a copy', 'ppl', 'description' )),
556  ( 71, 'CREATE_COPY_LOCATION', oils_i18n_gettext( 71, 
557     'Allow a user to create a new copy location', 'ppl', 'description' )),
558  ( 72, 'UPDATE_COPY_LOCATION', oils_i18n_gettext( 72, 
559     'Allow a user to update a copy location', 'ppl', 'description' )),
560  ( 73, 'DELETE_COPY_LOCATION', oils_i18n_gettext( 73, 
561     'Allow a user to delete a copy location', 'ppl', 'description' )),
562  ( 74, 'CREATE_COPY_TRANSIT', oils_i18n_gettext( 74, 
563     'Allow a user to create a transit_copy object for transiting a copy', 'ppl', 'description' )),
564  ( 75, 'COPY_TRANSIT_RECEIVE', oils_i18n_gettext( 75, 
565     'Allow a user to close out a transit on a copy', 'ppl', 'description' )),
566  ( 76, 'VIEW_HOLD_PERMIT', oils_i18n_gettext( 76, 
567     'Allow a user to see if another user has permission to place a hold on a given copy', 'ppl', 'description' )),
568  ( 77, 'VIEW_COPY_CHECKOUT_HISTORY', oils_i18n_gettext( 77, 
569     'Allow a user to view which users have checked out a given copy', 'ppl', 'description' )),
570  ( 78, 'REMOTE_Z3950_QUERY', oils_i18n_gettext( 78, 
571     'Allow a user to perform Z39.50 queries against remote servers', 'ppl', 'description' )),
572  ( 79, 'REGISTER_WORKSTATION', oils_i18n_gettext( 79, 
573     'Allow a user to register a new workstation', 'ppl', 'description' )),
574  ( 80, 'VIEW_COPY_NOTES', oils_i18n_gettext( 80, 
575     'Allow a user to view all notes attached to a copy', 'ppl', 'description' )),
576  ( 81, 'VIEW_VOLUME_NOTES', oils_i18n_gettext( 81, 
577     'Allow a user to view all notes attached to a volume', 'ppl', 'description' )),
578  ( 82, 'VIEW_TITLE_NOTES', oils_i18n_gettext( 82, 
579     'Allow a user to view all notes attached to a title', 'ppl', 'description' )),
580  ( 83, 'CREATE_COPY_NOTE', oils_i18n_gettext( 83, 
581     'Allow a user to create a new copy note', 'ppl', 'description' )),
582  ( 84, 'CREATE_VOLUME_NOTE', oils_i18n_gettext( 84, 
583     'Allow a user to create a new volume note', 'ppl', 'description' )),
584  ( 85, 'CREATE_TITLE_NOTE', oils_i18n_gettext( 85, 
585     'Allow a user to create a new title note', 'ppl', 'description' )),
586  ( 86, 'DELETE_COPY_NOTE', oils_i18n_gettext( 86, 
587     'Allow a user to delete another user''s copy notes', 'ppl', 'description' )),
588  ( 87, 'DELETE_VOLUME_NOTE', oils_i18n_gettext( 87, 
589     'Allow a user to delete another user''s volume note', 'ppl', 'description' )),
590  ( 88, 'DELETE_TITLE_NOTE', oils_i18n_gettext( 88, 
591     'Allow a user to delete another user''s title note', 'ppl', 'description' )),
592  ( 89, 'UPDATE_CONTAINER', oils_i18n_gettext( 89, 
593     'Allow a user to update another user''s container', 'ppl', 'description' )),
594  ( 90, 'CREATE_MY_CONTAINER', oils_i18n_gettext( 90, 
595     'Allow a user to create a container for themselves', 'ppl', 'description' )),
596  ( 91, 'VIEW_HOLD_NOTIFICATION', oils_i18n_gettext( 91, 
597     'Allow a user to view notifications attached to a hold', 'ppl', 'description' )),
598  ( 92, 'CREATE_HOLD_NOTIFICATION', oils_i18n_gettext( 92, 
599     'Allow a user to create new hold notifications', 'ppl', 'description' )),
600  ( 93, 'UPDATE_ORG_SETTING', oils_i18n_gettext( 93, 
601     'Allow a user to update an organization unit setting', 'ppl', 'description' )),
602  ( 94, 'OFFLINE_UPLOAD', oils_i18n_gettext( 94, 
603     'Allow a user to upload an offline script', 'ppl', 'description' )),
604  ( 95, 'OFFLINE_VIEW', oils_i18n_gettext( 95, 
605     'Allow a user to view uploaded offline script information', 'ppl', 'description' )),
606  ( 96, 'OFFLINE_EXECUTE', oils_i18n_gettext( 96, 
607     'Allow a user to execute an offline script batch', 'ppl', 'description' )),
608  ( 97, 'CIRC_OVERRIDE_DUE_DATE', oils_i18n_gettext( 97, 
609     'Allow a user to change the due date on an item to any date', 'ppl', 'description' )),
610  ( 98, 'CIRC_PERMIT_OVERRIDE', oils_i18n_gettext( 98, 
611     'Allow a user to bypass the circulation permit call for check out', 'ppl', 'description' )),
612  ( 99, 'COPY_IS_REFERENCE.override', oils_i18n_gettext( 99, 
613     'Allow a user to override the copy_is_reference event', 'ppl', 'description' )),
614  ( 100, 'VOID_BILLING', oils_i18n_gettext( 100, 
615     'Allow a user to void a bill', 'ppl', 'description' )),
616  ( 101, 'CIRC_CLAIMS_RETURNED.override', oils_i18n_gettext( 101, 
617     'Allow a user to check in or check out an item that has a status of ''claims returned''', 'ppl', 'description' )),
618  ( 102, 'COPY_BAD_STATUS.override', oils_i18n_gettext( 102, 
619     'Allow a user to check out an item in a non-circulatable status', 'ppl', 'description' )),
620  ( 103, 'COPY_ALERT_MESSAGE.override', oils_i18n_gettext( 103, 
621     'Allow a user to check in/out an item that has an alert message', 'ppl', 'description' )),
622  ( 104, 'COPY_STATUS_LOST.override', oils_i18n_gettext( 104, 
623     'Allow a user to remove the lost status from a copy', 'ppl', 'description' )),
624  ( 105, 'COPY_STATUS_MISSING.override', oils_i18n_gettext( 105, 
625     'Allow a user to change the missing status on a copy', 'ppl', 'description' )),
626  ( 106, 'ABORT_TRANSIT', oils_i18n_gettext( 106, 
627     'Allow a user to abort a copy transit if the user is at the transit destination or source', 'ppl', 'description' )),
628  ( 107, 'ABORT_REMOTE_TRANSIT', oils_i18n_gettext( 107, 
629     'Allow a user to abort a copy transit if the user is not at the transit source or dest', 'ppl', 'description' )),
630  ( 108, 'VIEW_ZIP_DATA', oils_i18n_gettext( 108, 
631     'Allow a user to query the ZIP code data method', 'ppl', 'description' )),
632  ( 109, 'CANCEL_HOLDS', oils_i18n_gettext( 109, 
633     'Allow a user to cancel holds', 'ppl', 'description' )),
634  ( 110, 'CREATE_DUPLICATE_HOLDS', oils_i18n_gettext( 110, 
635     'Allow a user to create duplicate holds (two or more holds on the same title)', 'ppl', 'description' )),
636  ( 111, 'actor.org_unit.closed_date.delete', oils_i18n_gettext( 111, 
637     'Allow a user to remove a closed date interval for a given location', 'ppl', 'description' )),
638  ( 112, 'actor.org_unit.closed_date.update', oils_i18n_gettext( 112, 
639     'Allow a user to update a closed date interval for a given location', 'ppl', 'description' )),
640  ( 113, 'actor.org_unit.closed_date.create', oils_i18n_gettext( 113, 
641     'Allow a user to create a new closed date for a location', 'ppl', 'description' )),
642  ( 114, 'DELETE_NON_CAT_TYPE', oils_i18n_gettext( 114, 
643     'Allow a user to delete a non cataloged type', 'ppl', 'description' )),
644  ( 115, 'money.collections_tracker.create', oils_i18n_gettext( 115, 
645     'Allow a user to put someone into collections', 'ppl', 'description' )),
646  ( 116, 'money.collections_tracker.delete', oils_i18n_gettext( 116, 
647     'Allow a user to remove someone from collections', 'ppl', 'description' )),
648  ( 117, 'BAR_PATRON', oils_i18n_gettext( 117, 
649     'Allow a user to bar a patron', 'ppl', 'description' )),
650  ( 118, 'UNBAR_PATRON', oils_i18n_gettext( 118, 
651     'Allow a user to un-bar a patron', 'ppl', 'description' )),
652  ( 119, 'DELETE_WORKSTATION', oils_i18n_gettext( 119, 
653     'Allow a user to remove an existing workstation so a new one can replace it', 'ppl', 'description' )),
654  ( 120, 'group_application.user', oils_i18n_gettext( 120, 
655     'Allow a user to add/remove users to/from the "User" group', 'ppl', 'description' )),
656  ( 121, 'group_application.user.patron', oils_i18n_gettext( 121, 
657     'Allow a user to add/remove users to/from the "Patron" group', 'ppl', 'description' )),
658  ( 122, 'group_application.user.staff', oils_i18n_gettext( 122, 
659     'Allow a user to add/remove users to/from the "Staff" group', 'ppl', 'description' )),
660  ( 123, 'group_application.user.staff.circ', oils_i18n_gettext( 123, 
661     'Allow a user to add/remove users to/from the "Circulator" group', 'ppl', 'description' )),
662  ( 124, 'group_application.user.staff.cat', oils_i18n_gettext( 124, 
663     'Allow a user to add/remove users to/from the "Cataloger" group', 'ppl', 'description' )),
664  ( 125, 'group_application.user.staff.admin.global_admin', oils_i18n_gettext( 125, 
665     'Allow a user to add/remove users to/from the "GlobalAdmin" group', 'ppl', 'description' )),
666  ( 126, 'group_application.user.staff.admin.local_admin', oils_i18n_gettext( 126, 
667     'Allow a user to add/remove users to/from the "LocalAdmin" group', 'ppl', 'description' )),
668  ( 127, 'group_application.user.staff.admin.lib_manager', oils_i18n_gettext( 127, 
669     'Allow a user to add/remove users to/from the "LibraryManager" group', 'ppl', 'description' )),
670  ( 128, 'group_application.user.staff.cat.cat1', oils_i18n_gettext( 128, 
671     'Allow a user to add/remove users to/from the "Cat1" group', 'ppl', 'description' )),
672  ( 129, 'group_application.user.staff.supercat', oils_i18n_gettext( 129, 
673     'Allow a user to add/remove users to/from the "Supercat" group', 'ppl', 'description' )),
674  ( 130, 'group_application.user.sip_client', oils_i18n_gettext( 130, 
675     'Allow a user to add/remove users to/from the "SIP-Client" group', 'ppl', 'description' )),
676  ( 131, 'group_application.user.vendor', oils_i18n_gettext( 131, 
677     'Allow a user to add/remove users to/from the "Vendor" group', 'ppl', 'description' )),
678  ( 132, 'ITEM_AGE_PROTECTED.override', oils_i18n_gettext( 132, 
679     'Allow a user to place a hold on an age-protected item', 'ppl', 'description' )),
680  ( 133, 'MAX_RENEWALS_REACHED.override', oils_i18n_gettext( 133, 
681     'Allow a user to renew an item past the maximum renewal count', 'ppl', 'description' )),
682  ( 134, 'PATRON_EXCEEDS_CHECKOUT_COUNT.override', oils_i18n_gettext( 134, 
683     'Allow staff to override checkout count failure', 'ppl', 'description' )),
684  ( 135, 'PATRON_EXCEEDS_OVERDUE_COUNT.override', oils_i18n_gettext( 135, 
685     'Allow staff to override overdue count failure', 'ppl', 'description' )),
686  ( 136, 'PATRON_EXCEEDS_FINES.override', oils_i18n_gettext( 136, 
687     'Allow staff to override fine amount checkout failure', 'ppl', 'description' )),
688  ( 137, 'CIRC_EXCEEDS_COPY_RANGE.override', oils_i18n_gettext( 137, 
689     'Allow staff to override circulation copy range failure', 'ppl', 'description' )),
690  ( 138, 'ITEM_ON_HOLDS_SHELF.override', oils_i18n_gettext( 138, 
691     'Allow staff to override item on holds shelf failure', 'ppl', 'description' )),
692  ( 139, 'COPY_NOT_AVAILABLE.override', oils_i18n_gettext( 139, 
693     'Allow staff to force checkout of Missing/Lost type items', 'ppl', 'description' )),
694  ( 140, 'HOLD_EXISTS.override', oils_i18n_gettext( 140, 
695     'Allow a user to place multiple holds on a single title', 'ppl', 'description' )),
696  ( 141, 'RUN_REPORTS', oils_i18n_gettext( 141, 
697     'Allow a user to run reports', 'ppl', 'description' )),
698  ( 142, 'SHARE_REPORT_FOLDER', oils_i18n_gettext( 142, 
699     'Allow a user to share report his own folders', 'ppl', 'description' )),
700  ( 143, 'VIEW_REPORT_OUTPUT', oils_i18n_gettext( 143, 
701     'Allow a user to view report output', 'ppl', 'description' )),
702  ( 144, 'COPY_CIRC_NOT_ALLOWED.override', oils_i18n_gettext( 144, 
703     'Allow a user to checkout an item that is marked as non-circ', 'ppl', 'description' )),
704  ( 145, 'DELETE_CONTAINER_ITEM', oils_i18n_gettext( 145, 
705     'Allow a user to delete an item out of another user''s container', 'ppl', 'description' )),
706  ( 146, 'ASSIGN_WORK_ORG_UNIT', oils_i18n_gettext( 146, 
707     'Allow a staff member to define where another staff member has their permissions', 'ppl', 'description' )),
708  ( 147, 'CREATE_FUNDING_SOURCE', oils_i18n_gettext( 147, 
709     'Allow a user to create a new funding source', 'ppl', 'description' )),
710  ( 148, 'DELETE_FUNDING_SOURCE', oils_i18n_gettext( 148, 
711     'Allow a user to delete a funding source', 'ppl', 'description' )),
712  ( 149, 'VIEW_FUNDING_SOURCE', oils_i18n_gettext( 149, 
713     'Allow a user to view a funding source', 'ppl', 'description' )),
714  ( 150, 'UPDATE_FUNDING_SOURCE', oils_i18n_gettext( 150, 
715     'Allow a user to update a funding source', 'ppl', 'description' )),
716  ( 151, 'CREATE_FUND', oils_i18n_gettext( 151, 
717     'Allow a user to create a new fund', 'ppl', 'description' )),
718  ( 152, 'DELETE_FUND', oils_i18n_gettext( 152, 
719     'Allow a user to delete a fund', 'ppl', 'description' )),
720  ( 153, 'VIEW_FUND', oils_i18n_gettext( 153, 
721     'Allow a user to view a fund', 'ppl', 'description' )),
722  ( 154, 'UPDATE_FUND', oils_i18n_gettext( 154, 
723     'Allow a user to update a fund', 'ppl', 'description' )),
724  ( 155, 'CREATE_FUND_ALLOCATION', oils_i18n_gettext( 155, 
725     'Allow a user to create a new fund allocation', 'ppl', 'description' )),
726  ( 156, 'DELETE_FUND_ALLOCATION', oils_i18n_gettext( 156, 
727     'Allow a user to delete a fund allocation', 'ppl', 'description' )),
728  ( 157, 'VIEW_FUND_ALLOCATION', oils_i18n_gettext( 157, 
729     'Allow a user to view a fund allocation', 'ppl', 'description' )),
730  ( 158, 'UPDATE_FUND_ALLOCATION', oils_i18n_gettext( 158, 
731     'Allow a user to update a fund allocation', 'ppl', 'description' )),
732  ( 159, 'GENERAL_ACQ', oils_i18n_gettext( 159, 
733     'Lowest level permission required to access the ACQ interface', 'ppl', 'description' )),
734  ( 160, 'CREATE_PROVIDER', oils_i18n_gettext( 160, 
735     'Allow a user to create a new provider', 'ppl', 'description' )),
736  ( 161, 'DELETE_PROVIDER', oils_i18n_gettext( 161, 
737     'Allow a user to delate a provider', 'ppl', 'description' )),
738  ( 162, 'VIEW_PROVIDER', oils_i18n_gettext( 162, 
739     'Allow a user to view a provider', 'ppl', 'description' )),
740  ( 163, 'UPDATE_PROVIDER', oils_i18n_gettext( 163, 
741     'Allow a user to update a provider', 'ppl', 'description' )),
742  ( 164, 'ADMIN_FUNDING_SOURCE', oils_i18n_gettext( 164, 
743     'Allow a user to create/view/update/delete a funding source', 'ppl', 'description' )),
744  ( 165, 'ADMIN_FUND', oils_i18n_gettext( 165, 
745     '(Deprecated) Allow a user to create/view/update/delete a fund', 'ppl', 'description' )),
746  ( 166, 'MANAGE_FUNDING_SOURCE', oils_i18n_gettext( 166, 
747     'Allow a user to view/credit/debit a funding source', 'ppl', 'description' )),
748  ( 167, 'MANAGE_FUND', oils_i18n_gettext( 167, 
749     'Allow a user to view/credit/debit a fund', 'ppl', 'description' )),
750  ( 168, 'CREATE_PICKLIST', oils_i18n_gettext( 168, 
751     'Allows a user to create a picklist', 'ppl', 'description' )),
752  ( 169, 'ADMIN_PROVIDER', oils_i18n_gettext( 169, 
753     'Allow a user to create/view/update/delete a provider', 'ppl', 'description' )),
754  ( 170, 'MANAGE_PROVIDER', oils_i18n_gettext( 170, 
755     'Allow a user to view and purchase from a provider', 'ppl', 'description' )),
756  ( 171, 'VIEW_PICKLIST', oils_i18n_gettext( 171, 
757     'Allow a user to view another users picklist', 'ppl', 'description' )),
758  ( 172, 'DELETE_RECORD', oils_i18n_gettext( 172, 
759     'Allow a staff member to directly remove a bibliographic record', 'ppl', 'description' )),
760  ( 173, 'ADMIN_CURRENCY_TYPE', oils_i18n_gettext( 173, 
761     'Allow a user to create/view/update/delete a currency_type', 'ppl', 'description' )),
762  ( 174, 'MARK_BAD_DEBT', oils_i18n_gettext( 174, 
763     'Allow a user to mark a transaction as bad (unrecoverable) debt', 'ppl', 'description' )),
764  ( 175, 'VIEW_BILLING_TYPE', oils_i18n_gettext( 175, 
765     'Allow a user to view billing types', 'ppl', 'description' )),
766  ( 176, 'MARK_ITEM_AVAILABLE', oils_i18n_gettext( 176, 
767     'Allow a user to mark an item status as ''available''', 'ppl', 'description' )),
768  ( 177, 'MARK_ITEM_CHECKED_OUT', oils_i18n_gettext( 177, 
769     'Allow a user to mark an item status as ''checked out''', 'ppl', 'description' )),
770  ( 178, 'MARK_ITEM_BINDERY', oils_i18n_gettext( 178, 
771     'Allow a user to mark an item status as ''bindery''', 'ppl', 'description' )),
772  ( 179, 'MARK_ITEM_LOST', oils_i18n_gettext( 179, 
773     'Allow a user to mark an item status as ''lost''', 'ppl', 'description' )),
774  ( 180, 'MARK_ITEM_MISSING', oils_i18n_gettext( 180, 
775     'Allow a user to mark an item status as ''missing''', 'ppl', 'description' )),
776  ( 181, 'MARK_ITEM_IN_PROCESS', oils_i18n_gettext( 181, 
777     'Allow a user to mark an item status as ''in process''', 'ppl', 'description' )),
778  ( 182, 'MARK_ITEM_IN_TRANSIT', oils_i18n_gettext( 182, 
779     'Allow a user to mark an item status as ''in transit''', 'ppl', 'description' )),
780  ( 183, 'MARK_ITEM_RESHELVING', oils_i18n_gettext( 183, 
781     'Allow a user to mark an item status as ''reshelving''', 'ppl', 'description' )),
782  ( 184, 'MARK_ITEM_ON_HOLDS_SHELF', oils_i18n_gettext( 184, 
783     'Allow a user to mark an item status as ''on holds shelf''', 'ppl', 'description' )),
784  ( 185, 'MARK_ITEM_ON_ORDER', oils_i18n_gettext( 185, 
785     'Allow a user to mark an item status as ''on order''', 'ppl', 'description' )),
786  ( 186, 'MARK_ITEM_ILL', oils_i18n_gettext( 186, 
787     'Allow a user to mark an item status as ''inter-library loan''', 'ppl', 'description' )),
788  ( 187, 'group_application.user.staff.acq', oils_i18n_gettext( 187, 
789     'Allows a user to add/remove/edit users in the "ACQ" group', 'ppl', 'description' )),
790  ( 188, 'CREATE_PURCHASE_ORDER', oils_i18n_gettext( 188, 
791     'Allows a user to create a purchase order', 'ppl', 'description' )),
792  ( 189, 'VIEW_PURCHASE_ORDER', oils_i18n_gettext( 189, 
793     'Allows a user to view a purchase order', 'ppl', 'description' )),
794  ( 190, 'IMPORT_ACQ_LINEITEM_BIB_RECORD', oils_i18n_gettext( 190, 
795     'Allows a user to import a bib record from the acq staging area (on-order record) into the ILS bib data set', 'ppl', 'description' )),
796  ( 191, 'RECEIVE_PURCHASE_ORDER', oils_i18n_gettext( 191, 
797     'Allows a user to mark a purchase order, lineitem, or individual copy as received', 'ppl', 'description' )),
798  ( 192, 'VIEW_ORG_SETTINGS', oils_i18n_gettext( 192, 
799     'Allows a user to view all org settings at the specified level', 'ppl', 'description' )),
800  ( 193, 'CREATE_MFHD_RECORD', oils_i18n_gettext( 193, 
801     'Allows a user to create a new MFHD record', 'ppl', 'description' )),
802  ( 194, 'UPDATE_MFHD_RECORD', oils_i18n_gettext( 194, 
803     'Allows a user to update an MFHD record', 'ppl', 'description' )),
804  ( 195, 'DELETE_MFHD_RECORD', oils_i18n_gettext( 195, 
805     'Allows a user to delete an MFHD record', 'ppl', 'description' )),
806  ( 196, 'ADMIN_ACQ_FUND', oils_i18n_gettext( 196, 
807     'Allow a user to create/view/update/delete a fund', 'ppl', 'description' )),
808  ( 197, 'group_application.user.staff.acq_admin', oils_i18n_gettext( 197, 
809     'Allows a user to add/remove/edit users in the "Acquisitions Administrators" group', 'ppl', 'description' )),
810  ( 198, 'SET_CIRC_CLAIMS_RETURNED.override', oils_i18n_gettext( 198, 
811     'Allows staff to override the max claims returned value for a patron', 'ppl', 'description' )),
812  ( 199, 'UPDATE_PATRON_CLAIM_RETURN_COUNT', oils_i18n_gettext( 199, 
813     'Allows staff to manually change a patron''s claims returned count', 'ppl', 'description' )),
814  ( 200, 'UPDATE_BILL_NOTE', oils_i18n_gettext( 200, 
815     'Allows staff to edit the note for a bill on a transaction', 'ppl', 'description' )),
816  ( 201, 'UPDATE_PAYMENT_NOTE', oils_i18n_gettext( 201, 
817     'Allows staff to edit the note for a payment on a transaction', 'ppl', 'description' )),
818  ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT', oils_i18n_gettext( 202, 
819     'Allows staff to manually change a patron''s claims never checkout out count', 'ppl', 'description' )),
820  ( 203, 'ADMIN_COPY_LOCATION_ORDER', oils_i18n_gettext( 203, 
821     'Allow a user to create/view/update/delete a copy location order', 'ppl', 'description' )),
822  ( 204, 'ASSIGN_GROUP_PERM', oils_i18n_gettext( 204, 
823     'ASSIGN_GROUP_PERM', 'ppl', 'description' )),
824  ( 205, 'CREATE_AUDIENCE', oils_i18n_gettext( 205, 
825     'CREATE_AUDIENCE', 'ppl', 'description' )),
826  ( 206, 'CREATE_BIB_LEVEL', oils_i18n_gettext( 206, 
827     'CREATE_BIB_LEVEL', 'ppl', 'description' )),
828  ( 207, 'CREATE_CIRC_DURATION', oils_i18n_gettext( 207, 
829     'CREATE_CIRC_DURATION', 'ppl', 'description' )),
830  ( 208, 'CREATE_CIRC_MOD', oils_i18n_gettext( 208, 
831     'CREATE_CIRC_MOD', 'ppl', 'description' )),
832  ( 209, 'CREATE_COPY_STATUS', oils_i18n_gettext( 209, 
833     'CREATE_COPY_STATUS', 'ppl', 'description' )),
834  ( 210, 'CREATE_HOURS_OF_OPERATION', oils_i18n_gettext( 210, 
835     'CREATE_HOURS_OF_OPERATION', 'ppl', 'description' )),
836  ( 211, 'CREATE_ITEM_FORM', oils_i18n_gettext( 211, 
837     'CREATE_ITEM_FORM', 'ppl', 'description' )),
838  ( 212, 'CREATE_ITEM_TYPE', oils_i18n_gettext( 212, 
839     'CREATE_ITEM_TYPE', 'ppl', 'description' )),
840  ( 213, 'CREATE_LANGUAGE', oils_i18n_gettext( 213, 
841     'CREATE_LANGUAGE', 'ppl', 'description' )),
842  ( 214, 'CREATE_LASSO', oils_i18n_gettext( 214, 
843     'CREATE_LASSO', 'ppl', 'description' )),
844  ( 215, 'CREATE_LASSO_MAP', oils_i18n_gettext( 215, 
845     'CREATE_LASSO_MAP', 'ppl', 'description' )),
846  ( 216, 'CREATE_LIT_FORM', oils_i18n_gettext( 216, 
847     'CREATE_LIT_FORM', 'ppl', 'description' )),
848  ( 217, 'CREATE_METABIB_FIELD', oils_i18n_gettext( 217, 
849     'CREATE_METABIB_FIELD', 'ppl', 'description' )),
850  ( 218, 'CREATE_NET_ACCESS_LEVEL', oils_i18n_gettext( 218, 
851     'CREATE_NET_ACCESS_LEVEL', 'ppl', 'description' )),
852  ( 219, 'CREATE_ORG_ADDRESS', oils_i18n_gettext( 219, 
853     'CREATE_ORG_ADDRESS', 'ppl', 'description' )),
854  ( 220, 'CREATE_ORG_TYPE', oils_i18n_gettext( 220, 
855     'CREATE_ORG_TYPE', 'ppl', 'description' )),
856  ( 221, 'CREATE_ORG_UNIT', oils_i18n_gettext( 221, 
857     'CREATE_ORG_UNIT', 'ppl', 'description' )),
858  ( 222, 'CREATE_ORG_UNIT_CLOSING', oils_i18n_gettext( 222, 
859     'CREATE_ORG_UNIT_CLOSING', 'ppl', 'description' )),
860  ( 223, 'CREATE_PERM', oils_i18n_gettext( 223, 
861     'CREATE_PERM', 'ppl', 'description' )),
862  ( 224, 'CREATE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 224, 
863     'CREATE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )),
864  ( 225, 'CREATE_SURVEY', oils_i18n_gettext( 225, 
865     'CREATE_SURVEY', 'ppl', 'description' )),
866  ( 226, 'CREATE_VR_FORMAT', oils_i18n_gettext( 226, 
867     'CREATE_VR_FORMAT', 'ppl', 'description' )),
868  ( 227, 'CREATE_XML_TRANSFORM', oils_i18n_gettext( 227, 
869     'CREATE_XML_TRANSFORM', 'ppl', 'description' )),
870  ( 228, 'DELETE_AUDIENCE', oils_i18n_gettext( 228, 
871     'DELETE_AUDIENCE', 'ppl', 'description' )),
872  ( 229, 'DELETE_BIB_LEVEL', oils_i18n_gettext( 229, 
873     'DELETE_BIB_LEVEL', 'ppl', 'description' )),
874  ( 230, 'DELETE_CIRC_DURATION', oils_i18n_gettext( 230, 
875     'DELETE_CIRC_DURATION', 'ppl', 'description' )),
876  ( 231, 'DELETE_CIRC_MOD', oils_i18n_gettext( 231, 
877     'DELETE_CIRC_MOD', 'ppl', 'description' )),
878  ( 232, 'DELETE_COPY_STATUS', oils_i18n_gettext( 232, 
879     'DELETE_COPY_STATUS', 'ppl', 'description' )),
880  ( 233, 'DELETE_HOURS_OF_OPERATION', oils_i18n_gettext( 233, 
881     'DELETE_HOURS_OF_OPERATION', 'ppl', 'description' )),
882  ( 234, 'DELETE_ITEM_FORM', oils_i18n_gettext( 234, 
883     'DELETE_ITEM_FORM', 'ppl', 'description' )),
884  ( 235, 'DELETE_ITEM_TYPE', oils_i18n_gettext( 235, 
885     'DELETE_ITEM_TYPE', 'ppl', 'description' )),
886  ( 236, 'DELETE_LANGUAGE', oils_i18n_gettext( 236, 
887     'DELETE_LANGUAGE', 'ppl', 'description' )),
888  ( 237, 'DELETE_LASSO', oils_i18n_gettext( 237, 
889     'DELETE_LASSO', 'ppl', 'description' )),
890  ( 238, 'DELETE_LASSO_MAP', oils_i18n_gettext( 238, 
891     'DELETE_LASSO_MAP', 'ppl', 'description' )),
892  ( 239, 'DELETE_LIT_FORM', oils_i18n_gettext( 239, 
893     'DELETE_LIT_FORM', 'ppl', 'description' )),
894  ( 240, 'DELETE_METABIB_FIELD', oils_i18n_gettext( 240, 
895     'DELETE_METABIB_FIELD', 'ppl', 'description' )),
896  ( 241, 'DELETE_NET_ACCESS_LEVEL', oils_i18n_gettext( 241, 
897     'DELETE_NET_ACCESS_LEVEL', 'ppl', 'description' )),
898  ( 242, 'DELETE_ORG_ADDRESS', oils_i18n_gettext( 242, 
899     'DELETE_ORG_ADDRESS', 'ppl', 'description' )),
900  ( 243, 'DELETE_ORG_TYPE', oils_i18n_gettext( 243, 
901     'DELETE_ORG_TYPE', 'ppl', 'description' )),
902  ( 244, 'DELETE_ORG_UNIT', oils_i18n_gettext( 244, 
903     'DELETE_ORG_UNIT', 'ppl', 'description' )),
904  ( 245, 'DELETE_ORG_UNIT_CLOSING', oils_i18n_gettext( 245, 
905     'DELETE_ORG_UNIT_CLOSING', 'ppl', 'description' )),
906  ( 246, 'DELETE_PERM', oils_i18n_gettext( 246, 
907     'DELETE_PERM', 'ppl', 'description' )),
908  ( 247, 'DELETE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 247, 
909     'DELETE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )),
910  ( 248, 'DELETE_SURVEY', oils_i18n_gettext( 248, 
911     'DELETE_SURVEY', 'ppl', 'description' )),
912  ( 249, 'DELETE_TRANSIT', oils_i18n_gettext( 249, 
913     'DELETE_TRANSIT', 'ppl', 'description' )),
914  ( 250, 'DELETE_VR_FORMAT', oils_i18n_gettext( 250, 
915     'DELETE_VR_FORMAT', 'ppl', 'description' )),
916  ( 251, 'DELETE_XML_TRANSFORM', oils_i18n_gettext( 251, 
917     'DELETE_XML_TRANSFORM', 'ppl', 'description' )),
918  ( 252, 'REMOVE_GROUP_PERM', oils_i18n_gettext( 252, 
919     'REMOVE_GROUP_PERM', 'ppl', 'description' )),
920  ( 253, 'TRANSIT_COPY', oils_i18n_gettext( 253, 
921     'TRANSIT_COPY', 'ppl', 'description' )),
922  ( 254, 'UPDATE_AUDIENCE', oils_i18n_gettext( 254, 
923     'UPDATE_AUDIENCE', 'ppl', 'description' )),
924  ( 255, 'UPDATE_BIB_LEVEL', oils_i18n_gettext( 255, 
925     'UPDATE_BIB_LEVEL', 'ppl', 'description' )),
926  ( 256, 'UPDATE_CIRC_DURATION', oils_i18n_gettext( 256, 
927     'UPDATE_CIRC_DURATION', 'ppl', 'description' )),
928  ( 257, 'UPDATE_CIRC_MOD', oils_i18n_gettext( 257, 
929     'UPDATE_CIRC_MOD', 'ppl', 'description' )),
930  ( 258, 'UPDATE_COPY_NOTE', oils_i18n_gettext( 258, 
931     'UPDATE_COPY_NOTE', 'ppl', 'description' )),
932  ( 259, 'UPDATE_COPY_STATUS', oils_i18n_gettext( 259, 
933     'UPDATE_COPY_STATUS', 'ppl', 'description' )),
934  ( 260, 'UPDATE_GROUP_PERM', oils_i18n_gettext( 260, 
935     'UPDATE_GROUP_PERM', 'ppl', 'description' )),
936  ( 261, 'UPDATE_HOURS_OF_OPERATION', oils_i18n_gettext( 261, 
937     'UPDATE_HOURS_OF_OPERATION', 'ppl', 'description' )),
938  ( 262, 'UPDATE_ITEM_FORM', oils_i18n_gettext( 262, 
939     'UPDATE_ITEM_FORM', 'ppl', 'description' )),
940  ( 263, 'UPDATE_ITEM_TYPE', oils_i18n_gettext( 263, 
941     'UPDATE_ITEM_TYPE', 'ppl', 'description' )),
942  ( 264, 'UPDATE_LANGUAGE', oils_i18n_gettext( 264, 
943     'UPDATE_LANGUAGE', 'ppl', 'description' )),
944  ( 265, 'UPDATE_LASSO', oils_i18n_gettext( 265, 
945     'UPDATE_LASSO', 'ppl', 'description' )),
946  ( 266, 'UPDATE_LASSO_MAP', oils_i18n_gettext( 266, 
947     'UPDATE_LASSO_MAP', 'ppl', 'description' )),
948  ( 267, 'UPDATE_LIT_FORM', oils_i18n_gettext( 267, 
949     'UPDATE_LIT_FORM', 'ppl', 'description' )),
950  ( 268, 'UPDATE_METABIB_FIELD', oils_i18n_gettext( 268, 
951     'UPDATE_METABIB_FIELD', 'ppl', 'description' )),
952  ( 269, 'UPDATE_NET_ACCESS_LEVEL', oils_i18n_gettext( 269, 
953     'UPDATE_NET_ACCESS_LEVEL', 'ppl', 'description' )),
954  ( 270, 'UPDATE_ORG_ADDRESS', oils_i18n_gettext( 270, 
955     'UPDATE_ORG_ADDRESS', 'ppl', 'description' )),
956  ( 271, 'UPDATE_ORG_TYPE', oils_i18n_gettext( 271, 
957     'UPDATE_ORG_TYPE', 'ppl', 'description' )),
958  ( 272, 'UPDATE_ORG_UNIT_CLOSING', oils_i18n_gettext( 272, 
959     'UPDATE_ORG_UNIT_CLOSING', 'ppl', 'description' )),
960  ( 273, 'UPDATE_PERM', oils_i18n_gettext( 273, 
961     'UPDATE_PERM', 'ppl', 'description' )),
962  ( 274, 'UPDATE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 274, 
963     'UPDATE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )),
964  ( 275, 'UPDATE_SURVEY', oils_i18n_gettext( 275, 
965     'UPDATE_SURVEY', 'ppl', 'description' )),
966  ( 276, 'UPDATE_TRANSIT', oils_i18n_gettext( 276, 
967     'UPDATE_TRANSIT', 'ppl', 'description' )),
968  ( 277, 'UPDATE_VOLUME_NOTE', oils_i18n_gettext( 277, 
969     'UPDATE_VOLUME_NOTE', 'ppl', 'description' )),
970  ( 278, 'UPDATE_VR_FORMAT', oils_i18n_gettext( 278, 
971     'UPDATE_VR_FORMAT', 'ppl', 'description' )),
972  ( 279, 'UPDATE_XML_TRANSFORM', oils_i18n_gettext( 279, 
973     'UPDATE_XML_TRANSFORM', 'ppl', 'description' )),
974  ( 280, 'MERGE_BIB_RECORDS', oils_i18n_gettext( 280, 
975     'MERGE_BIB_RECORDS', 'ppl', 'description' )),
976  ( 281, 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', oils_i18n_gettext( 281, 
977     'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', 'ppl', 'description' )),
978  ( 282, 'CREATE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 282, 
979     'CREATE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )),
980  ( 283, 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 283, 
981     'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
982  ( 284, 'CREATE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 284, 
983     'CREATE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )),
984  ( 285, 'CREATE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 285, 
985     'CREATE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )),
986  ( 286, 'CREATE_BIB_IMPORT_FIELD_DEF', oils_i18n_gettext( 286, 
987     'CREATE_BIB_IMPORT_FIELD_DEF', 'ppl', 'description' )),
988  ( 287, 'CREATE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 287, 
989     'CREATE_BIB_IMPORT_QUEUE', 'ppl', 'description' )),
990  ( 288, 'CREATE_LOCALE', oils_i18n_gettext( 288, 
991     'CREATE_LOCALE', 'ppl', 'description' )),
992  ( 289, 'CREATE_MARC_CODE', oils_i18n_gettext( 289, 
993     'CREATE_MARC_CODE', 'ppl', 'description' )),
994  ( 290, 'CREATE_TRANSLATION', oils_i18n_gettext( 290, 
995     'CREATE_TRANSLATION', 'ppl', 'description' )),
996  ( 291, 'DELETE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 291, 
997     'DELETE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )),
998  ( 292, 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 292, 
999     'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1000  ( 293, 'DELETE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 293, 
1001     'DELETE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )),
1002  ( 294, 'DELETE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 294, 
1003     'DELETE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )),
1004  ( 295, 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 295, 
1005     'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1006  ( 296, 'DELETE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 296, 
1007     'DELETE_BIB_IMPORT_QUEUE', 'ppl', 'description' )),
1008  ( 297, 'DELETE_LOCALE', oils_i18n_gettext( 297, 
1009     'DELETE_LOCALE', 'ppl', 'description' )),
1010  ( 298, 'DELETE_MARC_CODE', oils_i18n_gettext( 298, 
1011     'DELETE_MARC_CODE', 'ppl', 'description' )),
1012  ( 299, 'DELETE_TRANSLATION', oils_i18n_gettext( 299, 
1013     'DELETE_TRANSLATION', 'ppl', 'description' )),
1014  ( 300, 'UPDATE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 300, 
1015     'UPDATE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )),
1016  ( 301, 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 301, 
1017     'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1018  ( 302, 'UPDATE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 302, 
1019     'UPDATE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )),
1020  ( 303, 'UPDATE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 303, 
1021     'UPDATE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )),
1022  ( 304, 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 304, 
1023     'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1024  ( 305, 'UPDATE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 305, 
1025     'UPDATE_BIB_IMPORT_QUEUE', 'ppl', 'description' )),
1026  ( 306, 'UPDATE_LOCALE', oils_i18n_gettext( 306, 
1027     'UPDATE_LOCALE', 'ppl', 'description' )),
1028  ( 307, 'UPDATE_MARC_CODE', oils_i18n_gettext( 307, 
1029     'UPDATE_MARC_CODE', 'ppl', 'description' )),
1030  ( 308, 'UPDATE_TRANSLATION', oils_i18n_gettext( 308, 
1031     'UPDATE_TRANSLATION', 'ppl', 'description' )),
1032  ( 309, 'VIEW_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 309, 
1033     'VIEW_ACQ_FUNDING_SOURCE', 'ppl', 'description' )),
1034  ( 310, 'VIEW_AUTHORITY_RECORD_NOTES', oils_i18n_gettext( 310, 
1035     'VIEW_AUTHORITY_RECORD_NOTES', 'ppl', 'description' )),
1036  ( 311, 'CREATE_IMPORT_ITEM', oils_i18n_gettext( 311, 
1037     'CREATE_IMPORT_ITEM', 'ppl', 'description' )),
1038  ( 312, 'CREATE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 312, 
1039     'CREATE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )),
1040  ( 313, 'CREATE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 313, 
1041     'CREATE_IMPORT_TRASH_FIELD', 'ppl', 'description' )),
1042  ( 314, 'DELETE_IMPORT_ITEM', oils_i18n_gettext( 314, 
1043     'DELETE_IMPORT_ITEM', 'ppl', 'description' )),
1044  ( 315, 'DELETE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 315, 
1045     'DELETE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )),
1046  ( 316, 'DELETE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 316, 
1047     'DELETE_IMPORT_TRASH_FIELD', 'ppl', 'description' )),
1048  ( 317, 'UPDATE_IMPORT_ITEM', oils_i18n_gettext( 317, 
1049     'UPDATE_IMPORT_ITEM', 'ppl', 'description' )),
1050  ( 318, 'UPDATE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 318, 
1051     'UPDATE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )),
1052  ( 319, 'UPDATE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 319, 
1053     'UPDATE_IMPORT_TRASH_FIELD', 'ppl', 'description' )),
1054  ( 320, 'UPDATE_ORG_UNIT_SETTING_ALL', oils_i18n_gettext( 320, 
1055     'UPDATE_ORG_UNIT_SETTING_ALL', 'ppl', 'description' )),
1056  ( 321, 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee', oils_i18n_gettext( 321, 
1057     'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee', 'ppl', 'description' )),
1058  ( 322, 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price', oils_i18n_gettext( 322, 
1059     'UPDATE_ORG_UNIT_SETTING.cat.default_item_price', 'ppl', 'description' )),
1060  ( 323, 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout', oils_i18n_gettext( 323, 
1061     'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout', 'ppl', 'description' )),
1062  ( 324, 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout', oils_i18n_gettext( 324, 
1063     'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout', 'ppl', 'description' )),
1064  ( 325, 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails', oils_i18n_gettext( 325, 
1065     'UPDATE_ORG_UNIT_SETTING.org.bounced_emails', 'ppl', 'description' )),
1066  ( 326, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval', oils_i18n_gettext( 326, 
1067     'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval', 'ppl', 'description' )),
1068  ( 327, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval', oils_i18n_gettext( 327, 
1069     'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval', 'ppl', 'description' )),
1070  ( 328, 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow', oils_i18n_gettext( 328, 
1071     'UPDATE_ORG_UNIT_SETTING.credit.payments.allow', 'ppl', 'description' )),
1072  ( 329, 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost', oils_i18n_gettext( 329, 
1073     'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost', 'ppl', 'description' )),
1074  ( 330, 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft', oils_i18n_gettext( 330, 
1075     'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft', 'ppl', 'description' )),
1076  ( 331, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard', oils_i18n_gettext( 331, 
1077     'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard', 'ppl', 'description' )),
1078  ( 332, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft', oils_i18n_gettext( 332, 
1079     'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft', 'ppl', 'description' )),
1080  ( 333, 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex', oils_i18n_gettext( 333, 
1081     'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex', 'ppl', 'description' )),
1082  ( 334, 'UPDATE_ORG_UNIT_SETTING.global.password_regex', oils_i18n_gettext( 334, 
1083     'UPDATE_ORG_UNIT_SETTING.global.password_regex', 'ppl', 'description' )),
1084  ( 335, 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max', oils_i18n_gettext( 335, 
1085     'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max', 'ppl', 'description' )),
1086  ( 336, 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval', oils_i18n_gettext( 336, 
1087     'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval', 'ppl', 'description' )),
1088  ( 337, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout', oils_i18n_gettext( 337, 
1089     'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout', 'ppl', 'description' )),
1090  ( 338, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event', oils_i18n_gettext( 338, 
1091     'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event', 'ppl', 'description' )),
1092  ( 339, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password', oils_i18n_gettext( 339, 
1093     'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password', 'ppl', 'description' )),
1094  ( 340, 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold', oils_i18n_gettext( 340, 
1095     'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold', 'ppl', 'description' )),
1096  ( 341, 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty', oils_i18n_gettext( 341, 
1097     'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty', 'ppl', 'description' )),
1098  ( 342, 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty', oils_i18n_gettext( 342, 
1099     'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty', 'ppl', 'description' )),
1100  ( 343, 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone', oils_i18n_gettext( 343, 
1101     'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone', 'ppl', 'description' )),
1102  ( 344, 'HOLD_ITEM_CHECKED_OUT.override', oils_i18n_gettext( 344, 
1103     'Allows a user to place a hold on an item that they already have checked out', 'ppl', 'description' )),
1104  ( 345, 'ADMIN_ACQ_CANCEL_CAUSE', oils_i18n_gettext( 345, 
1105     'Allow a user to create/update/delete reasons for order cancellations', 'ppl', 'description' )),
1106  ( 346, 'ACQ_XFER_MANUAL_DFUND_AMOUNT', oils_i18n_gettext( 346, 
1107     'Allow a user to transfer different amounts of money out of one fund and into another', 'ppl', 'description' )),
1108  ( 347, 'OVERRIDE_HOLD_HAS_LOCAL_COPY', oils_i18n_gettext( 347, 
1109     'Allow a user to override the circ.holds.hold_has_copy_at.block setting', 'ppl', 'description' )),
1110  ( 348, 'UPDATE_PICKUP_LIB_FROM_TRANSIT', oils_i18n_gettext( 348, 
1111     'Allow a user to change the pickup and transit destination for a captured hold item already in transit', 'ppl', 'description' )),
1112  ( 349, 'COPY_NEEDED_FOR_HOLD.override', oils_i18n_gettext( 349, 
1113     'Allow a user to force renewal of an item that could fulfill a hold request', 'ppl', 'description' )),
1114  ( 350, 'MERGE_AUTH_RECORDS', oils_i18n_gettext( 350, 
1115     'Allow a user to merge authority records together', 'ppl', 'description' )),
1116  ( 351, 'ALLOW_ALT_TCN', oils_i18n_gettext( 351, 
1117     'Allows staff to import a record using an alternate TCN to avoid conflicts', 'ppl', 'description' )),
1118  ( 352, 'ADMIN_TRIGGER_EVENT_DEF', oils_i18n_gettext( 352, 
1119     'Allow a user to administer trigger event definitions', 'ppl', 'description' )),
1120  ( 353, 'ADMIN_TRIGGER_CLEANUP', oils_i18n_gettext( 353, 
1121     'Allow a user to create, delete, and update trigger cleanup entries', 'ppl', 'description' )),
1122  ( 354, 'CREATE_TRIGGER_CLEANUP', oils_i18n_gettext( 354, 
1123     'Allow a user to create trigger cleanup entries', 'ppl', 'description' )),
1124  ( 355, 'DELETE_TRIGGER_CLEANUP', oils_i18n_gettext( 355, 
1125     'Allow a user to delete trigger cleanup entries', 'ppl', 'description' )),
1126  ( 356, 'UPDATE_TRIGGER_CLEANUP', oils_i18n_gettext( 356, 
1127     'Allow a user to update trigger cleanup entries', 'ppl', 'description' )),
1128  ( 357, 'CREATE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 357, 
1129     'Allow a user to create trigger event definitions', 'ppl', 'description' )),
1130  ( 358, 'DELETE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 358, 
1131     'Allow a user to delete trigger event definitions', 'ppl', 'description' )),
1132  ( 359, 'UPDATE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 359, 
1133     'Allow a user to update trigger event definitions', 'ppl', 'description' )),
1134  ( 360, 'VIEW_TRIGGER_EVENT_DEF', oils_i18n_gettext( 360, 
1135     'Allow a user to view trigger event definitions', 'ppl', 'description' )),
1136  ( 361, 'ADMIN_TRIGGER_HOOK', oils_i18n_gettext( 361, 
1137     'Allow a user to create, update, and delete trigger hooks', 'ppl', 'description' )),
1138  ( 362, 'CREATE_TRIGGER_HOOK', oils_i18n_gettext( 362, 
1139     'Allow a user to create trigger hooks', 'ppl', 'description' )),
1140  ( 363, 'DELETE_TRIGGER_HOOK', oils_i18n_gettext( 363, 
1141     'Allow a user to delete trigger hooks', 'ppl', 'description' )),
1142  ( 364, 'UPDATE_TRIGGER_HOOK', oils_i18n_gettext( 364, 
1143     'Allow a user to update trigger hooks', 'ppl', 'description' )),
1144  ( 365, 'ADMIN_TRIGGER_REACTOR', oils_i18n_gettext( 365, 
1145     'Allow a user to create, update, and delete trigger reactors', 'ppl', 'description' )),
1146  ( 366, 'CREATE_TRIGGER_REACTOR', oils_i18n_gettext( 366, 
1147     'Allow a user to create trigger reactors', 'ppl', 'description' )),
1148  ( 367, 'DELETE_TRIGGER_REACTOR', oils_i18n_gettext( 367, 
1149     'Allow a user to delete trigger reactors', 'ppl', 'description' )),
1150  ( 368, 'UPDATE_TRIGGER_REACTOR', oils_i18n_gettext( 368, 
1151     'Allow a user to update trigger reactors', 'ppl', 'description' )),
1152  ( 369, 'ADMIN_TRIGGER_TEMPLATE_OUTPUT', oils_i18n_gettext( 369, 
1153     'Allow a user to delete trigger template output', 'ppl', 'description' )),
1154  ( 370, 'DELETE_TRIGGER_TEMPLATE_OUTPUT', oils_i18n_gettext( 370, 
1155     'Allow a user to delete trigger template output', 'ppl', 'description' )),
1156  ( 371, 'ADMIN_TRIGGER_VALIDATOR', oils_i18n_gettext( 371, 
1157     'Allow a user to create, update, and delete trigger validators', 'ppl', 'description' )),
1158  ( 372, 'CREATE_TRIGGER_VALIDATOR', oils_i18n_gettext( 372, 
1159     'Allow a user to create trigger validators', 'ppl', 'description' )),
1160  ( 373, 'DELETE_TRIGGER_VALIDATOR', oils_i18n_gettext( 373, 
1161     'Allow a user to delete trigger validators', 'ppl', 'description' )),
1162  ( 374, 'UPDATE_TRIGGER_VALIDATOR', oils_i18n_gettext( 374, 
1163     'Allow a user to update trigger validators', 'ppl', 'description' )),
1164  ( 376, 'ADMIN_BOOKING_RESOURCE', oils_i18n_gettext( 376, 
1165     'Enables the user to create/update/delete booking resources', 'ppl', 'description' )),
1166  ( 377, 'ADMIN_BOOKING_RESOURCE_TYPE', oils_i18n_gettext( 377, 
1167     'Enables the user to create/update/delete booking resource types', 'ppl', 'description' )),
1168  ( 378, 'ADMIN_BOOKING_RESOURCE_ATTR', oils_i18n_gettext( 378, 
1169     'Enables the user to create/update/delete booking resource attributes', 'ppl', 'description' )),
1170  ( 379, 'ADMIN_BOOKING_RESOURCE_ATTR_MAP', oils_i18n_gettext( 379, 
1171     'Enables the user to create/update/delete booking resource attribute maps', 'ppl', 'description' )),
1172  ( 380, 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE', oils_i18n_gettext( 380, 
1173     'Enables the user to create/update/delete booking resource attribute values', 'ppl', 'description' )),
1174  ( 381, 'ADMIN_BOOKING_RESERVATION', oils_i18n_gettext( 381, 
1175     'Enables the user to create/update/delete booking reservations', 'ppl', 'description' )),
1176  ( 382, 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP', oils_i18n_gettext( 382, 
1177     'Enables the user to create/update/delete booking reservation attribute value maps', 'ppl', 'description' )),
1178  ( 383, 'RETRIEVE_RESERVATION_PULL_LIST', oils_i18n_gettext( 383, 
1179     'Allows a user to retrieve a booking reservation pull list', 'ppl', 'description' )),
1180  ( 384, 'CAPTURE_RESERVATION', oils_i18n_gettext( 384, 
1181     'Allows a user to capture booking reservations', 'ppl', 'description' )),
1182  ( 385, 'UPDATE_RECORD', oils_i18n_gettext( 385, 
1183     'UPDATE_RECORD', 'ppl', 'description' )),
1184  ( 386, 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds', oils_i18n_gettext( 386, 
1185     'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds', 'ppl', 'description' )),
1186  ( 387, 'MERGE_USERS', oils_i18n_gettext( 387, 
1187     'Allows user records to be merged', 'ppl', 'description' )),
1188  ( 388, 'ISSUANCE_HOLDS', oils_i18n_gettext( 388, 
1189     'Allow a user to place holds on serials issuances', 'ppl', 'description' )),
1190  ( 389, 'VIEW_CREDIT_CARD_PROCESSING', oils_i18n_gettext( 389, 
1191     'View org unit settings related to credit card processing', 'ppl', 'description' )),
1192  ( 390, 'ADMIN_CREDIT_CARD_PROCESSING', oils_i18n_gettext( 390, 
1193     'Update org unit settings related to credit card processing', 'ppl', 'description' )),
1194  ( 391, 'ADMIN_ACQ_CLAIM', oils_i18n_gettext( 391, 
1195     'ADMIN_ACQ_CLAIM', 'ppl', 'description' )),
1196  ( 392, 'ADMIN_ACQ_CLAIM_EVENT_TYPE', oils_i18n_gettext( 392, 
1197     'ADMIN_ACQ_CLAIM_EVENT_TYPE', 'ppl', 'description' )),
1198  ( 393, 'ADMIN_ACQ_CLAIM_TYPE', oils_i18n_gettext( 393, 
1199     'ADMIN_ACQ_CLAIM_TYPE', 'ppl', 'description' )),
1200  ( 394, 'ADMIN_ACQ_DISTRIB_FORMULA', oils_i18n_gettext( 394, 
1201     'ADMIN_ACQ_DISTRIB_FORMULA', 'ppl', 'description' )),
1202  ( 395, 'ADMIN_ACQ_FISCAL_YEAR', oils_i18n_gettext( 395, 
1203     'ADMIN_ACQ_FISCAL_YEAR', 'ppl', 'description' )),
1204  ( 396, 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT', oils_i18n_gettext( 396, 
1205     'ADMIN_ACQ_FUND_ALLOCATION_PERCENT', 'ppl', 'description' )),
1206  ( 397, 'ADMIN_ACQ_FUND_TAG', oils_i18n_gettext( 397, 
1207     'ADMIN_ACQ_FUND_TAG', 'ppl', 'description' )),
1208  ( 398, 'ADMIN_ACQ_LINEITEM_ALERT_TEXT', oils_i18n_gettext( 398, 
1209     'ADMIN_ACQ_LINEITEM_ALERT_TEXT', 'ppl', 'description' )),
1210  ( 399, 'ADMIN_AGE_PROTECT_RULE', oils_i18n_gettext( 399, 
1211     'ADMIN_AGE_PROTECT_RULE', 'ppl', 'description' )),
1212  ( 400, 'ADMIN_ASSET_COPY_TEMPLATE', oils_i18n_gettext( 400, 
1213     'ADMIN_ASSET_COPY_TEMPLATE', 'ppl', 'description' )),
1214  ( 401, 'ADMIN_BOOKING_RESERVATION_ATTR_MAP', oils_i18n_gettext( 401, 
1215     'ADMIN_BOOKING_RESERVATION_ATTR_MAP', 'ppl', 'description' )),
1216  ( 402, 'ADMIN_CIRC_MATRIX_MATCHPOINT', oils_i18n_gettext( 402, 
1217     'ADMIN_CIRC_MATRIX_MATCHPOINT', 'ppl', 'description' )),
1218  ( 403, 'ADMIN_CIRC_MOD', oils_i18n_gettext( 403, 
1219     'ADMIN_CIRC_MOD', 'ppl', 'description' )),
1220  ( 404, 'ADMIN_CLAIM_POLICY', oils_i18n_gettext( 404, 
1221     'ADMIN_CLAIM_POLICY', 'ppl', 'description' )),
1222  ( 405, 'ADMIN_CONFIG_REMOTE_ACCOUNT', oils_i18n_gettext( 405, 
1223     'ADMIN_CONFIG_REMOTE_ACCOUNT', 'ppl', 'description' )),
1224  ( 406, 'ADMIN_FIELD_DOC', oils_i18n_gettext( 406, 
1225     'ADMIN_FIELD_DOC', 'ppl', 'description' )),
1226  ( 407, 'ADMIN_GLOBAL_FLAG', oils_i18n_gettext( 407, 
1227     'ADMIN_GLOBAL_FLAG', 'ppl', 'description' )),
1228  ( 408, 'ADMIN_GROUP_PENALTY_THRESHOLD', oils_i18n_gettext( 408, 
1229     'ADMIN_GROUP_PENALTY_THRESHOLD', 'ppl', 'description' )),
1230  ( 409, 'ADMIN_HOLD_CANCEL_CAUSE', oils_i18n_gettext( 409, 
1231     'ADMIN_HOLD_CANCEL_CAUSE', 'ppl', 'description' )),
1232  ( 410, 'ADMIN_HOLD_MATRIX_MATCHPOINT', oils_i18n_gettext( 410, 
1233     'ADMIN_HOLD_MATRIX_MATCHPOINT', 'ppl', 'description' )),
1234  ( 411, 'ADMIN_IDENT_TYPE', oils_i18n_gettext( 411, 
1235     'ADMIN_IDENT_TYPE', 'ppl', 'description' )),
1236  ( 412, 'ADMIN_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 412, 
1237     'ADMIN_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )),
1238  ( 413, 'ADMIN_INDEX_NORMALIZER', oils_i18n_gettext( 413, 
1239     'ADMIN_INDEX_NORMALIZER', 'ppl', 'description' )),
1240  ( 414, 'ADMIN_INVOICE', oils_i18n_gettext( 414, 
1241     'ADMIN_INVOICE', 'ppl', 'description' )),
1242  ( 415, 'ADMIN_INVOICE_METHOD', oils_i18n_gettext( 415, 
1243     'ADMIN_INVOICE_METHOD', 'ppl', 'description' )),
1244  ( 416, 'ADMIN_INVOICE_PAYMENT_METHOD', oils_i18n_gettext( 416, 
1245     'ADMIN_INVOICE_PAYMENT_METHOD', 'ppl', 'description' )),
1246  ( 417, 'ADMIN_LINEITEM_MARC_ATTR_DEF', oils_i18n_gettext( 417, 
1247     'ADMIN_LINEITEM_MARC_ATTR_DEF', 'ppl', 'description' )),
1248  ( 418, 'ADMIN_MARC_CODE', oils_i18n_gettext( 418, 
1249     'ADMIN_MARC_CODE', 'ppl', 'description' )),
1250  ( 419, 'ADMIN_MAX_FINE_RULE', oils_i18n_gettext( 419, 
1251     'ADMIN_MAX_FINE_RULE', 'ppl', 'description' )),
1252  ( 420, 'ADMIN_MERGE_PROFILE', oils_i18n_gettext( 420, 
1253     'ADMIN_MERGE_PROFILE', 'ppl', 'description' )),
1254  ( 421, 'ADMIN_ORG_UNIT_SETTING_TYPE', oils_i18n_gettext( 421, 
1255     'ADMIN_ORG_UNIT_SETTING_TYPE', 'ppl', 'description' )),
1256  ( 422, 'ADMIN_RECURRING_FINE_RULE', oils_i18n_gettext( 422, 
1257     'ADMIN_RECURRING_FINE_RULE', 'ppl', 'description' )),
1258  ( 423, 'ADMIN_SERIAL_SUBSCRIPTION', oils_i18n_gettext( 423, 
1259     'ADMIN_SERIAL_SUBSCRIPTION', 'ppl', 'description' )),
1260  ( 424, 'ADMIN_STANDING_PENALTY', oils_i18n_gettext( 424, 
1261     'ADMIN_STANDING_PENALTY', 'ppl', 'description' )),
1262  ( 425, 'ADMIN_SURVEY', oils_i18n_gettext( 425, 
1263     'ADMIN_SURVEY', 'ppl', 'description' )),
1264  ( 426, 'ADMIN_USER_REQUEST_TYPE', oils_i18n_gettext( 426, 
1265     'ADMIN_USER_REQUEST_TYPE', 'ppl', 'description' )),
1266  ( 427, 'ADMIN_USER_SETTING_GROUP', oils_i18n_gettext( 427, 
1267     'ADMIN_USER_SETTING_GROUP', 'ppl', 'description' )),
1268  ( 428, 'ADMIN_USER_SETTING_TYPE', oils_i18n_gettext( 428, 
1269     'ADMIN_USER_SETTING_TYPE', 'ppl', 'description' )),
1270  ( 429, 'ADMIN_Z3950_SOURCE', oils_i18n_gettext( 429, 
1271     'ADMIN_Z3950_SOURCE', 'ppl', 'description' )),
1272  ( 430, 'CREATE_BIB_BTYPE', oils_i18n_gettext( 430, 
1273     'CREATE_BIB_BTYPE', 'ppl', 'description' )),
1274  ( 431, 'CREATE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 431, 
1275     'CREATE_BIBLIO_FINGERPRINT', 'ppl', 'description' )),
1276  ( 432, 'CREATE_BIB_SOURCE', oils_i18n_gettext( 432, 
1277     'CREATE_BIB_SOURCE', 'ppl', 'description' )),
1278  ( 433, 'CREATE_BILLING_TYPE', oils_i18n_gettext( 433, 
1279     'CREATE_BILLING_TYPE', 'ppl', 'description' )),
1280  ( 434, 'CREATE_CN_BTYPE', oils_i18n_gettext( 434, 
1281     'CREATE_CN_BTYPE', 'ppl', 'description' )),
1282  ( 435, 'CREATE_COPY_BTYPE', oils_i18n_gettext( 435, 
1283     'CREATE_COPY_BTYPE', 'ppl', 'description' )),
1284  ( 436, 'CREATE_INVOICE', oils_i18n_gettext( 436, 
1285     'CREATE_INVOICE', 'ppl', 'description' )),
1286  ( 437, 'CREATE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 437, 
1287     'CREATE_INVOICE_ITEM_TYPE', 'ppl', 'description' )),
1288  ( 438, 'CREATE_INVOICE_METHOD', oils_i18n_gettext( 438, 
1289     'CREATE_INVOICE_METHOD', 'ppl', 'description' )),
1290  ( 439, 'CREATE_MERGE_PROFILE', oils_i18n_gettext( 439, 
1291     'CREATE_MERGE_PROFILE', 'ppl', 'description' )),
1292  ( 440, 'CREATE_METABIB_CLASS', oils_i18n_gettext( 440, 
1293     'CREATE_METABIB_CLASS', 'ppl', 'description' )),
1294  ( 441, 'CREATE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 441, 
1295     'CREATE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )),
1296  ( 442, 'CREATE_USER_BTYPE', oils_i18n_gettext( 442, 
1297     'CREATE_USER_BTYPE', 'ppl', 'description' )),
1298  ( 443, 'DELETE_BIB_BTYPE', oils_i18n_gettext( 443, 
1299     'DELETE_BIB_BTYPE', 'ppl', 'description' )),
1300  ( 444, 'DELETE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 444, 
1301     'DELETE_BIBLIO_FINGERPRINT', 'ppl', 'description' )),
1302  ( 445, 'DELETE_BIB_SOURCE', oils_i18n_gettext( 445, 
1303     'DELETE_BIB_SOURCE', 'ppl', 'description' )),
1304  ( 446, 'DELETE_BILLING_TYPE', oils_i18n_gettext( 446, 
1305     'DELETE_BILLING_TYPE', 'ppl', 'description' )),
1306  ( 447, 'DELETE_CN_BTYPE', oils_i18n_gettext( 447, 
1307     'DELETE_CN_BTYPE', 'ppl', 'description' )),
1308  ( 448, 'DELETE_COPY_BTYPE', oils_i18n_gettext( 448, 
1309     'DELETE_COPY_BTYPE', 'ppl', 'description' )),
1310  ( 449, 'DELETE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 449, 
1311     'DELETE_INVOICE_ITEM_TYPE', 'ppl', 'description' )),
1312  ( 450, 'DELETE_INVOICE_METHOD', oils_i18n_gettext( 450, 
1313     'DELETE_INVOICE_METHOD', 'ppl', 'description' )),
1314  ( 451, 'DELETE_MERGE_PROFILE', oils_i18n_gettext( 451, 
1315     'DELETE_MERGE_PROFILE', 'ppl', 'description' )),
1316  ( 452, 'DELETE_METABIB_CLASS', oils_i18n_gettext( 452, 
1317     'DELETE_METABIB_CLASS', 'ppl', 'description' )),
1318  ( 453, 'DELETE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 453, 
1319     'DELETE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )),
1320  ( 454, 'DELETE_USER_BTYPE', oils_i18n_gettext( 454, 
1321     'DELETE_USER_BTYPE', 'ppl', 'description' )),
1322  ( 455, 'MANAGE_CLAIM', oils_i18n_gettext( 455, 
1323     'MANAGE_CLAIM', 'ppl', 'description' )),
1324  ( 456, 'UPDATE_BIB_BTYPE', oils_i18n_gettext( 456, 
1325     'UPDATE_BIB_BTYPE', 'ppl', 'description' )),
1326  ( 457, 'UPDATE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 457, 
1327     'UPDATE_BIBLIO_FINGERPRINT', 'ppl', 'description' )),
1328  ( 458, 'UPDATE_BIB_SOURCE', oils_i18n_gettext( 458, 
1329     'UPDATE_BIB_SOURCE', 'ppl', 'description' )),
1330  ( 459, 'UPDATE_BILLING_TYPE', oils_i18n_gettext( 459, 
1331     'UPDATE_BILLING_TYPE', 'ppl', 'description' )),
1332  ( 460, 'UPDATE_CN_BTYPE', oils_i18n_gettext( 460, 
1333     'UPDATE_CN_BTYPE', 'ppl', 'description' )),
1334  ( 461, 'UPDATE_COPY_BTYPE', oils_i18n_gettext( 461, 
1335     'UPDATE_COPY_BTYPE', 'ppl', 'description' )),
1336  ( 462, 'UPDATE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 462, 
1337     'UPDATE_INVOICE_ITEM_TYPE', 'ppl', 'description' )),
1338  ( 463, 'UPDATE_INVOICE_METHOD', oils_i18n_gettext( 463, 
1339     'UPDATE_INVOICE_METHOD', 'ppl', 'description' )),
1340  ( 464, 'UPDATE_MERGE_PROFILE', oils_i18n_gettext( 464, 
1341     'UPDATE_MERGE_PROFILE', 'ppl', 'description' )),
1342  ( 465, 'UPDATE_METABIB_CLASS', oils_i18n_gettext( 465, 
1343     'UPDATE_METABIB_CLASS', 'ppl', 'description' )),
1344  ( 466, 'UPDATE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 466, 
1345     'UPDATE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )),
1346  ( 467, 'UPDATE_USER_BTYPE', oils_i18n_gettext( 467, 
1347     'UPDATE_USER_BTYPE', 'ppl', 'description' )),
1348  ( 468, 'user_request.create', oils_i18n_gettext( 468, 
1349     'user_request.create', 'ppl', 'description' )),
1350  ( 469, 'user_request.delete', oils_i18n_gettext( 469, 
1351     'user_request.delete', 'ppl', 'description' )),
1352  ( 470, 'user_request.update', oils_i18n_gettext( 470, 
1353     'user_request.update', 'ppl', 'description' )),
1354  ( 471, 'user_request.view', oils_i18n_gettext( 471, 
1355     'user_request.view', 'ppl', 'description' )),
1356  ( 472, 'VIEW_ACQ_FUND_ALLOCATION_PERCENT', oils_i18n_gettext( 472, 
1357     'VIEW_ACQ_FUND_ALLOCATION_PERCENT', 'ppl', 'description' )),
1358  ( 473, 'VIEW_CIRC_MATRIX_MATCHPOINT', oils_i18n_gettext( 473, 
1359     'VIEW_CIRC_MATRIX_MATCHPOINT', 'ppl', 'description' )),
1360  ( 474, 'VIEW_CLAIM', oils_i18n_gettext( 474, 
1361     'VIEW_CLAIM', 'ppl', 'description' )),
1362  ( 475, 'VIEW_GROUP_PENALTY_THRESHOLD', oils_i18n_gettext( 475, 
1363     'VIEW_GROUP_PENALTY_THRESHOLD', 'ppl', 'description' )),
1364  ( 476, 'VIEW_HOLD_MATRIX_MATCHPOINT', oils_i18n_gettext( 476, 
1365     'VIEW_HOLD_MATRIX_MATCHPOINT', 'ppl', 'description' )),
1366  ( 477, 'VIEW_INVOICE', oils_i18n_gettext( 477, 
1367     'VIEW_INVOICE', 'ppl', 'description' )),
1368  ( 478, 'VIEW_MERGE_PROFILE', oils_i18n_gettext( 478, 
1369     'VIEW_MERGE_PROFILE', 'ppl', 'description' )),
1370  ( 479, 'VIEW_SERIAL_SUBSCRIPTION', oils_i18n_gettext( 479, 
1371     'VIEW_SERIAL_SUBSCRIPTION', 'ppl', 'description' )),
1372  ( 480, 'VIEW_STANDING_PENALTY', oils_i18n_gettext( 480, 
1373     'VIEW_STANDING_PENALTY', 'ppl', 'description' )),
1374  ( 481, 'ADMIN_SERIAL_CAPTION_PATTERN', oils_i18n_gettext( 481, 
1375     'ADMIN_SERIAL_CAPTION_PATTERN', 'ppl', 'description' )),
1376  ( 482, 'ADMIN_SERIAL_DISTRIBUTION', oils_i18n_gettext( 482, 
1377     'ADMIN_SERIAL_DISTRIBUTION', 'ppl', 'description' )),
1378  ( 483, 'ADMIN_SERIAL_STREAM', oils_i18n_gettext( 483, 
1379     'ADMIN_SERIAL_STREAM', 'ppl', 'description' )),
1380  ( 484, 'RECEIVE_SERIAL', oils_i18n_gettext(484, 'Receive serial items', 'ppl', 'description'));
1381
1382
1383 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, 1000);
1384
1385 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1386         (1, oils_i18n_gettext(1, 'Users', 'pgt', 'name'), NULL, NULL, '3 years', FALSE, 'group_application.user');
1387 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1388         (2, oils_i18n_gettext(2, 'Patrons', 'pgt', 'name'), 1, NULL, '3 years', TRUE, 'group_application.user.patron');
1389 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1390         (3, oils_i18n_gettext(3, 'Staff', 'pgt', 'name'), 1, NULL, '3 years', FALSE, 'group_application.user.staff');
1391 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1392         (4, oils_i18n_gettext(4, 'Catalogers', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.cat');
1393 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1394         (5, oils_i18n_gettext(5, 'Circulators', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.circ');
1395 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1396         (6, oils_i18n_gettext(6, 'Acquisitions', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.acq');
1397 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1398         (7, oils_i18n_gettext(7, 'Acquisitions Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.acq_admin');
1399 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1400         (8, oils_i18n_gettext(8, 'Cataloging Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.cat_admin');
1401 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1402         (9, oils_i18n_gettext(9, 'Circulation Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.circ_admin');
1403 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1404         (10, oils_i18n_gettext(10, 'Local Administrator', 'pgt', 'name'), 3, 
1405         oils_i18n_gettext(10, 'Can do anything at the Branch level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.local_admin');
1406 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1407         (11, oils_i18n_gettext(11, 'Serials', 'pgt', 'name'), 3, 
1408         oils_i18n_gettext(11, 'Serials (includes admin features)', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.serials');
1409 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1410         (12, oils_i18n_gettext(12, 'System Administrator', 'pgt', 'name'), 3, 
1411         oils_i18n_gettext(12, 'Can do anything at the System level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.system_admin');
1412 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1413         (13, oils_i18n_gettext(13, 'Global Administrator', 'pgt', 'name'), 3, 
1414         oils_i18n_gettext(13, 'Can do anything at the Consortium level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.global_admin');
1415 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1416         (14, oils_i18n_gettext(14, 'Data Review', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.data_review');
1417 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1418         (15, oils_i18n_gettext(15, 'Volunteers', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.volunteers');
1419
1420 SELECT SETVAL('permission.grp_tree_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_tree));
1421
1422 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
1423     VALUES (1,1,1,10.0);
1424 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
1425     VALUES (1,1,2,10.0);
1426 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
1427     VALUES (1,1,3,10.0);
1428
1429 SELECT SETVAL('permission.grp_penalty_threshold_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_penalty_threshold));
1430
1431
1432 -- Add basic user permissions to the Users group
1433
1434 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1435         SELECT
1436                 pgt.id, perm.id, aout.depth, FALSE
1437         FROM
1438                 permission.grp_tree pgt,
1439                 permission.perm_list perm,
1440                 actor.org_unit_type aout
1441         WHERE
1442                 pgt.name = 'Users' AND
1443                 aout.name = 'Consortium' AND
1444                 perm.code IN (
1445                         'COPY_CHECKIN',
1446                         'CREATE_MY_CONTAINER',
1447                         'MR_HOLDS',
1448                         'OPAC_LOGIN',
1449                         'RENEW_CIRC',
1450                         'TITLE_HOLDS',
1451                         'user_request.create');
1452
1453
1454 -- Add basic user permissions to the Data Review group
1455
1456 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1457         SELECT
1458                 pgt.id, perm.id, aout.depth, FALSE
1459         FROM
1460                 permission.grp_tree pgt,
1461                 permission.perm_list perm,
1462                 actor.org_unit_type aout
1463         WHERE
1464                 pgt.name = 'Data Review' AND
1465                 aout.name = 'Consortium' AND
1466                 perm.code IN (
1467                         'CREATE_COPY_TRANSIT',
1468                         'VIEW_BILLING_TYPE',
1469                         'VIEW_CIRCULATIONS',
1470                         'VIEW_COPY_NOTES',
1471                         'VIEW_HOLD',
1472                         'VIEW_ORG_SETTINGS',
1473                         'VIEW_TITLE_NOTES',
1474                         'VIEW_TRANSACTION',
1475                         'VIEW_USER',
1476                         'VIEW_USER_FINES_SUMMARY',
1477                         'VIEW_USER_TRANSACTIONS',
1478                         'VIEW_VOLUME_NOTES',
1479                         'VIEW_ZIP_DATA');
1480
1481 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1482         SELECT
1483                 pgt.id, perm.id, aout.depth, FALSE
1484         FROM
1485                 permission.grp_tree pgt,
1486                 permission.perm_list perm,
1487                 actor.org_unit_type aout
1488         WHERE
1489                 pgt.name = 'Data Review' AND
1490                 aout.name = 'System' AND
1491                 perm.code IN (
1492                         'COPY_CHECKOUT',
1493                         'COPY_HOLDS',
1494                         'CREATE_IN_HOUSE_USE',
1495                         'CREATE_TRANSACTION',
1496                         'OFFLINE_EXECUTE',
1497                         'OFFLINE_VIEW',
1498                         'STAFF_LOGIN',
1499                         'VOLUME_HOLDS');
1500
1501
1502 -- Add basic staff permissions to the Staff group
1503
1504 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1505         SELECT
1506                 pgt.id, perm.id, aout.depth, FALSE
1507         FROM
1508                 permission.grp_tree pgt,
1509                 permission.perm_list perm,
1510                 actor.org_unit_type aout
1511         WHERE
1512                 pgt.name = 'Staff' AND
1513                 aout.name = 'Consortium' AND
1514                 perm.code IN (
1515                         'CREATE_CONTAINER',
1516                         'CREATE_CONTAINER_ITEM',
1517                         'CREATE_COPY_TRANSIT',
1518                         'CREATE_HOLD_NOTIFICATION',
1519                         'CREATE_TRANSACTION',
1520                         'CREATE_TRANSIT',
1521                         'DELETE_CONTAINER',
1522                         'DELETE_CONTAINER_ITEM',
1523                         'group_application.user',
1524                         'group_application.user.patron',
1525                         'REGISTER_WORKSTATION',
1526                         'REMOTE_Z3950_QUERY',
1527                         'REQUEST_HOLDS',
1528                         'STAFF_LOGIN',
1529                         'TRANSIT_COPY',
1530                         'UPDATE_CONTAINER',
1531                         'VIEW_CONTAINER',
1532                         'VIEW_COPY_CHECKOUT_HISTORY',
1533                         'VIEW_COPY_NOTES',
1534                         'VIEW_HOLD',
1535                         'VIEW_HOLD_NOTIFICATION',
1536                         'VIEW_HOLD_PERMIT',
1537                         'VIEW_PERM_GROUPS',
1538                         'VIEW_PERMISSION',
1539                         'VIEW_TITLE_NOTES',
1540                         'VIEW_TRANSACTION',
1541                         'VIEW_VOLUME_NOTES');
1542
1543 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1544         SELECT
1545                 pgt.id, perm.id, aout.depth, FALSE
1546         FROM
1547                 permission.grp_tree pgt,
1548                 permission.perm_list perm,
1549                 actor.org_unit_type aout
1550         WHERE
1551                 pgt.name = 'Staff' AND
1552                 aout.name = 'System' AND
1553                 perm.code IN (
1554                         'CREATE_USER',
1555                         'UPDATE_USER',
1556                         'VIEW_BILLING_TYPE',
1557                         'VIEW_CIRCULATIONS',
1558                         'VIEW_ORG_SETTINGS',
1559                         'VIEW_PERMIT_CHECKOUT',
1560                         'VIEW_USER',
1561                         'VIEW_USER_FINES_SUMMARY',
1562                         'VIEW_USER_TRANSACTIONS');
1563
1564 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1565         SELECT
1566                 pgt.id, perm.id, aout.depth, FALSE
1567         FROM
1568                 permission.grp_tree pgt,
1569                 permission.perm_list perm,
1570                 actor.org_unit_type aout
1571         WHERE
1572                 pgt.name = 'Staff' AND
1573                 aout.name = 'Branch' AND
1574                 perm.code IN (
1575                         'CANCEL_HOLDS',
1576                         'COPY_CHECKOUT',
1577                         'COPY_HOLDS',
1578                         'COPY_TRANSIT_RECEIVE',
1579                         'CREATE_BILL',
1580                         'CREATE_IN_HOUSE_USE',
1581                         'CREATE_PAYMENT',
1582                         'RENEW_HOLD_OVERRIDE',
1583                         'UPDATE_COPY',
1584                         'UPDATE_VOLUME',
1585                         'VOLUME_HOLDS');
1586
1587
1588 -- Add basic cataloguing permissions to the Catalogers group
1589
1590 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1591         SELECT
1592                 pgt.id, perm.id, aout.depth, FALSE
1593         FROM
1594                 permission.grp_tree pgt,
1595                 permission.perm_list perm,
1596                 actor.org_unit_type aout
1597         WHERE
1598                 pgt.name = 'Catalogers' AND
1599                 aout.name = 'Consortium' AND
1600                 perm.code IN (
1601                         'ALLOW_ALT_TCN',
1602                         'CREATE_BIB_IMPORT_QUEUE',
1603                         'CREATE_IMPORT_ITEM',
1604                         'CREATE_MARC',
1605                         'CREATE_TITLE_NOTE',
1606                         'DELETE_BIB_IMPORT_QUEUE',
1607                         'DELETE_IMPORT_ITEM',
1608                         'DELETE_RECORD',
1609                         'DELETE_TITLE_NOTE',
1610                         'IMPORT_ACQ_LINEITEM_BIB_RECORD',
1611                         'IMPORT_MARC',
1612                         'MERGE_AUTH_RECORDS',
1613                         'MERGE_BIB_RECORDS',
1614                         'UPDATE_AUTHORITY_IMPORT_QUEUE',
1615                         'UPDATE_AUTHORITY_RECORD_NOTE',
1616                         'UPDATE_BIB_IMPORT_QUEUE',
1617                         'UPDATE_MARC',
1618                         'UPDATE_RECORD',
1619                         'user_request.view',
1620                         'VIEW_AUTHORITY_RECORD_NOTES');
1621
1622 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1623         SELECT
1624                 pgt.id, perm.id, aout.depth, FALSE
1625         FROM
1626                 permission.grp_tree pgt,
1627                 permission.perm_list perm,
1628                 actor.org_unit_type aout
1629         WHERE
1630                 pgt.name = 'Catalogers' AND
1631                 aout.name = 'System' AND
1632                 perm.code IN (
1633                         'CREATE_COPY',
1634                         'CREATE_COPY_NOTE',
1635                         'CREATE_MFHD_RECORD',
1636                         'CREATE_VOLUME',
1637                         'CREATE_VOLUME_NOTE',
1638                         'DELETE_COPY',
1639                         'DELETE_COPY_NOTE',
1640                         'DELETE_MFHD_RECORD',
1641                         'DELETE_VOLUME',
1642                         'DELETE_VOLUME_NOTE',
1643                         'MARK_ITEM_AVAILABLE',
1644                         'MARK_ITEM_BINDERY',
1645                         'MARK_ITEM_CHECKED_OUT',
1646                         'MARK_ITEM_ILL',
1647                         'MARK_ITEM_IN_PROCESS',
1648                         'MARK_ITEM_IN_TRANSIT',
1649                         'MARK_ITEM_LOST',
1650                         'MARK_ITEM_MISSING',
1651                         'MARK_ITEM_ON_HOLDS_SHELF',
1652                         'MARK_ITEM_ON_ORDER',
1653                         'MARK_ITEM_RESHELVING',
1654                         'UPDATE_COPY',
1655                         'UPDATE_COPY_NOTE',
1656                         'UPDATE_IMPORT_ITEM',
1657                         'UPDATE_MFHD_RECORD',
1658                         'UPDATE_VOLUME',
1659                         'UPDATE_VOLUME_NOTE',
1660                         'VIEW_SERIAL_SUBSCRIPTION');
1661
1662
1663 -- Add advanced cataloguing permissions to the Cataloging Admin group
1664
1665 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1666         SELECT
1667                 pgt.id, perm.id, aout.depth, TRUE
1668         FROM
1669                 permission.grp_tree pgt,
1670                 permission.perm_list perm,
1671                 actor.org_unit_type aout
1672         WHERE
1673                 pgt.name = 'Cataloging Admin' AND
1674                 aout.name = 'Consortium' AND
1675                 perm.code IN (
1676                         'ADMIN_IMPORT_ITEM_ATTR_DEF',
1677                         'ADMIN_MERGE_PROFILE',
1678                         'CREATE_AUTHORITY_IMPORT_IMPORT_DEF',
1679                         'CREATE_BIB_IMPORT_FIELD_DEF',
1680                         'CREATE_BIB_SOURCE',
1681                         'CREATE_IMPORT_ITEM_ATTR_DEF',
1682                         'CREATE_IMPORT_TRASH_FIELD',
1683                         'CREATE_MERGE_PROFILE',
1684                         'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
1685                         'DELETE_BIB_SOURCE',
1686                         'DELETE_IMPORT_ITEM_ATTR_DEF',
1687                         'DELETE_IMPORT_TRASH_FIELD',
1688                         'DELETE_MERGE_PROFILE',
1689                         'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
1690                         'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF',
1691                         'UPDATE_IMPORT_ITEM_ATTR_DEF',
1692                         'UPDATE_IMPORT_TRASH_FIELD',
1693                         'UPDATE_MERGE_PROFILE');
1694
1695 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1696         SELECT
1697                 pgt.id, perm.id, aout.depth, TRUE
1698         FROM
1699                 permission.grp_tree pgt,
1700                 permission.perm_list perm,
1701                 actor.org_unit_type aout
1702         WHERE
1703                 pgt.name = 'Cataloging Admin' AND
1704                 aout.name = 'System' AND
1705                 perm.code IN (
1706                         'CREATE_COPY_STAT_CAT',
1707                         'CREATE_COPY_STAT_CAT_ENTRY',
1708                         'CREATE_COPY_STAT_CAT_ENTRY_MAP',
1709                         'RUN_REPORTS',
1710                         'SHARE_REPORT_FOLDER',
1711                         'UPDATE_COPY_LOCATION',
1712                         'UPDATE_COPY_STAT_CAT',
1713                         'UPDATE_COPY_STAT_CAT_ENTRY',
1714                         'VIEW_REPORT_OUTPUT');
1715
1716
1717 -- Add basic circulation permissions to the Circulators group
1718
1719 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1720         SELECT
1721                 pgt.id, perm.id, aout.depth, FALSE
1722         FROM
1723                 permission.grp_tree pgt,
1724                 permission.perm_list perm,
1725                 actor.org_unit_type aout
1726         WHERE
1727                 pgt.name = 'Circulators' AND
1728                 aout.name = 'Branch' AND
1729                 perm.code IN (
1730                         'ADMIN_BOOKING_RESERVATION',
1731                         'ADMIN_BOOKING_RESOURCE',
1732                         'ADMIN_BOOKING_RESOURCE_ATTR',
1733                         'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
1734                         'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
1735                         'ADMIN_BOOKING_RESOURCE_TYPE',
1736                         'ASSIGN_GROUP_PERM',
1737                         'MARK_ITEM_AVAILABLE',
1738                         'MARK_ITEM_BINDERY',
1739                         'MARK_ITEM_CHECKED_OUT',
1740                         'MARK_ITEM_ILL',
1741                         'MARK_ITEM_IN_PROCESS',
1742                         'MARK_ITEM_IN_TRANSIT',
1743                         'MARK_ITEM_LOST',
1744                         'MARK_ITEM_MISSING',
1745                         'MARK_ITEM_ON_HOLDS_SHELF',
1746                         'MARK_ITEM_ON_ORDER',
1747                         'MARK_ITEM_RESHELVING',
1748                         'OFFLINE_UPLOAD',
1749                         'OFFLINE_VIEW',
1750                         'REMOVE_USER_GROUP_LINK',
1751                         'SET_CIRC_CLAIMS_RETURNED',
1752                         'SET_CIRC_CLAIMS_RETURNED.override',
1753                         'SET_CIRC_LOST',
1754                         'SET_CIRC_MISSING',
1755                         'UPDATE_BILL_NOTE',
1756                         'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
1757                         'UPDATE_PATRON_CLAIM_RETURN_COUNT',
1758                         'UPDATE_PAYMENT_NOTE',
1759                         'UPDATE_PICKUP_LIB FROM_TRANSIT',
1760                         'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
1761                         'VIEW_GROUP_PENALTY_THRESHOLD',
1762                         'VIEW_STANDING_PENALTY',
1763                         'VOID_BILLING',
1764                         'VOLUME_HOLDS');
1765
1766 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1767         SELECT
1768                 pgt.id, perm.id, aout.depth, FALSE
1769         FROM
1770                 permission.grp_tree pgt,
1771                 permission.perm_list perm,
1772                 actor.org_unit_type aout
1773         WHERE
1774                 pgt.name = 'Circulators' AND
1775                 aout.name = 'System' AND
1776                 perm.code IN (
1777                         'ABORT_REMOTE_TRANSIT',
1778                         'ABORT_TRANSIT',
1779                         'CAPTURE_RESERVATION',
1780                         'CIRC_CLAIMS_RETURNED.override',
1781                         'CIRC_EXCEEDS_COPY_RANGE.override',
1782                         'CIRC_OVERRIDE_DUE_DATE',
1783                         'CIRC_PERMIT_OVERRIDE',
1784                         'COPY_ALERT_MESSAGE.override',
1785                         'COPY_BAD_STATUS.override',
1786                         'COPY_CIRC_NOT_ALLOWED.override',
1787                         'COPY_IS_REFERENCE.override',
1788                         'COPY_NEEDED_FOR_HOLD.override',
1789                         'COPY_NOT_AVAILABLE.override',
1790                         'COPY_STATUS_LOST.override',
1791                         'COPY_STATUS_MISSING.override',
1792                         'CREATE_DUPLICATE_HOLDS',
1793                         'CREATE_USER_GROUP_LINK',
1794                         'DELETE_TRANSIT',
1795                         'HOLD_EXISTS.override',
1796                         'HOLD_ITEM_CHECKED_OUT.override',
1797                         'ISSUANCE_HOLDS',
1798                         'ITEM_AGE_PROTECTED.override',
1799                         'ITEM_ON_HOLDS_SHELF.override',
1800                         'MAX_RENEWALS_REACHED.override',
1801                         'OVERRIDE_HOLD_HAS_LOCAL_COPY',
1802                         'PATRON_EXCEEDS_CHECKOUT_COUNT.override',
1803                         'PATRON_EXCEEDS_FINES.override',
1804                         'PATRON_EXCEEDS_OVERDUE_COUNT.override',
1805                         'RETRIEVE_RESERVATION_PULL_LIST',
1806                         'UPDATE_HOLD');
1807
1808
1809 -- Add advanced circulation permissions to the Circulation Admin group
1810
1811 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1812         SELECT
1813                 pgt.id, perm.id, aout.depth, TRUE
1814         FROM
1815                 permission.grp_tree pgt,
1816                 permission.perm_list perm,
1817                 actor.org_unit_type aout
1818         WHERE
1819                 pgt.name = 'Circulation Admin' AND
1820                 aout.name = 'Branch' AND
1821                 perm.code IN (
1822                         'DELETE_USER');
1823
1824 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1825         SELECT
1826                 pgt.id, perm.id, aout.depth, TRUE
1827         FROM
1828                 permission.grp_tree pgt,
1829                 permission.perm_list perm,
1830                 actor.org_unit_type aout
1831         WHERE
1832                 pgt.name = 'Circulation Admin' AND
1833                 aout.name = 'Consortium' AND
1834                 perm.code IN (
1835                         'ADMIN_MAX_FINE_RULE',
1836                         'CREATE_CIRC_DURATION',
1837                         'DELETE_CIRC_DURATION',
1838                         'UPDATE_CIRC_DURATION',
1839                         'UPDATE_NET_ACCESS_LEVEL',
1840                         'VIEW_CIRC_MATRIX_MATCHPOINT',
1841                         'VIEW_HOLD_MATRIX_MATCHPOINT');
1842
1843 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1844         SELECT
1845                 pgt.id, perm.id, aout.depth, TRUE
1846         FROM
1847                 permission.grp_tree pgt,
1848                 permission.perm_list perm,
1849                 actor.org_unit_type aout
1850         WHERE
1851                 pgt.name = 'Circulation Admin' AND
1852                 aout.name = 'System' AND
1853                 perm.code IN (
1854                         'ADMIN_BOOKING_RESERVATION',
1855                         'ADMIN_BOOKING_RESERVATION_ATTR_MAP',
1856                         'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP',
1857                         'ADMIN_BOOKING_RESOURCE',
1858                         'ADMIN_BOOKING_RESOURCE_ATTR',
1859                         'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
1860                         'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
1861                         'ADMIN_BOOKING_RESOURCE_TYPE',
1862                         'ADMIN_COPY_LOCATION_ORDER',
1863                         'ADMIN_HOLD_CANCEL_CAUSE',
1864                         'ASSIGN_GROUP_PERM',
1865                         'BAR_PATRON',
1866                         'COPY_HOLDS',
1867                         'COPY_TRANSIT_RECEIVE',
1868                         'CREATE_BILL',
1869                         'CREATE_BILLING_TYPE',
1870                         'CREATE_NON_CAT_TYPE',
1871                         'CREATE_PATRON_STAT_CAT',
1872                         'CREATE_PATRON_STAT_CAT_ENTRY',
1873                         'CREATE_PATRON_STAT_CAT_ENTRY_MAP',
1874                         'CREATE_USER_GROUP_LINK',
1875                         'DELETE_BILLING_TYPE',
1876                         'DELETE_NON_CAT_TYPE',
1877                         'DELETE_PATRON_STAT_CAT',
1878                         'DELETE_PATRON_STAT_CAT_ENTRY',
1879                         'DELETE_PATRON_STAT_CAT_ENTRY_MAP',
1880                         'DELETE_TRANSIT',
1881                         'group_application.user.staff',
1882                         'MANAGE_BAD_DEBT',
1883                         'MARK_ITEM_AVAILABLE',
1884                         'MARK_ITEM_BINDERY',
1885                         'MARK_ITEM_CHECKED_OUT',
1886                         'MARK_ITEM_ILL',
1887                         'MARK_ITEM_IN_PROCESS',
1888                         'MARK_ITEM_IN_TRANSIT',
1889                         'MARK_ITEM_LOST',
1890                         'MARK_ITEM_MISSING',
1891                         'MARK_ITEM_ON_HOLDS_SHELF',
1892                         'MARK_ITEM_ON_ORDER',
1893                         'MARK_ITEM_RESHELVING',
1894                         'MERGE_USERS',
1895                         'money.collections_tracker.create',
1896                         'money.collections_tracker.delete',
1897                         'OFFLINE_EXECUTE',
1898                         'OFFLINE_UPLOAD',
1899                         'OFFLINE_VIEW',
1900                         'REMOVE_USER_GROUP_LINK',
1901                         'SET_CIRC_CLAIMS_RETURNED',
1902                         'SET_CIRC_CLAIMS_RETURNED.override',
1903                         'SET_CIRC_LOST',
1904                         'SET_CIRC_MISSING',
1905                         'UNBAR_PATRON',
1906                         'UPDATE_BILL_NOTE',
1907                         'UPDATE_NON_CAT_TYPE',
1908                         'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
1909                         'UPDATE_PATRON_CLAIM_RETURN_COUNT',
1910                         'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
1911                         'UPDATE_PICKUP_LIB_FROM_TRANSIT',
1912                         'UPDATE_USER',
1913                         'VIEW_REPORT_OUTPUT',
1914                         'VIEW_STANDING_PENALTY',
1915                         'VOID_BILLING',
1916                         'VOLUME_HOLDS');
1917
1918
1919 -- Add basic sys admin permissions to the Local Administrator group
1920
1921 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1922         SELECT
1923                 pgt.id, perm.id, aout.depth, TRUE
1924         FROM
1925                 permission.grp_tree pgt,
1926                 permission.perm_list perm,
1927                 actor.org_unit_type aout
1928         WHERE
1929                 pgt.name = 'Local Administrator' AND
1930                 aout.name = 'Branch' AND
1931                 perm.code IN (
1932                         'EVERYTHING');
1933
1934
1935 -- Add administration permissions to the System Administrator group
1936
1937 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1938         SELECT
1939                 pgt.id, perm.id, aout.depth, TRUE
1940         FROM
1941                 permission.grp_tree pgt,
1942                 permission.perm_list perm,
1943                 actor.org_unit_type aout
1944         WHERE
1945                 pgt.name = 'System Administrator' AND
1946                 aout.name = 'System' AND
1947                 perm.code IN (
1948                         'EVERYTHING');
1949
1950 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1951         SELECT
1952                 pgt.id, perm.id, aout.depth, FALSE
1953         FROM
1954                 permission.grp_tree pgt,
1955                 permission.perm_list perm,
1956                 actor.org_unit_type aout
1957         WHERE
1958                 pgt.name = 'System Administrator' AND
1959                 aout.name = 'Consortium' AND
1960                 perm.code ~ '^VIEW_TRIGGER';
1961
1962
1963 -- Add administration permissions to the Global Administrator group
1964
1965 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1966         SELECT
1967                 pgt.id, perm.id, aout.depth, TRUE
1968         FROM
1969                 permission.grp_tree pgt,
1970                 permission.perm_list perm,
1971                 actor.org_unit_type aout
1972         WHERE
1973                 pgt.name = 'Global Administrator' AND
1974                 aout.name = 'Consortium' AND
1975                 perm.code IN (
1976                         'EVERYTHING');
1977
1978
1979 -- Add basic acquisitions permissions to the Acquisitions group
1980
1981 SELECT SETVAL('permission.grp_perm_map_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_perm_map));
1982
1983 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1984         SELECT
1985                 pgt.id, perm.id, aout.depth, FALSE
1986         FROM
1987                 permission.grp_tree pgt,
1988                 permission.perm_list perm,
1989                 actor.org_unit_type aout
1990         WHERE
1991                 pgt.name = 'Acquisitions' AND
1992                 aout.name = 'Consortium' AND
1993                 perm.code IN (
1994                         'ALLOW_ALT_TCN',
1995                         'CREATE_BIB_IMPORT_QUEUE',
1996                         'CREATE_IMPORT_ITEM',
1997                         'CREATE_INVOICE',
1998                         'CREATE_MARC',
1999                         'CREATE_PICKLIST',
2000                         'CREATE_PURCHASE_ORDER',
2001                         'DELETE_BIB_IMPORT_QUEUE',
2002                         'DELETE_IMPORT_ITEM',
2003                         'DELETE_RECORD',
2004                         'DELETE_VOLUME',
2005                         'DELETE_VOLUME_NOTE',
2006                         'GENERAL_ACQ',
2007                         'IMPORT_ACQ_LINEITEM_BIB_RECORD',
2008                         'IMPORT_MARC',
2009                         'MANAGE_CLAIM',
2010                         'MANAGE_FUND',
2011                         'MANAGE_FUNDING_SOURCE',
2012                         'MANAGE_PROVIDER',
2013                         'MARK_ITEM_AVAILABLE',
2014                         'MARK_ITEM_BINDERY',
2015                         'MARK_ITEM_CHECKED_OUT',
2016                         'MARK_ITEM_ILL',
2017                         'MARK_ITEM_IN_PROCESS',
2018                         'MARK_ITEM_IN_TRANSIT',
2019                         'MARK_ITEM_LOST',
2020                         'MARK_ITEM_MISSING',
2021                         'MARK_ITEM_ON_HOLDS_SHELF',
2022                         'MARK_ITEM_ON_ORDER',
2023                         'MARK_ITEM_RESHELVING',
2024                         'RECEIVE_PURCHASE_ORDER',
2025                         'UPDATE_BATCH_COPY',
2026                         'UPDATE_BIB_IMPORT_QUEUE',
2027                         'UPDATE_COPY',
2028                         'UPDATE_FUND',
2029                         'UPDATE_FUND_ALLOCATION',
2030                         'UPDATE_FUNDING_SOURCE',
2031                         'UPDATE_IMPORT_ITEM',
2032                         'UPDATE_MARC',
2033                         'UPDATE_RECORD',
2034                         'UPDATE_VOLUME',
2035                         'user_request.delete',
2036                         'user_request.update',
2037                         'user_request.view',
2038                         'VIEW_ACQ_FUND_ALLOCATION_PERCENT',
2039                         'VIEW_ACQ_FUNDING_SOURCE',
2040                         'VIEW_FUND',
2041                         'VIEW_FUND_ALLOCATION',
2042                         'VIEW_FUNDING_SOURCE',
2043                         'VIEW_HOLDS',
2044                         'VIEW_INVOICE',
2045                         'VIEW_ORG_SETTINGS',
2046                         'VIEW_PICKLIST',
2047                         'VIEW_PROVIDER',
2048                         'VIEW_PURCHASE_ORDER',
2049                         'VIEW_REPORT_OUTPUT');
2050
2051
2052 -- Add acquisitions administration permissions to the Acquisitions Admin group
2053
2054 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2055         SELECT
2056                 pgt.id, perm.id, aout.depth, TRUE
2057         FROM
2058                 permission.grp_tree pgt,
2059                 permission.perm_list perm,
2060                 actor.org_unit_type aout
2061         WHERE
2062                 pgt.name = 'Acquisitions Administrator' AND
2063                 aout.name = 'Consortium' AND
2064                 perm.code IN (
2065                         'ACQ_XFER_MANUAL_DFUND_AMOUNT',
2066                         'ADMIN_ACQ_CANCEL_CAUSE',
2067                         'ADMIN_ACQ_CLAIM',
2068                         'ADMIN_ACQ_CLAIM_EVENT_TYPE',
2069                         'ADMIN_ACQ_CLAIM_TYPE',
2070                         'ADMIN_ACQ_DISTRIB_FORMULA',
2071                         'ADMIN_ACQ_FISCAL_YEAR',
2072                         'ADMIN_ACQ_FUND',
2073                         'ADMIN_ACQ_FUND_ALLOCATION_PERCENT',
2074                         'ADMIN_ACQ_FUND_TAG',
2075                         'ADMIN_ACQ_LINE_ITEM_ALERT_TEXT',
2076                         'ADMIN_CLAIM_POLICY',
2077                         'ADMIN_CURRENCY_TYPE',
2078                         'ADMIN_FUND',
2079                         'ADMIN_FUNDING_SOURCE',
2080                         'ADMIN_INVOICE',
2081                         'ADMIN_INVOICE_METHOD',
2082                         'ADMIN_INVOICE_PAYMENT_METHOD',
2083                         'ADMIN_LINEITEM_MARC_ATTR_DEF',
2084                         'ADMIN_PROVIDER',
2085                         'ADMIN_USER_REQUEST_TYPE',
2086                         'CREATE_ACQ_FUNDING_SOURCE',
2087                         'CREATE_FUND',
2088                         'CREATE_FUND_ALLOCATION',
2089                         'CREATE_FUNDING_SOURCE',
2090                         'CREATE_INVOICE_ITEM_TYPE',
2091                         'CREATE_INVOICE_METHOD',
2092                         'CREATE_PROVIDER',
2093                         'DELETE_ACQ_FUNDING_SOURCE',
2094                         'DELETE_FUND',
2095                         'DELETE_FUND_ALLOCATION',
2096                         'DELETE_FUNDING_SOURCE',
2097                         'DELETE_INVOICE_ITEM_TYPE',
2098                         'DELETE_INVOICE_METHOD',
2099                         'DELETE_PROVIDER',
2100                         'RUN_REPORTS',
2101                         'SHARE_REPORT_FOLDER',
2102                         'UPDATE_ACQ_FUNDING_SOURCE',
2103                         'UPDATE_INVOICE_ITEM_TYPE',
2104                         'UPDATE_INVOICE_METHOD');
2105
2106
2107 -- Add serials permissions to the Serials group
2108
2109 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2110         SELECT
2111                 pgt.id, perm.id, aout.depth, FALSE
2112         FROM
2113                 permission.grp_tree pgt,
2114                 permission.perm_list perm,
2115                 actor.org_unit_type aout
2116         WHERE
2117                 pgt.name = 'Serials' AND
2118                 aout.name = 'System' AND
2119                 perm.code IN (
2120                         'ADMIN_ASSET_COPY_TEMPLATE',
2121                         'ADMIN_SERIAL_CAPTION_PATTERN',
2122                         'ADMIN_SERIAL_DISTRIBUTION',
2123                         'ADMIN_SERIAL_STREAM',
2124                         'ADMIN_SERIAL_SUBSCRIPTION',
2125                         'ISSUANCE_HOLDS',
2126                         'RECEIVE_SERIAL');
2127
2128
2129 -- Add basic staff permissions to the Volunteers group
2130
2131 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2132         SELECT
2133                 pgt.id, perm.id, aout.depth, FALSE
2134         FROM
2135                 permission.grp_tree pgt,
2136                 permission.perm_list perm,
2137                 actor.org_unit_type aout
2138         WHERE
2139                 pgt.name = 'Volunteers' AND
2140                 aout.name = 'Branch' AND
2141                 perm.code IN (
2142                         'COPY_CHECKOUT',
2143                         'CREATE_BILL',
2144                         'CREATE_IN_HOUSE_USE',
2145                         'CREATE_PAYMENT',
2146                         'VIEW_BILLING_TYPE',
2147                         'VIEW_CIRCS',
2148                         'VIEW_COPY_CHECKOUT',
2149                         'VIEW_HOLD',
2150                         'VIEW_TITLE_HOLDS',
2151                         'VIEW_TRANSACTION',
2152                         'VIEW_USER',
2153                         'VIEW_USER_FINES_SUMMARY',
2154                         'VIEW_USER_TRANSACTIONS');
2155
2156 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2157         SELECT
2158                 pgt.id, perm.id, aout.depth, FALSE
2159         FROM
2160                 permission.grp_tree pgt,
2161                 permission.perm_list perm,
2162                 actor.org_unit_type aout
2163         WHERE
2164                 pgt.name = 'Volunteers' AND
2165                 aout.name = 'Consortium' AND
2166                 perm.code IN (
2167                         'CREATE_COPY_TRANSIT',
2168                         'CREATE_TRANSACTION',
2169                         'CREATE_TRANSIT',
2170                         'STAFF_LOGIN',
2171                         'TRANSIT_COPY',
2172                         'VIEW_ORG_SETTINGS');
2173
2174
2175 -- Admin user account
2176 INSERT INTO actor.usr ( profile, card, usrname, passwd, first_given_name, family_name, dob, master_account, super_user, ident_type, ident_value, home_ou ) VALUES ( 1, 1, md5(random()::text), md5(random()::text), 'Administrator', 'System Account', '1979-01-22', TRUE, TRUE, 1, 'identification', 1 );
2177
2178 -- Admin user barcode
2179 INSERT INTO actor.card (usr, barcode) VALUES (1,md5(random()::text));
2180 UPDATE actor.usr SET card = (SELECT currval('actor.card_id_seq')) WHERE id = 1;
2181
2182 -- Admin user permissions
2183 INSERT INTO permission.usr_perm_map (usr,perm,depth) VALUES (1,-1,0);
2184
2185 -- Set a work_ou for the Administrator user
2186 INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (1, 1);
2187
2188 --010.schema.biblio.sql:
2189 INSERT INTO biblio.record_entry VALUES (-1,1,1,1,-1,NOW(),NOW(),FALSE,FALSE,'','AUTOGEN','-1','<record xmlns="http://www.loc.gov/MARC21/slim"/>','FOO');
2190
2191 --040.schema.asset.sql:
2192 INSERT INTO asset.copy_location (id, name,owning_lib) VALUES (1, oils_i18n_gettext(1, 'Stacks', 'acpl', 'name'),1);
2193 SELECT SETVAL('asset.copy_location_id_seq'::TEXT, 100);
2194
2195 INSERT INTO asset.call_number_suffix (id, owning_lib, label) VALUES (-1, 1, '');
2196 INSERT INTO asset.call_number_prefix (id, owning_lib, label) VALUES (-1, 1, '');
2197 INSERT INTO asset.call_number VALUES (-1,1,NOW(),1,NOW(),-1,1,'UNCATALOGED');
2198
2199 -- circ matrix
2200 INSERT INTO config.circ_matrix_matchpoint (org_unit,grp,circulate,duration_rule,recurring_fine_rule,max_fine_rule) VALUES (1,1,true,11,1,1);
2201
2202 INSERT INTO config.circ_matrix_weights(name, org_unit, grp, circ_modifier, marc_type, marc_form, marc_bib_level, marc_vr_format, copy_circ_lib, copy_owning_lib, user_home_ou, ref_flag, juvenile_flag, is_renewal, usr_age_upper_bound, usr_age_lower_bound) VALUES 
2203     ('Default', 10.0, 11.0, 5.0, 4.0, 3.0, 2.0, 2.0, 8.0, 8.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0),
2204     ('Org_Unit_First', 11.0, 10.0, 5.0, 4.0, 3.0, 2.0, 2.0, 8.0, 8.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0),
2205     ('Item_Owner_First', 8.0, 8.0, 5.0, 4.0, 3.0, 2.0, 2.0, 10.0, 11.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0),
2206     ('All_Equal', 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
2207
2208 -- hold matrix - 110.hold_matrix.sql:
2209 INSERT INTO config.hold_matrix_matchpoint (requestor_grp) VALUES (1);
2210
2211 INSERT INTO config.hold_matrix_weights(name, user_home_ou, request_ou, pickup_ou, item_owning_ou, item_circ_ou, usr_grp, requestor_grp, circ_modifier, marc_type, marc_form, marc_bib_level, marc_vr_format, juvenile_flag, ref_flag) VALUES
2212     ('Default', 5.0, 5.0, 5.0, 5.0, 5.0, 7.0, 8.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0),
2213     ('Item_Owner_First', 5.0, 5.0, 5.0, 8.0, 7.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0),
2214     ('User_Before_Requestor', 5.0, 5.0, 5.0, 5.0, 5.0, 8.0, 7.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0),
2215     ('All_Equal', 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
2216
2217 -- dynamic weight associations
2218 INSERT INTO config.weight_assoc(active, org_unit, circ_weights, hold_weights) VALUES
2219     (true, 1, 1, 1);
2220
2221 -- User setting types
2222 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2223     VALUES ('opac.default_font', TRUE, 'OPAC Font Size', 'OPAC Font Size', 'string');
2224
2225 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2226     VALUES ('opac.default_search_depth', TRUE, 'OPAC Search Depth', 'OPAC Search Depth', 'integer');
2227
2228 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2229     VALUES ('opac.default_search_location', TRUE, 'OPAC Search Location', 'OPAC Search Location', 'integer');
2230
2231 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2232     VALUES ('opac.hits_per_page', TRUE, 'Hits per Page', 'Hits per Page', 'string');
2233
2234 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2235     VALUES ('opac.hold_notify', TRUE, 'Hold Notification Format', 'Hold Notification Format', 'string');
2236
2237 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2238     VALUES ('staff_client.catalog.record_view.default', TRUE, 'Default Record View', 'Default Record View', 'string');
2239
2240 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2241     VALUES ('staff_client.copy_editor.templates', TRUE, 'Copy Editor Template', 'Copy Editor Template', 'object');
2242
2243 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2244     VALUES ('circ.holds_behind_desk', FALSE, 'Hold is behind Circ Desk', 'Hold is behind Circ Desk', 'bool');
2245
2246
2247 -- org_unit setting types
2248 INSERT into config.org_unit_setting_type
2249 ( name, label, description, datatype ) VALUES
2250
2251 ( 'auth.opac_timeout',
2252     oils_i18n_gettext('auth.opac_timeout', 'OPAC Inactivity Timeout (in seconds)', 'coust', 'label'),
2253     oils_i18n_gettext('auth.opac_timeout', 'OPAC Inactivity Timeout (in seconds)', 'coust', 'description'),
2254     'integer'),
2255
2256 ( 'auth.staff_timeout',
2257     oils_i18n_gettext('auth.staff_timeout', 'Staff Login Inactivity Timeout (in seconds)', 'coust', 'label'),
2258     oils_i18n_gettext('auth.staff_timeout', 'Staff Login Inactivity Timeout (in seconds)', 'coust', 'description'),
2259     'integer'),
2260
2261 ( 'circ.lost_materials_processing_fee',
2262     oils_i18n_gettext('circ.lost_materials_processing_fee', 'Lost Materials Processing Fee', 'coust', 'label'),
2263     oils_i18n_gettext('circ.lost_materials_processing_fee', 'Lost Materials Processing Fee', 'coust', 'description'),
2264     'currency'),
2265
2266 ( 'cat.default_item_price',
2267     oils_i18n_gettext('cat.default_item_price', 'Default Item Price', 'coust', 'label'),
2268     oils_i18n_gettext('cat.default_item_price', 'Default Item Price', 'coust', 'description'),
2269     'currency'),
2270
2271 ( 'org.bounced_emails',
2272     oils_i18n_gettext('org.bounced_emails', 'Sending email address for patron notices', 'coust', 'label'),
2273     oils_i18n_gettext('org.bounced_emails', 'Sending email address for patron notices', 'coust', 'description'),
2274     'string'),
2275
2276 ( 'circ.hold_expire_alert_interval',
2277     oils_i18n_gettext('circ.hold_expire_alert_interval', 'Holds: Expire Alert Interval', 'coust', 'label'),
2278     oils_i18n_gettext('circ.hold_expire_alert_interval', 'Amount of time before a hold expires at which point the patron should be alerted. Examples: "5 days", "1 hour"', 'coust', 'description'),
2279     'interval'),
2280
2281 ( 'circ.hold_expire_interval',
2282     oils_i18n_gettext('circ.hold_expire_interval', 'Holds: Expire Interval', 'coust', 'label'),
2283     oils_i18n_gettext('circ.hold_expire_interval', 'Amount of time after a hold is placed before the hold expires.  Example "100 days"', 'coust', 'description'),
2284     'interval'),
2285
2286 ( 'credit.payments.allow',
2287     oils_i18n_gettext('credit.payments.allow', 'Allow Credit Card Payments', 'coust', 'label'),
2288     oils_i18n_gettext('credit.payments.allow', 'If enabled, patrons will be able to pay fines accrued at this location via credit card', 'coust', 'description'),
2289     'bool'),
2290
2291 ( 'global.default_locale',
2292     oils_i18n_gettext('global.default_locale', 'Global Default Locale', 'coust', 'label'),
2293     oils_i18n_gettext('global.default_locale', 'Global Default Locale', 'coust', 'description'),
2294     'string'),
2295
2296 ( 'circ.void_overdue_on_lost',
2297     oils_i18n_gettext('circ.void_overdue_on_lost', 'Void overdue fines when items are marked lost', 'coust', 'label'),
2298     oils_i18n_gettext('circ.void_overdue_on_lost', 'Void overdue fines when items are marked lost', 'coust', 'description'),
2299     'bool'),
2300
2301 ( 'circ.hold_stalling.soft',
2302     oils_i18n_gettext('circ.hold_stalling.soft', 'Holds: Soft stalling interval', 'coust', 'label'),
2303     oils_i18n_gettext('circ.hold_stalling.soft', 'How long to wait before allowing remote items to be opportunistically captured for a hold.  Example "5 days"', 'coust', 'description'),
2304     'interval'),
2305
2306 ( 'circ.hold_stalling_hard',
2307     oils_i18n_gettext('circ.hold_stalling_hard', 'Holds: Hard stalling interval', 'coust', 'label'),
2308     oils_i18n_gettext('circ.hold_stalling_hard', 'Holds: Hard stalling interval', 'coust', 'description'),
2309     'interval'),
2310
2311 ( 'circ.hold_boundary.hard',
2312     oils_i18n_gettext('circ.hold_boundary.hard', 'Holds: Hard boundary', 'coust', 'label'),
2313     oils_i18n_gettext('circ.hold_boundary.hard', 'Holds: Hard boundary', 'coust', 'description'),
2314     'integer'),
2315
2316 ( 'circ.hold_boundary.soft',
2317     oils_i18n_gettext('circ.hold_boundary.soft', 'Holds: Soft boundary', 'coust', 'label'),
2318     oils_i18n_gettext('circ.hold_boundary.soft', 'Holds: Soft boundary', 'coust', 'description'),
2319     'integer'),
2320
2321 ( 'opac.barcode_regex',
2322     oils_i18n_gettext('opac.barcode_regex', 'Patron barcode format', 'coust', 'label'),
2323     oils_i18n_gettext('opac.barcode_regex', 'Regular expression defining the patron barcode format', 'coust', 'description'),
2324     'string'),
2325
2326 ( 'global.password_regex',
2327     oils_i18n_gettext('global.password_regex', 'Password format', 'coust', 'label'),
2328     oils_i18n_gettext('global.password_regex', 'Regular expression defining the password format', 'coust', 'description'),
2329     'string'),
2330
2331 ( 'circ.item_checkout_history.max',
2332     oils_i18n_gettext('circ.item_checkout_history.max', 'Maximum previous checkouts displayed', 'coust', 'label'),
2333     oils_i18n_gettext('circ.item_checkout_history.max', 'This is the maximum number of previous circulations the staff client will display when investigating item details', 'coust', 'description'),
2334     'integer'),
2335
2336 ( 'circ.reshelving_complete.interval',
2337     oils_i18n_gettext('circ.reshelving_complete.interval', 'Change reshelving status interval', 'coust', 'label'),
2338     oils_i18n_gettext('circ.reshelving_complete.interval', 'Amount of time to wait before changing an item from "reshelving" status to "available".  Examples: "1 day", "6 hours"', 'coust', 'description'),
2339     'interval'),
2340
2341 ( 'circ.holds.default_estimated_wait_interval',
2342     oils_i18n_gettext('circ.holds.default_estimated_wait_interval', 'Holds: Default Estimated Wait', 'coust', 'label'),
2343     oils_i18n_gettext('circ.holds.default_estimated_wait_interval', 'When predicting the amount of time a patron will be waiting for a hold to be fulfilled, this is the default estimated length of time to assume an item will be checked out. Examples: "3 weeks", "7 days"', 'coust', 'description'),
2344     'interval'),
2345
2346 ( 'circ.holds.min_estimated_wait_interval',
2347     oils_i18n_gettext('circ.holds.min_estimated_wait_interval', 'Holds: Minimum Estimated Wait', 'coust', 'label'),
2348     oils_i18n_gettext('circ.holds.min_estimated_wait_interval', 'When predicting the amount of time a patron will be waiting for a hold to be fulfilled, this is the minimum estimated length of time to assume an item will be checked out. Examples: "2 weeks", "5 days"', 'coust', 'description'),
2349     'interval'),
2350
2351 ( 'circ.selfcheck.patron_login_timeout',
2352     oils_i18n_gettext('circ.selfcheck.patron_login_timeout', 'Selfcheck: Patron Login Timeout (in seconds)', 'coust', 'label'),
2353     oils_i18n_gettext('circ.selfcheck.patron_login_timeout', 'Number of seconds of inactivity before the patron is logged out of the selfcheck interface', 'coust', 'description'),
2354     'integer'),
2355
2356 ( 'circ.selfcheck.alert.popup',
2357     oils_i18n_gettext('circ.selfcheck.alert.popup', 'Selfcheck: Pop-up alert for errors', 'coust', 'label'),
2358     oils_i18n_gettext('circ.selfcheck.alert.popup', 'If true, checkout/renewal errors will cause a pop-up window in addition to the on-screen message', 'coust', 'description'),
2359     'bool'),
2360
2361 ( 'circ.selfcheck.require_patron_password',
2362     oils_i18n_gettext('circ.selfcheck.require_patron_password', 'Selfcheck: Require patron password', 'coust', 'label'),
2363     oils_i18n_gettext('circ.selfcheck.require_patron_password', 'If true, patrons will be required to enter their password in addition to their username/barcode to log into the selfcheck interface', 'coust', 'description'),
2364     'bool'),
2365
2366 ( 'global.juvenile_age_threshold',
2367     oils_i18n_gettext('global.juvenile_age_threshold', 'Juvenile Age Threshold', 'coust', 'label'),
2368     oils_i18n_gettext('global.juvenile_age_threshold', 'The age at which a user is no long considered a juvenile.  For example, "18 years".', 'coust', 'description'),
2369     'interval'),
2370
2371 ( 'cat.bib.keep_on_empty',
2372     oils_i18n_gettext('cat.bib.keep_on_empty', 'Retain empty bib records', 'coust', 'label'),
2373     oils_i18n_gettext('cat.bib.keep_on_empty', 'Retain a bib record even when all attached copies are deleted', 'coust', 'description'),
2374     'bool'),
2375
2376 ( 'cat.bib.alert_on_empty',
2377     oils_i18n_gettext('cat.bib.alert_on_empty', 'Alert on empty bib records', 'coust', 'label'),
2378     oils_i18n_gettext('cat.bib.alert_on_empty', 'Alert staff when the last copy for a record is being deleted', 'coust', 'description'),
2379     'bool'),
2380
2381 ( 'patron.password.use_phone',
2382     oils_i18n_gettext('patron.password.use_phone', 'Patron: password from phone #', 'coust', 'label'),
2383     oils_i18n_gettext('patron.password.use_phone', 'Use the last 4 digits of the patrons phone number as the default password when creating new users', 'coust', 'description'),
2384     'bool'),
2385
2386 ( 'circ.charge_on_damaged',
2387     oils_i18n_gettext('circ.charge_on_damaged', 'Charge item price when marked damaged', 'coust', 'label'),
2388     oils_i18n_gettext('circ.charge_on_damaged', 'Charge item price when marked damaged', 'coust', 'description'),
2389     'bool'),
2390
2391 ( 'circ.charge_lost_on_zero',
2392     oils_i18n_gettext('circ.charge_lost_on_zero', 'Charge lost on zero', 'coust', 'label'),
2393     oils_i18n_gettext('circ.charge_lost_on_zero', 'Charge lost on zero', 'coust', 'description'),
2394     'bool'),
2395
2396 ( 'circ.damaged_item_processing_fee',
2397     oils_i18n_gettext('circ.damaged_item_processing_fee', 'Charge processing fee for damaged items', 'coust', 'label'),
2398     oils_i18n_gettext('circ.damaged_item_processing_fee', 'Charge processing fee for damaged items', 'coust', 'description'),
2399     'currency'),
2400
2401 ( 'circ.void_lost_on_checkin',
2402     oils_i18n_gettext('circ.void_lost_on_checkin', 'Circ: Void lost item billing when returned', 'coust', 'label'),
2403     oils_i18n_gettext('circ.void_lost_on_checkin', 'Void lost item billing when returned', 'coust', 'description'),
2404     'bool'),
2405
2406 ( 'circ.max_accept_return_of_lost',
2407     oils_i18n_gettext('circ.max_accept_return_of_lost', 'Circ: Void lost max interval', 'coust', 'label'),
2408     oils_i18n_gettext('circ.max_accept_return_of_lost', 'Items that have been lost this long will not result in voided billings when returned.  E.g. ''6 months''', 'coust', 'description'),
2409     'interval'),
2410
2411 ( 'circ.void_lost_proc_fee_on_checkin',
2412     oils_i18n_gettext('circ.void_lost_proc_fee_on_checkin', 'Circ: Void processing fee on lost item return', 'coust', 'label'),
2413     oils_i18n_gettext('circ.void_lost_proc_fee_on_checkin', 'Void processing fee when lost item returned', 'coust', 'description'),
2414     'bool'),
2415
2416 ( 'circ.restore_overdue_on_lost_return',
2417     oils_i18n_gettext('circ.restore_overdue_on_lost_return', 'Circ: Restore overdues on lost item return', 'coust', 'label'),
2418     oils_i18n_gettext('circ.restore_overdue_on_lost_return', 'Restore overdue fines on lost item return', 'coust', 'description'),
2419     'bool'),
2420
2421 ( 'circ.lost_immediately_available',
2422     oils_i18n_gettext('circ.lost_immediately_available', 'Circ: Lost items usable on checkin', 'coust', 'label'),
2423     oils_i18n_gettext('circ.lost_immediately_available', 'Lost items are usable on checkin instead of going ''home'' first', 'coust', 'description'),
2424     'bool'),
2425
2426 ( 'circ.holds_fifo',
2427     oils_i18n_gettext('circ.holds_fifo', 'Holds: FIFO', 'coust', 'label'),
2428     oils_i18n_gettext('circ.holds_fifo', 'Force holds to a more strict First-In, First-Out capture', 'coust', 'description'),
2429     'bool'),
2430
2431 ( 'opac.allow_pending_address',
2432     oils_i18n_gettext('opac.allow_pending_address', 'OPAC: Allow pending addresses', 'coust', 'label'),
2433     oils_i18n_gettext('opac.allow_pending_address', 'If enabled, patrons can create and edit existing addresses.  Addresses are kept in a pending state until staff approves the changes', 'coust', 'description'),
2434     'bool'),
2435
2436 ( 'ui.circ.show_billing_tab_on_bills',
2437     oils_i18n_gettext('ui.circ.show_billing_tab_on_bills', 'Show billing tab first when bills are present', 'coust', 'label'),
2438     oils_i18n_gettext('ui.circ.show_billing_tab_on_bills', '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', 'coust', 'description'),
2439     'bool'),
2440
2441 ( 'ui.general.idle_timeout',
2442     oils_i18n_gettext('ui.general.idle_timeout', 'GUI: Idle timeout', 'coust', 'label'),
2443     oils_i18n_gettext('ui.general.idle_timeout', 'If you want staff client windows to be minimized after a certain amount of system idle time, set this to the number of seconds of idle time that you want to allow before minimizing (requires staff client restart).', 'coust', 'description'),
2444     'integer'),
2445
2446 ( 'ui.circ.in_house_use.entry_cap',
2447     oils_i18n_gettext('ui.circ.in_house_use.entry_cap', 'GUI: Record In-House Use: Maximum # of uses allowed per entry.', 'coust', 'label'),
2448     oils_i18n_gettext('ui.circ.in_house_use.entry_cap', 'The # of uses entry in the Record In-House Use interface may not exceed the value of this setting.', 'coust', 'description'),
2449     'integer'),
2450
2451 ( 'ui.circ.in_house_use.entry_warn',
2452     oils_i18n_gettext('ui.circ.in_house_use.entry_warn', 'GUI: Record In-House Use: # of uses threshold for Are You Sure? dialog.', 'coust', 'label'),
2453     oils_i18n_gettext('ui.circ.in_house_use.entry_warn', 'In the Record In-House Use interface, a submission attempt will warn if the # of uses field exceeds the value of this setting.', 'coust', 'description'),
2454     'integer'),
2455
2456 ( 'acq.default_circ_modifier',
2457     oils_i18n_gettext('acq.default_circ_modifier', 'Default circulation modifier', 'coust', 'label'),
2458     oils_i18n_gettext('acq.default_circ_modifier', 'Default circulation modifier', 'coust', 'description'),
2459     'string'),
2460
2461 ( 'acq.tmp_barcode_prefix',
2462     oils_i18n_gettext('acq.tmp_barcode_prefix', 'Temporary barcode prefix', 'coust', 'label'),
2463     oils_i18n_gettext('acq.tmp_barcode_prefix', 'Temporary barcode prefix', 'coust', 'description'),
2464     'string'),
2465
2466 ( 'acq.tmp_callnumber_prefix',
2467     oils_i18n_gettext('acq.tmp_callnumber_prefix', 'Temporary call number prefix', 'coust', 'label'),
2468     oils_i18n_gettext('acq.tmp_callnumber_prefix', 'Temporary call number prefix', 'coust', 'description'),
2469     'string'),
2470
2471 ( 'ui.circ.patron_summary.horizontal',
2472     oils_i18n_gettext('ui.circ.patron_summary.horizontal', 'Patron circulation summary is horizontal', 'coust', 'label'),
2473     oils_i18n_gettext('ui.circ.patron_summary.horizontal', 'Patron circulation summary is horizontal', 'coust', 'description'),
2474     'bool'),
2475
2476 ( 'ui.staff.require_initials',
2477   oils_i18n_gettext('ui.staff.require_initials', 'GUI: Require staff initials for entry/edit of item/patron/penalty notes/messages.', 'coust', 'label'),
2478   oils_i18n_gettext('ui.staff.require_initials', 'Appends staff initials and edit date into note content.', 'coust', 'description'),
2479     'bool'),
2480
2481 ( 'ui.general.button_bar',
2482     oils_i18n_gettext('ui.general.button_bar', 'GUI: Button bar', 'coust', 'label'),
2483     oils_i18n_gettext('ui.general.button_bar', 'Set to "circ" or "cat" for stock circulator or cataloger toolbar, respectively.', 'coust', 'description'),
2484     'string'),
2485
2486 ( 'ui.general.hotkeyset',
2487     oils_i18n_gettext('ui.general.hotkeyset', 'GUI: Default Hotkeyset', 'coust', 'label'),
2488     oils_i18n_gettext('ui.general.hotkeyset', 'Default Hotkeyset for clients (filename without the .keyset).  Examples: Default, Minimal, and None', 'coust', 'description'),
2489     'string'),
2490
2491 ( 'circ.hold_shelf_status_delay',
2492     oils_i18n_gettext('circ.hold_shelf_status_delay', 'Hold Shelf Status Delay', 'coust', 'label'),
2493     oils_i18n_gettext('circ.hold_shelf_status_delay', 'The purpose is to provide an interval of time after an item goes into the on-holds-shelf status before it appears to patrons that it is actually on the holds shelf.  This gives staff time to process the item before it shows as ready-for-pickup. Examples: "5 days", "1 hour"', 'coust', 'description'),
2494     'interval'),
2495
2496 ( 'circ.patron_invalid_address_apply_penalty',
2497     oils_i18n_gettext('circ.patron_invalid_address_apply_penalty', 'Invalid patron address penalty', 'coust', 'label'),
2498     oils_i18n_gettext('circ.patron_invalid_address_apply_penalty', 'When set, if a patron address is set to invalid, a penalty is applied.', 'coust', 'description'),
2499     'bool'),
2500
2501 ( 'circ.checkout_fills_related_hold',
2502     oils_i18n_gettext('circ.checkout_fills_related_hold', 'Checkout Fills Related Hold', 'coust', 'label'),
2503     oils_i18n_gettext('circ.checkout_fills_related_hold', 'When a patron checks out an item and they have no holds that directly target the item, the system will attempt to find a hold for the patron that could be fulfilled by the checked out item and fulfills it', 'coust', 'description'),
2504     'bool'),
2505
2506 ( 'circ.selfcheck.auto_override_checkout_events',
2507     oils_i18n_gettext('circ.selfcheck.auto_override_checkout_events', 'Selfcheck override events list', 'coust', 'label'),
2508     oils_i18n_gettext('circ.selfcheck.auto_override_checkout_events', 'List of checkout/renewal events that the selfcheck interface should automatically override instead instead of alerting and stopping the transaction', 'coust', 'description'),
2509     'array'),
2510
2511 ( 'circ.staff_client.do_not_auto_attempt_print',
2512     oils_i18n_gettext('circ.staff_client.do_not_auto_attempt_print', 'Disable Automatic Print Attempt Type List', 'coust', 'label'),
2513     oils_i18n_gettext('circ.staff_client.do_not_auto_attempt_print', 'Disable automatic print attempts from staff client interfaces for the receipt types in this list.  Possible values: "Checkout", "Bill Pay", "Hold Slip", "Transit Slip", and "Hold/Transit Slip".  This is different from the Auto-Print checkbox in the pertinent interfaces in that it disables automatic print attempts altogether, rather than encouraging silent printing by suppressing the print dialog.  The Auto-Print checkbox in these interfaces have no effect on the behavior for this setting.  In the case of the Hold, Transit, and Hold/Transit slips, this also suppresses the alert dialogs that precede the print dialog (the ones that offer Print and Do Not Print as options).', 'coust', 'description'),
2514     'array'),
2515
2516 ( 'ui.patron.default_inet_access_level',
2517     oils_i18n_gettext('ui.patron.default_inet_access_level', 'Default level of patrons'' internet access', 'coust', 'label'),
2518     oils_i18n_gettext('ui.patron.default_inet_access_level', 'Default level of patrons'' internet access', 'coust', 'description'),
2519     'integer'),
2520
2521 ( 'circ.max_patron_claim_return_count',
2522     oils_i18n_gettext('circ.max_patron_claim_return_count', 'Max Patron Claims Returned Count', 'coust', 'label'),
2523     oils_i18n_gettext('circ.max_patron_claim_return_count', 'When this count is exceeded, a staff override is required to mark the item as claims returned', 'coust', 'description'),
2524     'integer'),
2525
2526 ( 'circ.obscure_dob',
2527     oils_i18n_gettext('circ.obscure_dob', 'Obscure the Date of Birth field', 'coust', 'label'),
2528     oils_i18n_gettext('circ.obscure_dob', 'When true, the Date of Birth column in patron lists will default to Not Visible, and in the Patron Summary sidebar the value will display as <Hidden> unless the field label is clicked.', 'coust', 'description'),
2529     'bool'),
2530
2531 ( 'circ.auto_hide_patron_summary',
2532     oils_i18n_gettext('circ.auto_hide_patron_summary', 'GUI: Toggle off the patron summary sidebar after first view.', 'coust', 'label'),
2533     oils_i18n_gettext('circ.auto_hide_patron_summary', 'When true, the patron summary sidebar will collapse after a new patron sub-interface is selected.', 'coust', 'description'),
2534     'bool'),
2535
2536 ( 'credit.processor.default',
2537     oils_i18n_gettext('credit.processor.default', 'Credit card processing: Name default credit processor', 'coust', 'label'),
2538     oils_i18n_gettext('credit.processor.default', 'This might be "AuthorizeNet", "PayPal", etc.', 'coust', 'description'),
2539     'string'),
2540
2541 ( 'credit.processor.authorizenet.enabled',
2542     oils_i18n_gettext('credit.processor.authorizenet.enabled', 'Credit card processing: Enable AuthorizeNet payments', 'coust', 'label'),
2543     oils_i18n_gettext('credit.processor.authorizenet.enabled', 'Enable AuthorizeNet payments', 'coust', 'description'),
2544     'bool'),
2545
2546 ( 'credit.processor.authorizenet.login',
2547     oils_i18n_gettext('credit.processor.authorizenet.login', 'Credit card processing: AuthorizeNet login', 'coust', 'label'),
2548     oils_i18n_gettext('credit.processor.authorizenet.login', 'AuthorizeNet login', 'coust', 'description'),
2549     'string'),
2550
2551 ( 'credit.processor.authorizenet.password',
2552     oils_i18n_gettext('credit.processor.authorizenet.password', 'Credit card processing: AuthorizeNet password', 'coust', 'label'),
2553     oils_i18n_gettext('credit.processor.authorizenet.password', 'AuthorizeNet password', 'coust', 'description'),
2554     'string'),
2555
2556 ( 'credit.processor.authorizenet.server',
2557     oils_i18n_gettext('credit.processor.authorizenet.server', 'Credit card processing: AuthorizeNet server', 'coust', 'label'),
2558     oils_i18n_gettext('credit.processor.authorizenet.server', 'Required if using a developer/test account with AuthorizeNet', 'coust', 'description'),
2559     'string'),
2560
2561 ( 'credit.processor.authorizenet.testmode',
2562     oils_i18n_gettext('credit.processor.authorizenet.testmode', 'Credit card processing: AuthorizeNet test mode', 'coust', 'label'),
2563     oils_i18n_gettext('credit.processor.authorizenet.testmode', 'AuthorizeNet test mode', 'coust', 'description'),
2564     'bool'),
2565
2566 ( 'credit.processor.paypal.enabled',
2567     oils_i18n_gettext('credit.processor.paypal.enabled', 'Credit card processing: Enable PayPal payments', 'coust', 'label'),
2568     oils_i18n_gettext('credit.processor.paypal.enabled', 'Enable PayPal payments', 'coust', 'description'),
2569     'bool'),
2570 ( 'credit.processor.paypal.login',
2571     oils_i18n_gettext('credit.processor.paypal.login', 'Credit card processing: PayPal login', 'coust', 'label'),
2572     oils_i18n_gettext('credit.processor.paypal.login', 'PayPal login', 'coust', 'description'),
2573     'string'),
2574 ( 'credit.processor.paypal.password',
2575     oils_i18n_gettext('credit.processor.paypal.password', 'Credit card processing: PayPal password', 'coust', 'label'),
2576     oils_i18n_gettext('credit.processor.paypal.password', 'PayPal password', 'coust', 'description'),
2577     'string'),
2578 ( 'credit.processor.paypal.signature',
2579     oils_i18n_gettext('credit.processor.paypal.signature', 'Credit card processing: PayPal signature', 'coust', 'label'),
2580     oils_i18n_gettext('credit.processor.paypal.signature', 'PayPal signature', 'coust', 'description'),
2581     'string'),
2582 ( 'credit.processor.paypal.testmode',
2583     oils_i18n_gettext('credit.processor.paypal.testmode', 'Credit card processing: PayPal test mode', 'coust', 'label'),
2584     oils_i18n_gettext('credit.processor.paypal.testmode', 'PayPal test mode', 'coust', 'description'),
2585     'bool'),
2586 ( 'credit.processor.payflowpro.enabled',
2587     oils_i18n_gettext('credit.processor.payflowpro.enabled', 'Credit card processing: Enable PayflowPro payments', 'coust', 'label'),
2588     oils_i18n_gettext('credit.processor.payflowpro.enabled', 'This is NOT the same thing as the settings labeled with just "PayPal."', 'coust', 'description'),
2589     'bool'),
2590 ( 'credit.processor.payflowpro.login',
2591     oils_i18n_gettext('credit.processor.payflowpro.login', 'Credit card processing: PayflowPro login/merchant ID', 'coust', 'label'),
2592     oils_i18n_gettext('credit.processor.payflowpro.login', 'Often the same thing as the PayPal manager login', 'coust', 'description'),
2593     'string'),
2594 ( 'credit.processor.payflowpro.password',
2595     oils_i18n_gettext('credit.processor.payflowpro.password', 'Credit card processing: PayflowPro password', 'coust', 'label'),
2596     oils_i18n_gettext('credit.processor.payflowpro.password', 'PayflowPro password', 'coust', 'description'),
2597     'string'),
2598 ( 'credit.processor.payflowpro.testmode',
2599     oils_i18n_gettext('credit.processor.payflowpro.testmode', 'Credit card processing: PayflowPro test mode', 'coust', 'label'),
2600     oils_i18n_gettext('credit.processor.payflowpro.testmode', 'Do not really process transactions, but stay in test mode - uses pilot-payflowpro.paypal.com instead of the usual host', 'coust', 'description'),
2601     'bool'),
2602 ( 'credit.processor.payflowpro.vendor',
2603     oils_i18n_gettext('credit.processor.payflowpro.vendor', 'Credit card processing: PayflowPro vendor', 'coust', 'label'),
2604     oils_i18n_gettext('credit.processor.payflowpro.vendor', 'Often the same thing as the login', 'coust', 'description'),
2605     'string'),
2606 ( 'credit.processor.payflowpro.partner',
2607     oils_i18n_gettext('credit.processor.payflowpro.partner', 'Credit card processing: PayflowPro partner', 'coust', 'label'),
2608     oils_i18n_gettext('credit.processor.payflowpro.partner', 'Often "PayPal" or "VeriSign", sometimes others', 'coust', 'description'),
2609     'string'),
2610
2611 ( 'ui.admin.work_log.max_entries',
2612     oils_i18n_gettext('ui.admin.work_log.max_entries', 'GUI: Work Log: Maximum Actions Logged', 'coust', 'label'),
2613     oils_i18n_gettext('ui.admin.work_log.max_entries', 'Maximum entries for "Most Recent Staff Actions" section of the Work Log interface.', 'coust', 'description'),
2614     'interval'),
2615
2616 ( 'ui.admin.patron_log.max_entries',
2617     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'GUI: Work Log: Maximum Patrons Logged', 'coust', 'label'),
2618     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'Maximum entries for "Most Recently Affected Patrons..." section of the Work Log interface.', 'coust', 'description'),
2619     'interval'),
2620
2621 ( 'lib.courier_code',
2622     oils_i18n_gettext('lib.courier_code', 'Courier Code', 'coust', 'label'),
2623     oils_i18n_gettext('lib.courier_code', 'Courier Code for the library.  Available in transit slip templates as the %courier_code% macro.', 'coust', 'description'),
2624     'string'),
2625
2626 ( 'circ.block_renews_for_holds',
2627     oils_i18n_gettext('circ.block_renews_for_holds', 'Holds: Block Renewal of Items Needed for Holds', 'coust', 'label'),
2628     oils_i18n_gettext('circ.block_renews_for_holds', 'When an item could fulfill a hold, do not allow the current patron to renew', 'coust', 'description'),
2629     'bool'),
2630
2631 ( 'circ.password_reset_request_per_user_limit',
2632     oils_i18n_gettext('circ.password_reset_request_per_user_limit', 'Circulation: Maximum concurrently active self-serve password reset requests per user', 'coust', 'label'),
2633     oils_i18n_gettext('circ.password_reset_request_per_user_limit', 'When a user has more than this number of concurrently active self-serve password reset requests for their account, prevent the user from creating any new self-serve password reset requests until the number of active requests for the user drops back below this number.', 'coust', 'description'),
2634     'string'),
2635
2636 ( 'circ.password_reset_request_time_to_live',
2637     oils_i18n_gettext('circ.password_reset_request_time_to_live', 'Circulation: Self-serve password reset request time-to-live', 'coust', 'label'),
2638     oils_i18n_gettext('circ.password_reset_request_time_to_live', 'Length of time (in seconds) a self-serve password reset request should remain active.', 'coust', 'description'),
2639     'string'),
2640
2641 ( 'circ.password_reset_request_throttle',
2642     oils_i18n_gettext('circ.password_reset_request_throttle', 'Circulation: Maximum concurrently active self-serve password reset requests', 'coust', 'label'),
2643     oils_i18n_gettext('circ.password_reset_request_throttle', 'Prevent the creation of new self-serve password reset requests until the number of active requests drops back below this number.', 'coust', 'description'),
2644     'string'),
2645
2646 ( 'opac.fully_compressed_serial_holdings',
2647     oils_i18n_gettext('opac.fully_compressed_serial_holdings', 'OPAC: Use fully compressed serial holdings', 'coust', 'label'),
2648     oils_i18n_gettext('opac.fully_compressed_serial_holdings', 'Show fully compressed serial holdings for all libraries at and below the current context unit', 'coust', 'description'),
2649     'bool')
2650 ;
2651
2652 UPDATE config.org_unit_setting_type
2653     SET view_perm = (SELECT id FROM permission.perm_list
2654         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
2655     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
2656
2657 UPDATE config.org_unit_setting_type
2658     SET update_perm = (SELECT id FROM permission.perm_list
2659         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
2660     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
2661
2662 -- 0234.data.org-setting-ui.circ.suppress_checkin_popups.sql
2663 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2664         'ui.circ.suppress_checkin_popups',
2665         oils_i18n_gettext(
2666             'ui.circ.suppress_checkin_popups', 
2667             'Circ: Suppress popup-dialogs during check-in.', 
2668             'coust', 
2669             'label'),
2670         oils_i18n_gettext(
2671             'ui.circ.suppress_checkin_popups', 
2672             'Circ: Suppress popup-dialogs during check-in.', 
2673             'coust', 
2674             'description'),
2675         'bool'
2676 );
2677
2678 -- 0239.data.org-setting-format.date.time.sql
2679 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2680         'format.date',
2681         oils_i18n_gettext(
2682             'format.date',
2683             'GUI: Format Dates with this pattern.', 
2684             'coust', 
2685             'label'),
2686         oils_i18n_gettext(
2687             'format.date',
2688             'GUI: Format Dates with this pattern (examples: "yyyy-MM-dd" for "2010-04-26", "MMM d, yyyy" for "Apr 26, 2010")', 
2689             'coust', 
2690             'description'),
2691         'string'
2692 ), (
2693         'format.time',
2694         oils_i18n_gettext(
2695             'format.time',
2696             'GUI: Format Times with this pattern.', 
2697             'coust', 
2698             'label'),
2699         oils_i18n_gettext(
2700             'format.time',
2701             'GUI: Format Times with this pattern (examples: "h:m:s.SSS a z" for "2:07:20.666 PM Eastern Daylight Time", "HH:mm" for "14:07")', 
2702             'coust', 
2703             'description'),
2704         'string'
2705 );
2706
2707 -- 0247.data.org-setting-cat.bib.delete_on_no_copy_via_acq_lineitem_cancel.sql
2708 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2709         'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
2710         oils_i18n_gettext(
2711             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
2712             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
2713             'coust', 
2714             'label'),
2715         oils_i18n_gettext(
2716             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
2717             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
2718             'coust', 
2719             'description'),
2720         'bool'
2721 );
2722
2723 -- 0250.data.org-setting-url.remote_column_settings.sql
2724 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2725         'url.remote_column_settings',
2726         oils_i18n_gettext(
2727             'url.remote_column_settings',
2728             'GUI: URL for remote directory containing list column settings.', 
2729             'coust', 
2730             'label'),
2731         oils_i18n_gettext(
2732             'url.remote_column_settings',
2733             'GUI: URL for remote directory containing list column settings.  The format and naming convention for the files found in this directory match those in the local settings directory for a given workstation.  An administrator could create the desired settings locally and then copy all the tree_columns_for_* files to the remote directory.', 
2734             'coust', 
2735             'description'),
2736         'string'
2737 );
2738 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2739         'gui.disable_local_save_columns',
2740         oils_i18n_gettext(
2741             'gui.disable_local_save_columns',
2742             'GUI: Disable the ability to save list column configurations locally.', 
2743             'coust', 
2744             'label'),
2745         oils_i18n_gettext(
2746             'gui.disable_local_save_columns',
2747             'GUI: Disable the ability to save list column configurations locally.  If set, columns may still be manipulated, however, the changes do not persist.  Also, existing local configurations are ignored if this setting is true.', 
2748             'coust', 
2749             'description'),
2750         'bool'
2751 );
2752
2753 -- 0290.data.org-setting-password-reset-request.sql
2754 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2755         'circ.password_reset_request_requires_matching_email',
2756         oils_i18n_gettext(
2757             'circ.password_reset_request_requires_matching_email',
2758             'Circulation: Require matching email address for password reset requests', 
2759             'coust', 
2760             'label'),
2761         oils_i18n_gettext(
2762             'circ.password_reset_request_requires_matching_email',
2763             'Circulation: Require matching email address for password reset requests', 
2764             'coust', 
2765             'description'),
2766         'bool'
2767 );
2768
2769 -- 0305.data.org-setting-circ.holds.expired_patron_block.sql
2770 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2771         'circ.holds.expired_patron_block',
2772         oils_i18n_gettext(
2773             'circ.holds.expired_patron_block',
2774             'Circulation: Block hold request if hold recipient privileges have expired', 
2775             'coust', 
2776             'label'),
2777         oils_i18n_gettext(
2778             'circ.holds.expired_patron_block',
2779             'Circulation: Block hold request if hold recipient privileges have expired', 
2780             'coust', 
2781             'description'),
2782         'bool'
2783 );
2784
2785 -- 0323.data.booking.elbow_room.sql
2786 INSERT INTO config.org_unit_setting_type
2787     (name, label, description, datatype) VALUES (
2788         'circ.booking_reservation.default_elbow_room',
2789         oils_i18n_gettext(
2790             'circ.booking_reservation.default_elbow_room',
2791             'Booking: Elbow room',
2792             'coust',
2793             'label'
2794         ),
2795         oils_i18n_gettext(
2796             'circ.booking_reservation.default_elbow_room',
2797             'Elbow room specifies how far in the future you must make a reservation on an item if that item will have to transit to reach its pickup location.  It secondarily defines how soon a reservation on a given item must start before the check-in process will opportunistically capture it for the reservation shelf.',
2798             'coust',
2799             'label'
2800         ),
2801         'interval'
2802     );
2803
2804 -- 0XXX.patron_registration.sql
2805 INSERT into config.org_unit_setting_type
2806 ( name, label, description, datatype ) VALUES
2807
2808 ( 'ui.patron.edit.au.active.show',
2809     oils_i18n_gettext('ui.patron.edit.au.active.show', 'GUI: Show active field on patron registration', 'coust', 'label'),
2810     oils_i18n_gettext('ui.patron.edit.au.active.show', 'The active field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2811     'bool'),
2812 ( 'ui.patron.edit.au.active.suggest',
2813     oils_i18n_gettext('ui.patron.edit.au.active.suggest', 'GUI: Suggest active field on patron registration', 'coust', 'label'),
2814     oils_i18n_gettext('ui.patron.edit.au.active.suggest', 'The active field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2815     'bool'),
2816 ( 'ui.patron.edit.au.alert_message.show',
2817     oils_i18n_gettext('ui.patron.edit.au.alert_message.show', 'GUI: Show alert_message field on patron registration', 'coust', 'label'),
2818     oils_i18n_gettext('ui.patron.edit.au.alert_message.show', 'The alert_message field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2819     'bool'),
2820 ( 'ui.patron.edit.au.alert_message.suggest',
2821     oils_i18n_gettext('ui.patron.edit.au.alert_message.suggest', 'GUI: Suggest alert_message field on patron registration', 'coust', 'label'),
2822     oils_i18n_gettext('ui.patron.edit.au.alert_message.suggest', 'The alert_message field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2823     'bool'),
2824 ( 'ui.patron.edit.au.alias.show',
2825     oils_i18n_gettext('ui.patron.edit.au.alias.show', 'GUI: Show alias field on patron registration', 'coust', 'label'),
2826     oils_i18n_gettext('ui.patron.edit.au.alias.show', 'The alias field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2827     'bool'),
2828 ( 'ui.patron.edit.au.alias.suggest',
2829     oils_i18n_gettext('ui.patron.edit.au.alias.suggest', 'GUI: Suggest alias field on patron registration', 'coust', 'label'),
2830     oils_i18n_gettext('ui.patron.edit.au.alias.suggest', 'The alias field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2831     'bool'),
2832 ( 'ui.patron.edit.au.barred.show',
2833     oils_i18n_gettext('ui.patron.edit.au.barred.show', 'GUI: Show barred field on patron registration', 'coust', 'label'),
2834     oils_i18n_gettext('ui.patron.edit.au.barred.show', 'The barred field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2835     'bool'),
2836 ( 'ui.patron.edit.au.barred.suggest',
2837     oils_i18n_gettext('ui.patron.edit.au.barred.suggest', 'GUI: Suggest barred field on patron registration', 'coust', 'label'),
2838     oils_i18n_gettext('ui.patron.edit.au.barred.suggest', 'The barred field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2839     'bool'),
2840 ( 'ui.patron.edit.au.claims_never_checked_out_count.show',
2841     oils_i18n_gettext('ui.patron.edit.au.claims_never_checked_out_count.show', 'GUI: Show claims_never_checked_out_count field on patron registration', 'coust', 'label'),
2842     oils_i18n_gettext('ui.patron.edit.au.claims_never_checked_out_count.show', 'The claims_never_checked_out_count field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2843     'bool'),
2844 ( 'ui.patron.edit.au.claims_never_checked_out_count.suggest',
2845     oils_i18n_gettext('ui.patron.edit.au.claims_never_checked_out_count.suggest', 'GUI: Suggest claims_never_checked_out_count field on patron registration', 'coust', 'label'),
2846     oils_i18n_gettext('ui.patron.edit.au.claims_never_checked_out_count.suggest', 'The claims_never_checked_out_count field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2847     'bool'),
2848 ( 'ui.patron.edit.au.claims_returned_count.show',
2849     oils_i18n_gettext('ui.patron.edit.au.claims_returned_count.show', 'GUI: Show claims_returned_count field on patron registration', 'coust', 'label'),
2850     oils_i18n_gettext('ui.patron.edit.au.claims_returned_count.show', 'The claims_returned_count field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2851     'bool'),
2852 ( 'ui.patron.edit.au.claims_returned_count.suggest',
2853     oils_i18n_gettext('ui.patron.edit.au.claims_returned_count.suggest', 'GUI: Suggest claims_returned_count field on patron registration', 'coust', 'label'),
2854     oils_i18n_gettext('ui.patron.edit.au.claims_returned_count.suggest', 'The claims_returned_count field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2855     'bool'),
2856 ( 'ui.patron.edit.au.day_phone.example',
2857     oils_i18n_gettext('ui.patron.edit.au.day_phone.example', 'GUI: Example for day_phone field on patron registration', 'coust', 'label'),
2858     oils_i18n_gettext('ui.patron.edit.au.day_phone.example', 'The Example for validation on the day_phone field in patron registration.', 'coust', 'description'),
2859     'string'),
2860 ( 'ui.patron.edit.au.day_phone.regex',
2861     oils_i18n_gettext('ui.patron.edit.au.day_phone.regex', 'GUI: Regex for day_phone field on patron registration', 'coust', 'label'),
2862     oils_i18n_gettext('ui.patron.edit.au.day_phone.regex', 'The Regular Expression for validation on the day_phone field in patron registration.', 'coust', 'description'),
2863     'string'),
2864 ( 'ui.patron.edit.au.day_phone.require',
2865     oils_i18n_gettext('ui.patron.edit.au.day_phone.require', 'GUI: Require day_phone field on patron registration', 'coust', 'label'),
2866     oils_i18n_gettext('ui.patron.edit.au.day_phone.require', 'The day_phone field will be required on the patron registration screen.', 'coust', 'description'),
2867     'bool'),
2868 ( 'ui.patron.edit.au.day_phone.show',
2869     oils_i18n_gettext('ui.patron.edit.au.day_phone.show', 'GUI: Show day_phone field on patron registration', 'coust', 'label'),
2870     oils_i18n_gettext('ui.patron.edit.au.day_phone.show', 'The day_phone field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2871     'bool'),
2872 ( 'ui.patron.edit.au.day_phone.suggest',
2873     oils_i18n_gettext('ui.patron.edit.au.day_phone.suggest', 'GUI: Suggest day_phone field on patron registration', 'coust', 'label'),
2874     oils_i18n_gettext('ui.patron.edit.au.day_phone.suggest', 'The day_phone field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2875     'bool'),
2876 ( 'ui.patron.edit.au.dob.calendar',
2877     oils_i18n_gettext('ui.patron.edit.au.dob.calendar', 'GUI: Show calendar widget for dob field on patron registration', 'coust', 'label'),
2878     oils_i18n_gettext('ui.patron.edit.au.dob.calendar', 'If set the calendar widget will appear when editing the dob field on the patron registration form.', 'coust', 'description'),
2879     'bool'),
2880 ( 'ui.patron.edit.au.dob.require',
2881     oils_i18n_gettext('ui.patron.edit.au.dob.require', 'GUI: Require dob field on patron registration', 'coust', 'label'),
2882     oils_i18n_gettext('ui.patron.edit.au.dob.require', 'The dob field will be required on the patron registration screen.', 'coust', 'description'),
2883     'bool'),
2884 ( 'ui.patron.edit.au.dob.show',
2885     oils_i18n_gettext('ui.patron.edit.au.dob.show', 'GUI: Show dob field on patron registration', 'coust', 'label'),
2886     oils_i18n_gettext('ui.patron.edit.au.dob.show', 'The dob field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2887     'bool'),
2888 ( 'ui.patron.edit.au.dob.suggest',
2889     oils_i18n_gettext('ui.patron.edit.au.dob.suggest', 'GUI: Suggest dob field on patron registration', 'coust', 'label'),
2890     oils_i18n_gettext('ui.patron.edit.au.dob.suggest', 'The dob field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2891     'bool'),
2892 ( 'ui.patron.edit.au.email.example',
2893     oils_i18n_gettext('ui.patron.edit.au.email.example', 'GUI: Example for email field on patron registration', 'coust', 'label'),
2894     oils_i18n_gettext('ui.patron.edit.au.email.example', 'The Example for validation on the email field in patron registration.', 'coust', 'description'),
2895     'string'),
2896 ( 'ui.patron.edit.au.email.regex',
2897     oils_i18n_gettext('ui.patron.edit.au.email.regex', 'GUI: Regex for email field on patron registration', 'coust', 'label'),
2898     oils_i18n_gettext('ui.patron.edit.au.email.regex', 'The Regular Expression for validation on the email field in patron registration.', 'coust', 'description'),
2899     'string'),
2900 ( 'ui.patron.edit.au.email.require',
2901     oils_i18n_gettext('ui.patron.edit.au.email.require', 'GUI: Require email field on patron registration', 'coust', 'label'),
2902     oils_i18n_gettext('ui.patron.edit.au.email.require', 'The email field will be required on the patron registration screen.', 'coust', 'description'),
2903     'bool'),
2904 ( 'ui.patron.edit.au.email.show',
2905     oils_i18n_gettext('ui.patron.edit.au.email.show', 'GUI: Show email field on patron registration', 'coust', 'label'),
2906     oils_i18n_gettext('ui.patron.edit.au.email.show', 'The email field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2907     'bool'),
2908 ( 'ui.patron.edit.au.email.suggest',
2909     oils_i18n_gettext('ui.patron.edit.au.email.suggest', 'GUI: Suggest email field on patron registration', 'coust', 'label'),
2910     oils_i18n_gettext('ui.patron.edit.au.email.suggest', 'The email field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2911     'bool'),
2912 ( 'ui.patron.edit.au.evening_phone.example',
2913     oils_i18n_gettext('ui.patron.edit.au.evening_phone.example', 'GUI: Example for evening_phone field on patron registration', 'coust', 'label'),
2914     oils_i18n_gettext('ui.patron.edit.au.evening_phone.example', 'The Example for validation on the evening_phone field in patron registration.', 'coust', 'description'),
2915     'string'),
2916 ( 'ui.patron.edit.au.evening_phone.regex',
2917     oils_i18n_gettext('ui.patron.edit.au.evening_phone.regex', 'GUI: Regex for evening_phone field on patron registration', 'coust', 'label'),
2918     oils_i18n_gettext('ui.patron.edit.au.evening_phone.regex', 'The Regular Expression for validation on the evening_phone field in patron registration.', 'coust', 'description'),
2919     'string'),
2920 ( 'ui.patron.edit.au.evening_phone.require',
2921     oils_i18n_gettext('ui.patron.edit.au.evening_phone.require', 'GUI: Require evening_phone field on patron registration', 'coust', 'label'),
2922     oils_i18n_gettext('ui.patron.edit.au.evening_phone.require', 'The evening_phone field will be required on the patron registration screen.', 'coust', 'description'),
2923     'bool'),
2924 ( 'ui.patron.edit.au.evening_phone.show',
2925     oils_i18n_gettext('ui.patron.edit.au.evening_phone.show', 'GUI: Show evening_phone field on patron registration', 'coust', 'label'),
2926     oils_i18n_gettext('ui.patron.edit.au.evening_phone.show', 'The evening_phone field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2927     'bool'),
2928 ( 'ui.patron.edit.au.evening_phone.suggest',
2929     oils_i18n_gettext('ui.patron.edit.au.evening_phone.suggest', 'GUI: Suggest evening_phone field on patron registration', 'coust', 'label'),
2930     oils_i18n_gettext('ui.patron.edit.au.evening_phone.suggest', 'The evening_phone field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2931     'bool'),
2932 ( 'ui.patron.edit.au.ident_value.show',
2933     oils_i18n_gettext('ui.patron.edit.au.ident_value.show', 'GUI: Show ident_value field on patron registration', 'coust', 'label'),
2934     oils_i18n_gettext('ui.patron.edit.au.ident_value.show', 'The ident_value field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2935     'bool'),
2936 ( 'ui.patron.edit.au.ident_value.suggest',
2937     oils_i18n_gettext('ui.patron.edit.au.ident_value.suggest', 'GUI: Suggest ident_value field on patron registration', 'coust', 'label'),
2938     oils_i18n_gettext('ui.patron.edit.au.ident_value.suggest', 'The ident_value field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2939     'bool'),
2940 ( 'ui.patron.edit.au.ident_value2.show',
2941     oils_i18n_gettext('ui.patron.edit.au.ident_value2.show', 'GUI: Show ident_value2 field on patron registration', 'coust', 'label'),
2942     oils_i18n_gettext('ui.patron.edit.au.ident_value2.show', 'The ident_value2 field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2943     'bool'),
2944 ( 'ui.patron.edit.au.ident_value2.suggest',
2945     oils_i18n_gettext('ui.patron.edit.au.ident_value2.suggest', 'GUI: Suggest ident_value2 field on patron registration', 'coust', 'label'),
2946     oils_i18n_gettext('ui.patron.edit.au.ident_value2.suggest', 'The ident_value2 field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2947     'bool'),
2948 ( 'ui.patron.edit.au.juvenile.show',
2949     oils_i18n_gettext('ui.patron.edit.au.juvenile.show', 'GUI: Show juvenile field on patron registration', 'coust', 'label'),
2950     oils_i18n_gettext('ui.patron.edit.au.juvenile.show', 'The juvenile field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2951     'bool'),
2952 ( 'ui.patron.edit.au.juvenile.suggest',
2953     oils_i18n_gettext('ui.patron.edit.au.juvenile.suggest', 'GUI: Suggest juvenile field on patron registration', 'coust', 'label'),
2954     oils_i18n_gettext('ui.patron.edit.au.juvenile.suggest', 'The juvenile field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2955     'bool'),
2956 ( 'ui.patron.edit.au.master_account.show',
2957     oils_i18n_gettext('ui.patron.edit.au.master_account.show', 'GUI: Show master_account field on patron registration', 'coust', 'label'),
2958     oils_i18n_gettext('ui.patron.edit.au.master_account.show', 'The master_account field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2959     'bool'),
2960 ( 'ui.patron.edit.au.master_account.suggest',
2961     oils_i18n_gettext('ui.patron.edit.au.master_account.suggest', 'GUI: Suggest master_account field on patron registration', 'coust', 'label'),
2962     oils_i18n_gettext('ui.patron.edit.au.master_account.suggest', 'The master_account field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2963     'bool'),
2964 ( 'ui.patron.edit.au.other_phone.example',
2965     oils_i18n_gettext('ui.patron.edit.au.other_phone.example', 'GUI: Example for other_phone field on patron registration', 'coust', 'label'),
2966     oils_i18n_gettext('ui.patron.edit.au.other_phone.example', 'The Example for validation on the other_phone field in patron registration.', 'coust', 'description'),
2967     'string'),
2968 ( 'ui.patron.edit.au.other_phone.regex',
2969     oils_i18n_gettext('ui.patron.edit.au.other_phone.regex', 'GUI: Regex for other_phone field on patron registration', 'coust', 'label'),
2970     oils_i18n_gettext('ui.patron.edit.au.other_phone.regex', 'The Regular Expression for validation on the other_phone field in patron registration.', 'coust', 'description'),
2971     'string'),
2972 ( 'ui.patron.edit.au.other_phone.require',
2973     oils_i18n_gettext('ui.patron.edit.au.other_phone.require', 'GUI: Require other_phone field on patron registration', 'coust', 'label'),
2974     oils_i18n_gettext('ui.patron.edit.au.other_phone.require', 'The other_phone field will be required on the patron registration screen.', 'coust', 'description'),
2975     'bool'),
2976 ( 'ui.patron.edit.au.other_phone.show',
2977     oils_i18n_gettext('ui.patron.edit.au.other_phone.show', 'GUI: Show other_phone field on patron registration', 'coust', 'label'),
2978     oils_i18n_gettext('ui.patron.edit.au.other_phone.show', 'The other_phone field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2979     'bool'),
2980 ( 'ui.patron.edit.au.other_phone.suggest',
2981     oils_i18n_gettext('ui.patron.edit.au.other_phone.suggest', 'GUI: Suggest other_phone field on patron registration', 'coust', 'label'),
2982     oils_i18n_gettext('ui.patron.edit.au.other_phone.suggest', 'The other_phone field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2983     'bool'),
2984 ( 'ui.patron.edit.au.second_given_name.show',
2985     oils_i18n_gettext('ui.patron.edit.au.second_given_name.show', 'GUI: Show second_given_name field on patron registration', 'coust', 'label'),
2986     oils_i18n_gettext('ui.patron.edit.au.second_given_name.show', 'The second_given_name field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2987     'bool'),
2988 ( 'ui.patron.edit.au.second_given_name.suggest',
2989     oils_i18n_gettext('ui.patron.edit.au.second_given_name.suggest', 'GUI: Suggest second_given_name field on patron registration', 'coust', 'label'),
2990     oils_i18n_gettext('ui.patron.edit.au.second_given_name.suggest', 'The second_given_name field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2991     'bool'),
2992 ( 'ui.patron.edit.au.suffix.show',
2993     oils_i18n_gettext('ui.patron.edit.au.suffix.show', 'GUI: Show suffix field on patron registration', 'coust', 'label'),
2994     oils_i18n_gettext('ui.patron.edit.au.suffix.show', 'The suffix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'),
2995     'bool'),
2996 ( 'ui.patron.edit.au.suffix.suggest',
2997     oils_i18n_gettext('ui.patron.edit.au.suffix.suggest', 'GUI: Suggest suffix field on patron registration', 'coust', 'label'),
2998     oils_i18n_gettext('ui.patron.edit.au.suffix.suggest', 'The suffix field will be suggested on the patron registration screen. Suggesting a field makes it appear when suggested fields are shown. If the field is shown or required this setting is ignored.', 'coust', 'description'),
2999     'bool'),
3000 ( 'ui.patron.edit.aua.county.require',
3001     oils_i18n_gettext('ui.patron.edit.aua.county.require', 'GUI: Require county field on patron registration', 'coust', 'label'),
3002     oils_i18n_gettext('ui.patron.edit.aua.county.require', 'The county field will be required on the patron registration screen.', 'coust', 'description'),
3003     'bool'),
3004 ( 'ui.patron.edit.aua.post_code.example',
3005     oils_i18n_gettext('ui.patron.edit.aua.post_code.example', 'GUI: Example for post_code field on patron registration', 'coust', 'label'),
3006     oils_i18n_gettext('ui.patron.edit.aua.post_code.example', 'The Example for validation on the post_code field in patron registration.', 'coust', 'description'),
3007     'string'),
3008 ( 'ui.patron.edit.aua.post_code.regex',
3009     oils_i18n_gettext('ui.patron.edit.aua.post_code.regex', 'GUI: Regex for post_code field on patron registration', 'coust', 'label'),
3010     oils_i18n_gettext('ui.patron.edit.aua.post_code.regex', 'The Regular Expression for validation on the post_code field in patron registration.', 'coust', 'description'),
3011     'string'),
3012 ( 'ui.patron.edit.default_suggested',
3013     oils_i18n_gettext('ui.patron.edit.default_suggested', 'GUI: Default showing suggested patron registration fields', 'coust', 'label'),
3014     oils_i18n_gettext('ui.patron.edit.default_suggested', 'Instead of All fields, show just suggested fields in patron registration by default.', 'coust', 'description'),
3015     'bool'),
3016 ( 'ui.patron.edit.phone.example',
3017     oils_i18n_gettext('ui.patron.edit.phone.example', 'GUI: Example for phone fields on patron registration', 'coust', 'label'),
3018     oils_i18n_gettext('ui.patron.edit.phone.example', 'The Example for validation on phone fields in patron registration. Applies to all phone fields without their own setting.', 'coust', 'description'),
3019     'string'),
3020 ( 'ui.patron.edit.phone.regex',
3021     oils_i18n_gettext('ui.patron.edit.phone.regex', 'GUI: Regex for phone fields on patron registration', 'coust', 'label'),
3022     oils_i18n_gettext('ui.patron.edit.phone.regex', 'The Regular Expression for validation on phone fields in patron registration. Applies to all phone fields without their own setting.', 'coust', 'description'),
3023     'string');
3024
3025 -- *** Has to go below coust definition to satisfy referential integrity ***
3026 -- In booking, elbow room defines:
3027 --  a) how far in the future you must make a reservation on a given item if
3028 --      that item will have to transit somewhere to fulfill the reservation.
3029 --  b) how soon a reservation must be starting for the reserved item to
3030 --      be op-captured by the checkin interface.
3031 INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
3032     (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
3033     'circ.booking_reservation.default_elbow_room',
3034     '"1 day"'
3035 );
3036
3037 -- Org_unit_setting_type(s) that need an fm_class:
3038 INSERT into config.org_unit_setting_type
3039 ( name, label, description, datatype, fm_class ) VALUES
3040 ( 'acq.default_copy_location',
3041   oils_i18n_gettext( 'acq.default_copy_location', 'Default copy location', 'coust', 'label'),
3042   oils_i18n_gettext( 'acq.default_copy_location', 'Default copy location', 'coust', 'description'),
3043   'link',
3044   'acpl' );
3045
3046 -- Staged Search (for default matchpoints)
3047 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(1, 'first_word', 1.5);
3048 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(1, 'full_match', 20);
3049
3050 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(2, 'first_word', 1.5);
3051 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(2, 'word_order', 10);
3052 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(2, 'full_match', 20);
3053
3054 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(3, 'first_word', 1.5);
3055 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(3, 'word_order', 10);
3056 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(3, 'full_match', 20);
3057
3058 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(4, 'first_word', 1.5);
3059 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(4, 'word_order', 10);
3060 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(4, 'full_match', 20);
3061
3062 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(5, 'first_word', 1.5);
3063 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(5, 'word_order', 10);
3064 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(5, 'full_match', 20);
3065
3066 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(6, 'first_word', 1.5);
3067 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(6, 'word_order', 10);
3068 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(6, 'full_match', 20);
3069
3070 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(7, 'first_word', 1.5);
3071
3072 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(8, 'first_word', 1.5);
3073
3074 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(9, 'first_word', 1.5);
3075
3076 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(10, 'first_word', 1.5);
3077
3078 INSERT INTO search.relevance_adjustment (field, bump_type, multiplier) VALUES(15, 'word_order', 10);
3079
3080 -- Vandelay (for importing and exporting records) 012.schema.vandelay.sql 
3081 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (1, 'title', oils_i18n_gettext(1, 'Title of work', 'vqbrad', 'description'),'//*[@tag="245"]/*[contains("abcmnopr",@code)]');
3082 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (2, 'author', oils_i18n_gettext(2, 'Author of work', 'vqbrad', 'description'),'//*[@tag="100" or @tag="110" or @tag="113"]/*[contains("ad",@code)]');
3083 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (3, 'language', oils_i18n_gettext(3, 'Language of work', 'vqbrad', 'description'),'//*[@tag="240"]/*[@code="l"][1]');
3084 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (4, 'pagination', oils_i18n_gettext(4, 'Pagination', 'vqbrad', 'description'),'//*[@tag="300"]/*[@code="a"][1]');
3085 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident, remove ) VALUES (5, 'isbn',oils_i18n_gettext(5, 'ISBN', 'vqbrad', 'description'),'//*[@tag="020"]/*[@code="a"]', TRUE, $r$(?:-|\s.+$)$r$);
3086 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident, remove ) VALUES (6, 'issn',oils_i18n_gettext(6, 'ISSN', 'vqbrad', 'description'),'//*[@tag="022"]/*[@code="a"]', TRUE, $r$(?:-|\s.+$)$r$);
3087 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (7, 'price',oils_i18n_gettext(7, 'Price', 'vqbrad', 'description'),'//*[@tag="020" or @tag="022"]/*[@code="c"][1]');
3088 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident ) VALUES (8, 'rec_identifier',oils_i18n_gettext(8, 'Accession Number', 'vqbrad', 'description'),'//*[@tag="001"]', TRUE);
3089 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident ) VALUES (9, 'eg_tcn',oils_i18n_gettext(9, 'TCN Value', 'vqbrad', 'description'),'//*[@tag="901"]/*[@code="a"]', TRUE);
3090 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident ) VALUES (10, 'eg_tcn_source',oils_i18n_gettext(10, 'TCN Source', 'vqbrad', 'description'),'//*[@tag="901"]/*[@code="b"]', TRUE);
3091 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident ) VALUES (11, 'eg_identifier',oils_i18n_gettext(11, 'Internal ID', 'vqbrad', 'description'),'//*[@tag="901"]/*[@code="c"]', TRUE);
3092 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (12, 'publisher',oils_i18n_gettext(12, 'Publisher', 'vqbrad', 'description'),'//*[@tag="260"]/*[@code="b"][1]');
3093 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, remove ) VALUES (13, 'pubdate',oils_i18n_gettext(13, 'Publication Date', 'vqbrad', 'description'),'//*[@tag="260"]/*[@code="c"][1]',$r$\D$r$);
3094 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (14, 'edition',oils_i18n_gettext(14, 'Edition', 'vqbrad', 'description'),'//*[@tag="250"]/*[@code="a"][1]');
3095 INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (15, 'item_barcode',oils_i18n_gettext(15, 'Item Barcode', 'vqbrad', 'description'),'//*[@tag="852"]/*[@code="p"][1]');
3096 SELECT SETVAL('vandelay.bib_attr_definition_id_seq'::TEXT, 100);
3097
3098 INSERT INTO vandelay.import_item_attr_definition (
3099     owner, name, tag, owning_lib, circ_lib, location,
3100     call_number, circ_modifier, barcode, price, copy_number,
3101     circulate, ref, holdable, opac_visible, status
3102 ) VALUES (
3103     1,
3104     'Evergreen 852 export format',
3105     '852',
3106     '[@code = "b"][1]',
3107     '[@code = "b"][2]',
3108     'c',
3109     'j',
3110     'g',
3111     'p',
3112     'y',
3113     't',
3114     '[@code = "x" and text() = "circulating"]',
3115     '[@code = "x" and text() = "reference"]',
3116     '[@code = "x" and text() = "holdable"]',
3117     '[@code = "x" and text() = "visible"]',
3118     'z'
3119 );
3120
3121 INSERT INTO vandelay.import_item_attr_definition (
3122     owner,
3123     name,
3124     tag,
3125     owning_lib,
3126     location,
3127     call_number,
3128     circ_modifier,
3129     barcode,
3130     price,
3131     status
3132 ) VALUES (
3133     1,
3134     'Unicorn Import format -- 999',
3135     '999',
3136     'm',
3137     'l',
3138     'a',
3139     't',
3140     'i',
3141     'p',
3142     'k'
3143 );
3144
3145 INSERT INTO vandelay.authority_attr_definition (id, code, description, xpath, ident ) VALUES (1, 'rec_identifier',oils_i18n_gettext(1, 'Identifier', 'vqarad', 'description'),'//*[@tag="001"]', TRUE);
3146 SELECT SETVAL('vandelay.authority_attr_definition_id_seq'::TEXT, 100);
3147
3148
3149 INSERT INTO container.copy_bucket_type (code,label) VALUES ('misc', oils_i18n_gettext('misc', 'Miscellaneous', 'ccpbt', 'label'));
3150 INSERT INTO container.copy_bucket_type (code,label) VALUES ('staff_client', oils_i18n_gettext('staff_client', 'General Staff Client container', 'ccpbt', 'label'));
3151 INSERT INTO container.copy_bucket_type (code,label) VALUES ( 'circ_history', 'Circulation History' );
3152 INSERT INTO container.call_number_bucket_type (code,label) VALUES ('misc', oils_i18n_gettext('misc', 'Miscellaneous', 'ccnbt', 'label'));
3153 INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('misc', oils_i18n_gettext('misc', 'Miscellaneous', 'cbrebt', 'label'));
3154 INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('staff_client', oils_i18n_gettext('staff_client', 'General Staff Client container', 'cbrebt', 'label'));
3155 INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('bookbag', oils_i18n_gettext('bookbag', 'Book Bag', 'cbrebt', 'label'));
3156 INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('reading_list', oils_i18n_gettext('reading_list', 'Reading List', 'cbrebt', 'label'));
3157 INSERT INTO container.biblio_record_entry_bucket_type (code,label) VALUES ('template_merge',oils_i18n_gettext('template_merge','Template Merge Container', 'cbrebt', 'label'));
3158
3159 INSERT INTO container.user_bucket_type (code,label) VALUES ('misc', oils_i18n_gettext('misc', 'Miscellaneous', 'cubt', 'label'));
3160 INSERT INTO container.user_bucket_type (code,label) VALUES ('folks', oils_i18n_gettext('folks', 'Friends', 'cubt', 'label'));
3161 INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:pub_book_bags.view', oils_i18n_gettext('folks:pub_book_bags.view', 'List Published Book Bags', 'cubt', 'label'));
3162 INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:pub_book_bags.add', oils_i18n_gettext('folks:pub_book_bags.add', 'Add to Published Book Bags', 'cubt', 'label'));
3163 INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:circ.view', oils_i18n_gettext('folks:circ.view', 'View Circulations', 'cubt', 'label'));
3164 INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:circ.renew', oils_i18n_gettext('folks:circ.renew', 'Renew Circulations', 'cubt', 'label'));
3165 INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:circ.checkout', oils_i18n_gettext('folks:circ.checkout', 'Checkout Items', 'cubt', 'label'));
3166 INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:hold.view', oils_i18n_gettext('folks:hold.view', 'View Holds', 'cubt', 'label'));
3167 INSERT INTO container.user_bucket_type (code,label) VALUES ('folks:hold.cancel', oils_i18n_gettext('folks:hold.cancel', 'Cancel Holds', 'cubt', 'label'));
3168
3169
3170 ----------------------------------
3171 -- MARC21 record structure data --
3172 ----------------------------------
3173
3174 -- Record type map
3175 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm');
3176 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi');
3177 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi');
3178 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi');
3179 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi');
3180 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi');
3181 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi');
3182 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi');
3183
3184
3185 ------ Physical Characteristics
3186
3187 -- Map
3188 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map');
3189 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD');
3190 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas');
3191 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram');
3192 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map');
3193 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile');
3194 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model');
3195 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote-sensing image');
3196 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section');
3197 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3198 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View');
3199 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3200 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color');
3201 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One color');
3202 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
3203 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium');
3204 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
3205 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
3206 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
3207 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
3208 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
3209 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
3210 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
3211 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
3212 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Flexible base photographic medium, positive');
3213 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Flexible base photographic medium, negative');
3214 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Non-flexible base photographic medium, positive');
3215 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Non-flexible base photographic medium, negative');
3216 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3217 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other photographic medium');
3218 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3219 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction');
3220 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
3221 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3222 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3223 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3224 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','g','6','1','Production/reproduction details');
3225 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy, blueline print');
3226 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy');
3227 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Pre-production');
3228 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film');
3229 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3230 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3231 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative');
3232 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
3233 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
3234 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3235 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3236
3237 -- Electronic Resource
3238 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource');
3239 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD');
3240 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Tape Cartridge');
3241 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chip cartridge');
3242 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Computer optical disk cartridge');
3243 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Tape cassette');
3244 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Tape reel');
3245 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic disk');
3246 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magneto-optical disk');
3247 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical disk');
3248 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote');
3249 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3250 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3251 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color');
3252 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One color');
3253 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white');
3254 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
3255 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Gray scale');
3256 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3257 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3258 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3259 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3260 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions');
3261 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 1/2 in.');
3262 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'12 in.');
3263 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'4 3/4 in. or 12 cm.');
3264 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1 1/8 x 2 3/8 in.');
3265 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 7/8 x 2 1/2 in.');
3266 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3267 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'5 1/4 in.');
3268 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3269 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 in.');
3270 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3271 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','f','5','1','Sound');
3272 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES (' ',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'No sound (Silent)');
3273 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound');
3274 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3275 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth');
3276 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3277 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple');
3278 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('nnn',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3279 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats');
3280 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One file format');
3281 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple file formats');
3282 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3283 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)');
3284 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent');
3285 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3286 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present');
3287 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3288 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source');
3289 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'File reproduced from original');
3290 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'File reproduced from microform');
3291 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'File reproduced from electronic resource');
3292 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'File reproduced from an intermediate (not microform)');
3293 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3294 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3295 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3296 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','k','12','1','Level of compression');
3297 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed');
3298 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless');
3299 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy');
3300 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3301 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3302 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality');
3303 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access');
3304 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3305 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation');
3306 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement');
3307 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3308
3309 -- Globe
3310 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe');
3311 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD');
3312 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Celestial globe');
3313 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Planetary or lunar globe');
3314 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Terrestrial globe');
3315 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Earth moon globe');
3316 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3317 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3318 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','d','3','1','Color');
3319 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One color');
3320 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
3321 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium');
3322 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
3323 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
3324 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
3325 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
3326 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
3327 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
3328 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
3329 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
3330 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3331 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3332 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction');
3333 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
3334 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3335 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3336 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3337
3338 -- Tactile Material
3339 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material');
3340 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD');
3341 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon');
3342 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Braille');
3343 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
3344 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Tactile, with no writing system');
3345 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3346 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3347 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing');
3348 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Literary braille');
3349 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Format code braille');
3350 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mathematics and scientific braille');
3351 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Computer braille');
3352 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Music braille');
3353 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple braille types');
3354 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3355 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3356 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3357 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','e','4','1','Level of contraction');
3358 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted');
3359 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted');
3360 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
3361 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3362 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3363 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3364 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format');
3365 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bar over bar');
3366 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bar by bar');
3367 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Line over line');
3368 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph');
3369 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Single line');
3370 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section by section');
3371 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Line by line');
3372 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Open score');
3373 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spanner short form scoring');
3374 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Short form scoring');
3375 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline');
3376 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical score');
3377 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3378 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3379 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3380 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics');
3381 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print/braille');
3382 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Jumbo or enlarged braille');
3383 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3384 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3385 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3386
3387 -- Projected Graphic
3388 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic');
3389 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD');
3390 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film cartridge');
3391 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip');
3392 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film filmstrip type');
3393 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip roll');
3394 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide');
3395 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency');
3396 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3397 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color');
3398 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white');
3399 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
3400 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hand-colored');
3401 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3402 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3403 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3404 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3405 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion');
3406 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
3407 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
3408 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety film');
3409 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film base, other than safety film');
3410 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed collection');
3411 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
3412 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3413 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3414 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','f','5','1','Sound on medium or separate');
3415 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound on medium');
3416 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound separate from medium');
3417 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3418 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound');
3419 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical sound track on motion picture film');
3420 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic sound track on motion picture film');
3421 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cartridge');
3422 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound disc');
3423 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape on reel');
3424 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cassette');
3425 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical and magnetic sound track on film');
3426 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
3427 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
3428 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3429 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3430 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions');
3431 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Standard 8 mm.');
3432 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Super 8 mm./single 8 mm.');
3433 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'9.5 mm.');
3434 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 mm.');
3435 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'28 mm.');
3436 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'35 mm.');
3437 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70 mm.');
3438 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'2 x 2 in. (5 x 5 cm.)');
3439 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'2 1/4 x 2 1/4 in. (6 x 6 cm.)');
3440 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'4 x 5 in. (10 x 13 cm.)');
3441 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'5 x 7 in. (13 x 18 cm.)');
3442 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3443 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 x 10 in. (21 x 26 cm.)');
3444 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('w',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'9 x 9 in. (23 x 23 cm.)');
3445 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('x',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'10 x 10 in. (26 x 26 cm.)');
3446 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'7 x 7 in. (18 x 18 cm.)');
3447 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3448 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','i','8','1','Secondary support material');
3449 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard');
3450 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
3451 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
3452 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal');
3453 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal and glass');
3454 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics and glass');
3455 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed collection');
3456 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3457 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3458
3459 -- Microform
3460 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform');
3461 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD');
3462 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Aperture card');
3463 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfilm cartridge');
3464 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfilm cassette');
3465 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfilm reel');
3466 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche');
3467 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche cassette');
3468 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque');
3469 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3470 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3471 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','d','3','1','Positive/negative');
3472 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
3473 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
3474 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3475 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3476 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions');
3477 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 mm.');
3478 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 mm.');
3479 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'35 mm.');
3480 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.');
3481 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'105 mm.');
3482 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 x 5 in. (8 x 13 cm.)');
3483 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'4 x 6 in. (11 x 15 cm.)');
3484 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'6 x 9 in. (16 x 23 cm.)');
3485 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 1/4 x 7 3/8 in. (9 x 19 cm.)');
3486 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3487 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3488 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','f','5','4','Reduction ratio range/Reduction ratio');
3489 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Low (1-16x)');
3490 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Normal (16-30x)');
3491 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'High (31-60x)');
3492 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Very high (61-90x)');
3493 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Ultra (90x-)');
3494 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3495 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Reduction ratio varies');
3496 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color');
3497 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white');
3498 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
3499 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3500 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3501 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3502 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film');
3503 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Silver halide');
3504 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo');
3505 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular');
3506 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3507 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3508 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3509 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3510 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)');
3511 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1st gen. master');
3512 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Printing master');
3513 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Service copy');
3514 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed generation');
3515 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3516 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film');
3517 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, undetermined');
3518 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, acetate undetermined');
3519 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, diacetate');
3520 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Nitrate base');
3521 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed base');
3522 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3523 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, polyester');
3524 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, mixed');
3525 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Safety base, triacetate');
3526 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3527 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3528
3529 -- Non-projected Graphic
3530 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic');
3531 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD');
3532 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage');
3533 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing');
3534 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting');
3535 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photo-mechanical print');
3536 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative');
3537 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint');
3538 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture');
3539 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print');
3540 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Technical drawing');
3541 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart');
3542 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Flash/activity card');
3543 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3544 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3545 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color');
3546 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'One color');
3547 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white');
3548 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
3549 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hand-colored');
3550 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3551 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3552 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3553 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material');
3554 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
3555 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bristol board');
3556 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard/illustration board');
3557 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
3558 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
3559 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
3560 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
3561 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
3562 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed collection');
3563 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
3564 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
3565 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
3566 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
3567 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
3568 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
3569 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3570 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3571 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','f','5','1','Secondary support material');
3572 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
3573 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bristol board');
3574 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard/illustration board');
3575 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
3576 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
3577 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
3578 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
3579 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
3580 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed collection');
3581 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
3582 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
3583 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
3584 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
3585 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
3586 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
3587 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3588 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3589
3590 -- Motion Picture
3591 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture');
3592 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD');
3593 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film cartridge');
3594 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film cassette');
3595 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film reel');
3596 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3597 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3598 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','d','3','1','Color');
3599 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white');
3600 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
3601 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hand-colored');
3602 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3603 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3604 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3605 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format');
3606 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Standard sound aperture, reduced frame');
3607 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Nonanamorphic (wide-screen)');
3608 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D');
3609 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Anamorphic (wide-screen)');
3610 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other-wide screen format');
3611 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Standard. silent aperture, full frame');
3612 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3613 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3614 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','f','5','1','Sound on medium or separate');
3615 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound on medium');
3616 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound separate from medium');
3617 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3618 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound');
3619 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical sound track on motion picture film');
3620 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic sound track on motion picture film');
3621 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cartridge');
3622 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound disc');
3623 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape on reel');
3624 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cassette');
3625 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical and magnetic sound track on film');
3626 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
3627 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
3628 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3629 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3630 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions');
3631 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Standard 8 mm.');
3632 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Super 8 mm./single 8 mm.');
3633 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'9.5 mm.');
3634 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 mm.');
3635 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'28 mm.');
3636 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'35 mm.');
3637 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70 mm.');
3638 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3639 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3640 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','i','8','1','Configuration of playback channels');
3641 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3642 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
3643 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3644 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multichannel, surround or quadraphonic');
3645 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
3646 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3647 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3648 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','j','9','1','Production elements');
3649 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Work print');
3650 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims');
3651 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes');
3652 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes');
3653 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixing tracks');
3654 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Title bands/inter-title rolls');
3655 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Production rolls');
3656 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3657 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3658
3659 -- Remote-sensing Image
3660 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image');
3661 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD');
3662 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3663 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude of sensor');
3664 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface');
3665 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne');
3666 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne');
3667 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3668 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3669 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3670 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','e','4','1','Attitude of sensor');
3671 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Low oblique');
3672 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'High oblique');
3673 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical');
3674 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3675 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3676 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover');
3677 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('0',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'0-09%');
3678 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('1',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'10-19%');
3679 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('2',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'20-29%');
3680 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('3',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'30-39%');
3681 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('4',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'40-49%');
3682 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('5',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'50-59%');
3683 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('6',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'60-69%');
3684 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('7',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70-79%');
3685 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('8',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'80-89%');
3686 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('9',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'90-100%');
3687 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3688 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3689 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type');
3690 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon');
3691 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Aircraft-low altitude');
3692 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Aircraft-medium altitude');
3693 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Aircraft-high altitude');
3694 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Manned spacecraft');
3695 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unmanned spacecraft');
3696 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Land-based remote-sensing device');
3697 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Water surface-based remote-sensing device');
3698 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Submersible remote-sensing device');
3699 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3700 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3701 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3702 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category');
3703 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological');
3704 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface observing');
3705 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Space observing');
3706 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed uses');
3707 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3708 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3709 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3710 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type');
3711 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active');
3712 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive');
3713 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3714 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3715 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type');
3716 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('aa',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Visible light');
3717 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('da',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Near infrared');
3718 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('db',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Middle infrared');
3719 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Far infrared');
3720 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Thermal infrared');
3721 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('de',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Shortwave infrared (SWIR)');
3722 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('df',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Reflective infrared');
3723 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations');
3724 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other infrared data');
3725 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ga',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sidelooking airborne radar (SLAR)');
3726 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetic aperture radar (SAR-single frequency)');
3727 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'SAR-multi-frequency (multichannel)');
3728 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'SAR-like polarization');
3729 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ge',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'SAR-cross polarization');
3730 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gf',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Infometric SAR');
3731 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gg',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Polarmetric SAR');
3732 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive microwave mapping');
3733 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('gz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other microwave data');
3734 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ja',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Far ultraviolet');
3735 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('jb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Middle ultraviolet');
3736 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('jc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Near ultraviolet');
3737 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('jv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Ultraviolet combinations');
3738 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('jz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other ultraviolet data');
3739 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ma',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multi-spectral, multidata');
3740 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multi-temporal');
3741 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination of various data types');
3742 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('nn',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3743 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pa',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sonar-water depth');
3744 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sonar-bottom topography images, sidescan');
3745 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sonar-bottom topography, near-surface');
3746 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sonar-bottom topography, near-bottom');
3747 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pe',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Seismic surveys');
3748 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('pz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other acoustical data');
3749 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ra',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Gravity anomales (general)');
3750 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rb',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Free-air');
3751 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger');
3752 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic');
3753 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('sa',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic field');
3754 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('ta',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Radiometric surveys');
3755 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3756 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3757
3758 -- Sound Recording
3759 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording');
3760 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD');
3761 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound disc');
3762 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder');
3763 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound cartridge');
3764 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound-track film');
3765 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll');
3766 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound cassette');
3767 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound-tape reel');
3768 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3769 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('w',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wire recording');
3770 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3771 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed');
3772 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 rpm');
3773 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'33 1/3 rpm');
3774 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'45 rpm');
3775 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'78 rpm');
3776 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 rpm');
3777 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1.4 mps');
3778 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'120 rpm');
3779 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'160 rpm');
3780 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'15/16 ips');
3781 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1 7/8 ips');
3782 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 3/4 ips');
3783 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'7 1/2 ips');
3784 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'15 ips');
3785 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'30 ips');
3786 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3787 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3788 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','e','4','1','Configuration of playback channels');
3789 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
3790 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic');
3791 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
3792 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3793 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3794 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','f','5','1','Groove width or pitch');
3795 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microgroove/fine');
3796 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3797 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Coarse/standard');
3798 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3799 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3800 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','g','6','1','Dimensions');
3801 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 in.');
3802 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'5 in.');
3803 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'7 in.');
3804 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'10 in.');
3805 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'12 in.');
3806 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 in.');
3807 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'4 3/4 in. (12 cm.)');
3808 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3 7/8 x 2 1/2 in.');
3809 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3810 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'5 1/4 x 3 7/8 in.');
3811 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'2 3/4 x 4 in.');
3812 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3813 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3814 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width');
3815 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('l',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/8 in.');
3816 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/4in.');
3817 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3818 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/2 in.');
3819 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1 in.');
3820 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3821 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3822 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration ');
3823 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Full (1) track');
3824 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Half (2) track');
3825 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quarter (4) track');
3826 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 track');
3827 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'12 track');
3828 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'16 track');
3829 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3830 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3831 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3832 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback');
3833 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'NAB standard');
3834 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CCIR standard');
3835 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Dolby-B encoded, standard Dolby');
3836 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'dbx encoded');
3837 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Digital recording');
3838 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Dolby-A encoded');
3839 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Dolby-C encoded');
3840 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CX encoded');
3841 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3842 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3843 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3844 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage');
3845 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Acoustical capture, direct storage');
3846 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Direct storage, not acoustical');
3847 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Digital storage');
3848 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Analog electrical storage');
3849 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3850 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3851
3852 -- Videorecording
3853 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording');
3854 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD');
3855 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge');
3856 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
3857 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette');
3858 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel');
3859 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
3860 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3861 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','d','3','1','Color');
3862 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white');
3863 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
3864 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3865 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3866 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3867 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3868 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format');
3869 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta');
3870 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS');
3871 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'U-matic');
3872 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ');
3873 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Type C');
3874 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex');
3875 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc');
3876 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED');
3877 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam');
3878 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam SP');
3879 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Super-VHS');
3880 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'M-II');
3881 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'D-2');
3882 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 mm.');
3883 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hi-8 mm.');
3884 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3885 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD');
3886 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3887 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','f','5','1','Sound on medium or separate');
3888 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound on medium');
3889 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound separate from medium');
3890 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3891 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound');
3892 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical sound track on motion picture film');
3893 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic sound track on motion picture film');
3894 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cartridge');
3895 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound disc');
3896 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape on reel');
3897 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Magnetic audio tape in cassette');
3898 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Optical and magnetic sound track on motion picture film');
3899 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
3900 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
3901 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3902 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3903 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions');
3904 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 mm.');
3905 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/4 in.');
3906 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1/2 in.');
3907 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'1 in.');
3908 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'2 in.');
3909 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3/4 in.');
3910 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3911 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3912 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel');
3913 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
3914 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
3915 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
3916 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multichannel, surround or quadraphonic');
3917 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
3918 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
3919 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
3920
3921 -- Fixed Field position data -- 0-based!
3922 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' ');
3923 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' ');
3924 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' ');
3925 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' ');
3926 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' ');
3927 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' ');
3928 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SER', 5, 1, ' ');
3929 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' ');
3930 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' ');
3931 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' ');
3932 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' ');
3933 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' ');
3934 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SER', 22, 1, ' ');
3935 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' ');
3936 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm');
3937 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm');
3938 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm');
3939 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c');
3940 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm');
3941 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm');
3942 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's');
3943 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm');
3944 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' ');
3945 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' ');
3946 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 7, 4, ' ');
3947 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 8, 3, ' ');
3948 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 24, 4, ' ');
3949 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 25, 3, ' ');
3950 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' ');
3951 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' ');
3952 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' ');
3953 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' ');
3954 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' ');
3955 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' ');
3956 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' ');
3957 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' ');
3958 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' ');
3959 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' ');
3960 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' ');
3961 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' ');
3962 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' ');
3963 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' ');
3964 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' ');
3965 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' ');
3966 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' ');
3967 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' ');
3968 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' ');
3969 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' ');
3970 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' ');
3971 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' ');
3972 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' ');
3973 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' ');
3974 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' ');
3975 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' ');
3976 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' ');
3977 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' ');
3978 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' ');
3979 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' ');
3980 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9');
3981 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' ');
3982 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' ');
3983 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' ');
3984 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' ');
3985 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' ');
3986 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' ');
3987 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' ');
3988 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' ');
3989 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' ');
3990 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' ');
3991 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' ');
3992 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' ');
3993 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' ');
3994 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' ');
3995 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' ');
3996 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c');
3997 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' ');
3998 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' ');
3999 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' ');
4000 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' ');
4001 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' ');
4002 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' ');
4003 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' ');
4004 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' ');
4005 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' ');
4006 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0');
4007 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0');
4008 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' ');
4009 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' ');
4010 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' ');
4011 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' ');
4012 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' ');
4013 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' ');
4014 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' ');
4015 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' ');
4016 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' ');
4017 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' ');
4018 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' ');
4019 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' ');
4020 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' ');
4021 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' ');
4022 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' ');
4023 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' ');
4024 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' ');
4025 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' ');
4026 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' ');
4027 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' ');
4028 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' ');
4029 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' ');
4030 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' ');
4031 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' ');
4032 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' ');
4033 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' ');
4034 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0');
4035 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0');
4036 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0');
4037 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0');
4038 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' ');
4039 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' ');
4040 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' ');
4041 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' ');
4042 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' ');
4043 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' ');
4044 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' ');
4045 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' ');
4046 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0');
4047 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0');
4048 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' ');
4049 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' ');
4050 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' ');
4051 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' ');
4052 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' ');
4053 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' ');
4054 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' ');
4055 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' ');
4056 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('S/L', '006', 'SER', 17, 1, '0');
4057 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('S/L', '008', 'SER', 34, 1, '0');
4058 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' ');
4059 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' ');
4060 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a');
4061 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm');
4062 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e');
4063 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p');
4064 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i');
4065 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c');
4066 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a');
4067 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g');
4068
4069 -- record attributes
4070 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('alph','Alph','Alph');
4071 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('audience','Audn','Audn');
4072 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('bib_level','BLvl','BLvl');
4073 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('biog','Biog','Biog');
4074 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('conf','Conf','Conf');
4075 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('control_type','Ctrl','Ctrl');
4076 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('ctry','Ctry','Ctry');
4077 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('date1','Date1','Date1');
4078 INSERT INTO config.record_attr_definition (name,label,fixed_field,sorter,filter) values ('pubdate','Pub Date','Date1',TRUE,FALSE);
4079 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('date2','Date2','Date2');
4080 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('cat_form','Desc','Desc');
4081 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('pub_status','DtSt','DtSt');
4082 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('enc_level','ELvl','ELvl');
4083 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('fest','Fest','Fest');
4084 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('item_form','Form','Form');
4085 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('gpub','GPub','GPub');
4086 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('ills','Ills','Ills');
4087 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('indx','Indx','Indx');
4088 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('item_lang','Lang','Lang');
4089 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('language','Language (2.0 compat version)','Lang');
4090 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('lit_form','LitF','LitF');
4091 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('mrec','MRec','MRec');
4092 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('ff_sl','S/L','S/L');
4093 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('type_mat','TMat','TMat');
4094 INSERT INTO config.record_attr_definition (name,label,fixed_field) values ('item_type','Type','Type');
4095 INSERT INTO config.record_attr_definition (name,label,phys_char_sf) values ('vr_format','Videorecording format',72);
4096 INSERT INTO config.record_attr_definition (name,label,sorter,filter,tag) values ('titlesort','Title',TRUE,FALSE,'tnf');
4097 INSERT INTO config.record_attr_definition (name,label,sorter,filter,tag) values ('authorsort','Author',TRUE,FALSE,'1%');
4098
4099 -- TO-DO: Auto-generate these values from CLDR
4100 -- XXX These are the values used in MARC records ... does that match CLDR, including deprecated languages?
4101 INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES
4102     (1, 'item_lang', 'aar', oils_i18n_gettext('aar', 'Afar', 'ccvm', 'value')),
4103     (2, 'item_lang', 'abk', oils_i18n_gettext('abk', 'Abkhaz', 'ccvm', 'value')),
4104     (3, 'item_lang', 'ace', oils_i18n_gettext('ace', 'Achinese', 'ccvm', 'value')),
4105     (4, 'item_lang', 'ach', oils_i18n_gettext('ach', 'Acoli', 'ccvm', 'value')),
4106     (5, 'item_lang', 'ada', oils_i18n_gettext('ada', 'Adangme', 'ccvm', 'value')),
4107     (6, 'item_lang', 'ady', oils_i18n_gettext('ady', 'Adygei', 'ccvm', 'value')),
4108     (7, 'item_lang', 'afa', oils_i18n_gettext('afa', 'Afroasiatic (Other)', 'ccvm', 'value')),
4109     (8, 'item_lang', 'afh', oils_i18n_gettext('afh', 'Afrihili (Artificial language)', 'ccvm', 'value')),
4110     (9, 'item_lang', 'afr', oils_i18n_gettext('afr', 'Afrikaans', 'ccvm', 'value')),
4111     (10, 'item_lang', '-ajm', oils_i18n_gettext('-ajm', 'Aljamía', 'ccvm', 'value')),
4112     (11, 'item_lang', 'aka', oils_i18n_gettext('aka', 'Akan', 'ccvm', 'value')),
4113     (12, 'item_lang', 'akk', oils_i18n_gettext('akk', 'Akkadian', 'ccvm', 'value')),
4114     (13, 'item_lang', 'alb', oils_i18n_gettext('alb', 'Albanian', 'ccvm', 'value')),
4115     (14, 'item_lang', 'ale', oils_i18n_gettext('ale', 'Aleut', 'ccvm', 'value')),
4116     (15, 'item_lang', 'alg', oils_i18n_gettext('alg', 'Algonquian (Other)', 'ccvm', 'value')),
4117     (16, 'item_lang', 'amh', oils_i18n_gettext('amh', 'Amharic', 'ccvm', 'value')),
4118     (17, 'item_lang', 'ang', oils_i18n_gettext('ang', 'English, Old (ca. 450-1100)', 'ccvm', 'value')),
4119     (18, 'item_lang', 'apa', oils_i18n_gettext('apa', 'Apache languages', 'ccvm', 'value')),
4120     (19, 'item_lang', 'ara', oils_i18n_gettext('ara', 'Arabic', 'ccvm', 'value')),
4121     (20, 'item_lang', 'arc', oils_i18n_gettext('arc', 'Aramaic', 'ccvm', 'value')),
4122     (21, 'item_lang', 'arg', oils_i18n_gettext('arg', 'Aragonese Spanish', 'ccvm', 'value')),
4123     (22, 'item_lang', 'arm', oils_i18n_gettext('arm', 'Armenian', 'ccvm', 'value')),
4124     (23, 'item_lang', 'arn', oils_i18n_gettext('arn', 'Mapuche', 'ccvm', 'value')),
4125     (24, 'item_lang', 'arp', oils_i18n_gettext('arp', 'Arapaho', 'ccvm', 'value')),
4126     (25, 'item_lang', 'art', oils_i18n_gettext('art', 'Artificial (Other)', 'ccvm', 'value')),
4127     (26, 'item_lang', 'arw', oils_i18n_gettext('arw', 'Arawak', 'ccvm', 'value')),
4128     (27, 'item_lang', 'asm', oils_i18n_gettext('asm', 'Assamese', 'ccvm', 'value')),
4129     (28, 'item_lang', 'ast', oils_i18n_gettext('ast', 'Bable', 'ccvm', 'value')),
4130     (29, 'item_lang', 'ath', oils_i18n_gettext('ath', 'Athapascan (Other)', 'ccvm', 'value')),
4131     (30, 'item_lang', 'aus', oils_i18n_gettext('aus', 'Australian languages', 'ccvm', 'value')),
4132     (31, 'item_lang', 'ava', oils_i18n_gettext('ava', 'Avaric', 'ccvm', 'value')),
4133     (32, 'item_lang', 'ave', oils_i18n_gettext('ave', 'Avestan', 'ccvm', 'value')),
4134     (33, 'item_lang', 'awa', oils_i18n_gettext('awa', 'Awadhi', 'ccvm', 'value')),
4135     (34, 'item_lang', 'aym', oils_i18n_gettext('aym', 'Aymara', 'ccvm', 'value')),
4136     (35, 'item_lang', 'aze', oils_i18n_gettext('aze', 'Azerbaijani', 'ccvm', 'value')),
4137     (36, 'item_lang', 'bad', oils_i18n_gettext('bad', 'Banda', 'ccvm', 'value')),
4138     (37, 'item_lang', 'bai', oils_i18n_gettext('bai', 'Bamileke languages', 'ccvm', 'value')),
4139     (38, 'item_lang', 'bak', oils_i18n_gettext('bak', 'Bashkir', 'ccvm', 'value')),
4140     (39, 'item_lang', 'bal', oils_i18n_gettext('bal', 'Baluchi', 'ccvm', 'value')),
4141     (40, 'item_lang', 'bam', oils_i18n_gettext('40', 'Bambara', 'ccvm', 'value')),
4142     (41, 'item_lang', 'ban', oils_i18n_gettext('41', 'Balinese', 'ccvm', 'value')),
4143     (42, 'item_lang', 'baq', oils_i18n_gettext('42', 'Basque', 'ccvm', 'value')),
4144     (43, 'item_lang', 'bas', oils_i18n_gettext('43', 'Basa', 'ccvm', 'value')),
4145     (44, 'item_lang', 'bat', oils_i18n_gettext('44', 'Baltic (Other)', 'ccvm', 'value')),
4146     (45, 'item_lang', 'bej', oils_i18n_gettext('45', 'Beja', 'ccvm', 'value')),
4147     (46, 'item_lang', 'bel', oils_i18n_gettext('46', 'Belarusian', 'ccvm', 'value')),
4148     (47, 'item_lang', 'bem', oils_i18n_gettext('47', 'Bemba', 'ccvm', 'value')),
4149     (48, 'item_lang', 'ben', oils_i18n_gettext('48', 'Bengali', 'ccvm', 'value')),
4150     (49, 'item_lang', 'ber', oils_i18n_gettext('49', 'Berber (Other)', 'ccvm', 'value')),
4151     (50, 'item_lang', 'bho', oils_i18n_gettext('50', 'Bhojpuri', 'ccvm', 'value')),
4152     (51, 'item_lang', 'bih', oils_i18n_gettext('51', 'Bihari', 'ccvm', 'value')),
4153     (52, 'item_lang', 'bik', oils_i18n_gettext('52', 'Bikol', 'ccvm', 'value')),
4154     (53, 'item_lang', 'bin', oils_i18n_gettext('53', 'Edo', 'ccvm', 'value')),
4155     (54, 'item_lang', 'bis', oils_i18n_gettext('54', 'Bislama', 'ccvm', 'value')),
4156     (55, 'item_lang', 'bla', oils_i18n_gettext('55', 'Siksika', 'ccvm', 'value')),
4157     (56, 'item_lang', 'bnt', oils_i18n_gettext('56', 'Bantu (Other)', 'ccvm', 'value')),
4158     (57, 'item_lang', 'bos', oils_i18n_gettext('57', 'Bosnian', 'ccvm', 'value')),
4159     (58, 'item_lang', 'bra', oils_i18n_gettext('58', 'Braj', 'ccvm', 'value')),
4160     (59, 'item_lang', 'bre', oils_i18n_gettext('59', 'Breton', 'ccvm', 'value')),
4161     (60, 'item_lang', 'btk', oils_i18n_gettext('60', 'Batak', 'ccvm', 'value')),
4162     (61, 'item_lang', 'bua', oils_i18n_gettext('61', 'Buriat', 'ccvm', 'value')),
4163     (62, 'item_lang', 'bug', oils_i18n_gettext('62', 'Bugis', 'ccvm', 'value')),
4164     (63, 'item_lang', 'bul', oils_i18n_gettext('63', 'Bulgarian', 'ccvm', 'value')),
4165     (64, 'item_lang', 'bur', oils_i18n_gettext('64', 'Burmese', 'ccvm', 'value')),
4166     (65, 'item_lang', 'cad', oils_i18n_gettext('65', 'Caddo', 'ccvm', 'value')),
4167     (66, 'item_lang', 'cai', oils_i18n_gettext('66', 'Central American Indian (Other)', 'ccvm', 'value')),
4168     (67, 'item_lang', '-cam', oils_i18n_gettext('67', 'Khmer', 'ccvm', 'value')),
4169     (68, 'item_lang', 'car', oils_i18n_gettext('68', 'Carib', 'ccvm', 'value')),
4170     (69, 'item_lang', 'cat', oils_i18n_gettext('69', 'Catalan', 'ccvm', 'value')),
4171     (70, 'item_lang', 'cau', oils_i18n_gettext('70', 'Caucasian (Other)', 'ccvm', 'value')),
4172     (71, 'item_lang', 'ceb', oils_i18n_gettext('71', 'Cebuano', 'ccvm', 'value')),
4173     (72, 'item_lang', 'cel', oils_i18n_gettext('72', 'Celtic (Other)', 'ccvm', 'value')),
4174     (73, 'item_lang', 'cha', oils_i18n_gettext('73', 'Chamorro', 'ccvm', 'value')),
4175     (74, 'item_lang', 'chb', oils_i18n_gettext('74', 'Chibcha', 'ccvm', 'value')),
4176     (75, 'item_lang', 'che', oils_i18n_gettext('75', 'Chechen', 'ccvm', 'value')),
4177     (76, 'item_lang', 'chg', oils_i18n_gettext('76', 'Chagatai', 'ccvm', 'value')),
4178     (77, 'item_lang', 'chi', oils_i18n_gettext('77', 'Chinese', 'ccvm', 'value')),
4179     (78, 'item_lang', 'chk', oils_i18n_gettext('78', 'Truk', 'ccvm', 'value')),
4180     (79, 'item_lang', 'chm', oils_i18n_gettext('79', 'Mari', 'ccvm', 'value')),
4181     (80, 'item_lang', 'chn', oils_i18n_gettext('80', 'Chinook jargon', 'ccvm', 'value')),
4182     (81, 'item_lang', 'cho', oils_i18n_gettext('81', 'Choctaw', 'ccvm', 'value')),
4183     (82, 'item_lang', 'chp', oils_i18n_gettext('82', 'Chipewyan', 'ccvm', 'value')),
4184     (83, 'item_lang', 'chr', oils_i18n_gettext('83', 'Cherokee', 'ccvm', 'value')),
4185     (84, 'item_lang', 'chu', oils_i18n_gettext('84', 'Church Slavic', 'ccvm', 'value')),
4186     (85, 'item_lang', 'chv', oils_i18n_gettext('85', 'Chuvash', 'ccvm', 'value')),
4187     (86, 'item_lang', 'chy', oils_i18n_gettext('86', 'Cheyenne', 'ccvm', 'value')),
4188     (87, 'item_lang', 'cmc', oils_i18n_gettext('87', 'Chamic languages', 'ccvm', 'value')),
4189     (88, 'item_lang', 'cop', oils_i18n_gettext('88', 'Coptic', 'ccvm', 'value')),
4190     (89, 'item_lang', 'cor', oils_i18n_gettext('89', 'Cornish', 'ccvm', 'value')),
4191     (90, 'item_lang', 'cos', oils_i18n_gettext('90', 'Corsican', 'ccvm', 'value')),
4192     (91, 'item_lang', 'cpe', oils_i18n_gettext('91', 'Creoles and Pidgins, English-based (Other)', 'ccvm', 'value')),
4193     (92, 'item_lang', 'cpf', oils_i18n_gettext('92', 'Creoles and Pidgins, French-based (Other)', 'ccvm', 'value')),
4194     (93, 'item_lang', 'cpp', oils_i18n_gettext('93', 'Creoles and Pidgins, Portuguese-based (Other)', 'ccvm', 'value')),
4195     (94, 'item_lang', 'cre', oils_i18n_gettext('94', 'Cree', 'ccvm', 'value')),
4196     (95, 'item_lang', 'crh', oils_i18n_gettext('95', 'Crimean Tatar', 'ccvm', 'value')),
4197     (96, 'item_lang', 'crp', oils_i18n_gettext('96', 'Creoles and Pidgins (Other)', 'ccvm', 'value')),
4198     (97, 'item_lang', 'cus', oils_i18n_gettext('97', 'Cushitic (Other)', 'ccvm', 'value')),
4199     (98, 'item_lang', 'cze', oils_i18n_gettext('98', 'Czech', 'ccvm', 'value')),
4200     (99, 'item_lang', 'dak', oils_i18n_gettext('99', 'Dakota', 'ccvm', 'value')),
4201     (100, 'item_lang', 'dan', oils_i18n_gettext('100', 'Danish', 'ccvm', 'value')),
4202     (101, 'item_lang', 'dar', oils_i18n_gettext('101', 'Dargwa', 'ccvm', 'value')),
4203     (102, 'item_lang', 'day', oils_i18n_gettext('102', 'Dayak', 'ccvm', 'value')),
4204     (103, 'item_lang', 'del', oils_i18n_gettext('103', 'Delaware', 'ccvm', 'value')),
4205     (104, 'item_lang', 'den', oils_i18n_gettext('104', 'Slave', 'ccvm', 'value')),
4206     (105, 'item_lang', 'dgr', oils_i18n_gettext('105', 'Dogrib', 'ccvm', 'value')),
4207     (106, 'item_lang', 'din', oils_i18n_gettext('106', 'Dinka', 'ccvm', 'value')),
4208     (107, 'item_lang', 'div', oils_i18n_gettext('107', 'Divehi', 'ccvm', 'value')),
4209     (108, 'item_lang', 'doi', oils_i18n_gettext('108', 'Dogri', 'ccvm', 'value')),
4210     (109, 'item_lang', 'dra', oils_i18n_gettext('109', 'Dravidian (Other)', 'ccvm', 'value')),
4211     (110, 'item_lang', 'dua', oils_i18n_gettext('110', 'Duala', 'ccvm', 'value')),
4212     (111, 'item_lang', 'dum', oils_i18n_gettext('111', 'Dutch, Middle (ca. 1050-1350)', 'ccvm', 'value')),
4213     (112, 'item_lang', 'dut', oils_i18n_gettext('112', 'Dutch', 'ccvm', 'value')),
4214     (113, 'item_lang', 'dyu', oils_i18n_gettext('113', 'Dyula', 'ccvm', 'value')),
4215     (114, 'item_lang', 'dzo', oils_i18n_gettext('114', 'Dzongkha', 'ccvm', 'value')),
4216     (115, 'item_lang', 'efi', oils_i18n_gettext('115', 'Efik', 'ccvm', 'value')),
4217     (116, 'item_lang', 'egy', oils_i18n_gettext('116', 'Egyptian', 'ccvm', 'value')),
4218     (117, 'item_lang', 'eka', oils_i18n_gettext('117', 'Ekajuk', 'ccvm', 'value')),
4219     (118, 'item_lang', 'elx', oils_i18n_gettext('118', 'Elamite', 'ccvm', 'value')),
4220     (119, 'item_lang', 'eng', oils_i18n_gettext('119', 'English', 'ccvm', 'value')),
4221     (120, 'item_lang', 'enm', oils_i18n_gettext('120', 'English, Middle (1100-1500)', 'ccvm', 'value')),
4222     (121, 'item_lang', 'epo', oils_i18n_gettext('121', 'Esperanto', 'ccvm', 'value')),
4223     (122, 'item_lang', '-esk', oils_i18n_gettext('122', 'Eskimo languages', 'ccvm', 'value')),
4224     (123, 'item_lang', '-esp', oils_i18n_gettext('123', 'Esperanto', 'ccvm', 'value')),
4225     (124, 'item_lang', 'est', oils_i18n_gettext('124', 'Estonian', 'ccvm', 'value')),
4226     (125, 'item_lang', '-eth', oils_i18n_gettext('125', 'Ethiopic', 'ccvm', 'value')),
4227     (126, 'item_lang', 'ewe', oils_i18n_gettext('126', 'Ewe', 'ccvm', 'value')),
4228     (127, 'item_lang', 'ewo', oils_i18n_gettext('127', 'Ewondo', 'ccvm', 'value')),
4229     (128, 'item_lang', 'fan', oils_i18n_gettext('128', 'Fang', 'ccvm', 'value')),
4230     (129, 'item_lang', 'fao', oils_i18n_gettext('129', 'Faroese', 'ccvm', 'value')),
4231     (130, 'item_lang', '-far', oils_i18n_gettext('130', 'Faroese', 'ccvm', 'value')),
4232     (131, 'item_lang', 'fat', oils_i18n_gettext('131', 'Fanti', 'ccvm', 'value')),
4233     (132, 'item_lang', 'fij', oils_i18n_gettext('132', 'Fijian', 'ccvm', 'value')),
4234     (133, 'item_lang', 'fin', oils_i18n_gettext('133', 'Finnish', 'ccvm', 'value')),
4235     (134, 'item_lang', 'fiu', oils_i18n_gettext('134', 'Finno-Ugrian (Other)', 'ccvm', 'value')),
4236     (135, 'item_lang', 'fon', oils_i18n_gettext('135', 'Fon', 'ccvm', 'value')),
4237     (136, 'item_lang', 'fre', oils_i18n_gettext('136', 'French', 'ccvm', 'value')),
4238     (137, 'item_lang', '-fri', oils_i18n_gettext('137', 'Frisian', 'ccvm', 'value')),
4239     (138, 'item_lang', 'frm', oils_i18n_gettext('138', 'French, Middle (ca. 1400-1600)', 'ccvm', 'value')),
4240     (139, 'item_lang', 'fro', oils_i18n_gettext('139', 'French, Old (ca. 842-1400)', 'ccvm', 'value')),
4241     (140, 'item_lang', 'fry', oils_i18n_gettext('140', 'Frisian', 'ccvm', 'value')),
4242     (141, 'item_lang', 'ful', oils_i18n_gettext('141', 'Fula', 'ccvm', 'value')),
4243     (142, 'item_lang', 'fur', oils_i18n_gettext('142', 'Friulian', 'ccvm', 'value')),
4244     (143, 'item_lang', 'gaa', oils_i18n_gettext('143', 'Gã', 'ccvm', 'value')),
4245     (144, 'item_lang', '-gae', oils_i18n_gettext('144', 'Scottish Gaelic', 'ccvm', 'value')),
4246     (145, 'item_lang', '-gag', oils_i18n_gettext('145', 'Galician', 'ccvm', 'value')),
4247     (146, 'item_lang', '-gal', oils_i18n_gettext('146', 'Oromo', 'ccvm', 'value')),
4248     (147, 'item_lang', 'gay', oils_i18n_gettext('147', 'Gayo', 'ccvm', 'value')),
4249     (148, 'item_lang', 'gba', oils_i18n_gettext('148', 'Gbaya', 'ccvm', 'value')),
4250     (149, 'item_lang', 'gem', oils_i18n_gettext('149', 'Germanic (Other)', 'ccvm', 'value')),
4251     (150, 'item_lang', 'geo', oils_i18n_gettext('150', 'Georgian', 'ccvm', 'value')),
4252     (151, 'item_lang', 'ger', oils_i18n_gettext('151', 'German', 'ccvm', 'value')),
4253     (152, 'item_lang', 'gez', oils_i18n_gettext('152', 'Ethiopic', 'ccvm', 'value')),
4254     (153, 'item_lang', 'gil', oils_i18n_gettext('153', 'Gilbertese', 'ccvm', 'value')),
4255     (154, 'item_lang', 'gla', oils_i18n_gettext('154', 'Scottish Gaelic', 'ccvm', 'value')),
4256     (155, 'item_lang', 'gle', oils_i18n_gettext('155', 'Irish', 'ccvm', 'value')),
4257     (156, 'item_lang', 'glg', oils_i18n_gettext('156', 'Galician', 'ccvm', 'value')),
4258     (157, 'item_lang', 'glv', oils_i18n_gettext('157', 'Manx', 'ccvm', 'value')),
4259     (158, 'item_lang', 'gmh', oils_i18n_gettext('158', 'German, Middle High (ca. 1050-1500)', 'ccvm', 'value')),
4260     (159, 'item_lang', 'goh', oils_i18n_gettext('159', 'German, Old High (ca. 750-1050)', 'ccvm', 'value')),
4261     (160, 'item_lang', 'gon', oils_i18n_gettext('160', 'Gondi', 'ccvm', 'value')),
4262     (161, 'item_lang', 'gor', oils_i18n_gettext('161', 'Gorontalo', 'ccvm', 'value')),
4263     (162, 'item_lang', 'got', oils_i18n_gettext('162', 'Gothic', 'ccvm', 'value')),
4264     (163, 'item_lang', 'grb', oils_i18n_gettext('163', 'Grebo', 'ccvm', 'value')),
4265     (164, 'item_lang', 'grc', oils_i18n_gettext('164', 'Greek, Ancient (to 1453)', 'ccvm', 'value')),
4266     (165, 'item_lang', 'gre', oils_i18n_gettext('165', 'Greek, Modern (1453- )', 'ccvm', 'value')),
4267     (166, 'item_lang', 'grn', oils_i18n_gettext('166', 'Guarani', 'ccvm', 'value')),
4268     (167, 'item_lang', '-gua', oils_i18n_gettext('167', 'Guarani', 'ccvm', 'value')),
4269     (168, 'item_lang', 'guj', oils_i18n_gettext('168', 'Gujarati', 'ccvm', 'value')),
4270     (169, 'item_lang', 'gwi', oils_i18n_gettext('169', 'Gwich', 'ccvm', 'value''in')),
4271     (170, 'item_lang', 'hai', oils_i18n_gettext('170', 'Haida', 'ccvm', 'value')),
4272     (171, 'item_lang', 'hat', oils_i18n_gettext('171', 'Haitian French Creole', 'ccvm', 'value')),
4273     (172, 'item_lang', 'hau', oils_i18n_gettext('172', 'Hausa', 'ccvm', 'value')),
4274     (173, 'item_lang', 'haw', oils_i18n_gettext('173', 'Hawaiian', 'ccvm', 'value')),
4275     (174, 'item_lang', 'heb', oils_i18n_gettext('174', 'Hebrew', 'ccvm', 'value')),
4276     (175, 'item_lang', 'her', oils_i18n_gettext('175', 'Herero', 'ccvm', 'value')),
4277     (176, 'item_lang', 'hil', oils_i18n_gettext('176', 'Hiligaynon', 'ccvm', 'value')),
4278     (177, 'item_lang', 'him', oils_i18n_gettext('177', 'Himachali', 'ccvm', 'value')),
4279     (178, 'item_lang', 'hin', oils_i18n_gettext('178', 'Hindi', 'ccvm', 'value')),
4280     (179, 'item_lang', 'hit', oils_i18n_gettext('179', 'Hittite', 'ccvm', 'value')),
4281     (180, 'item_lang', 'hmn', oils_i18n_gettext('180', 'Hmong', 'ccvm', 'value')),
4282     (181, 'item_lang', 'hmo', oils_i18n_gettext('181', 'Hiri Motu', 'ccvm', 'value')),
4283     (182, 'item_lang', 'hun', oils_i18n_gettext('182', 'Hungarian', 'ccvm', 'value')),
4284     (183, 'item_lang', 'hup', oils_i18n_gettext('183', 'Hupa', 'ccvm', 'value')),
4285     (184, 'item_lang', 'iba', oils_i18n_gettext('184', 'Iban', 'ccvm', 'value')),
4286     (185, 'item_lang', 'ibo', oils_i18n_gettext('185', 'Igbo', 'ccvm', 'value')),
4287     (186, 'item_lang', 'ice', oils_i18n_gettext('186', 'Icelandic', 'ccvm', 'value')),
4288     (187, 'item_lang', 'ido', oils_i18n_gettext('187', 'Ido', 'ccvm', 'value')),
4289     (188, 'item_lang', 'iii', oils_i18n_gettext('188', 'Sichuan Yi', 'ccvm', 'value')),
4290     (189, 'item_lang', 'ijo', oils_i18n_gettext('189', 'Ijo', 'ccvm', 'value')),
4291     (190, 'item_lang', 'iku', oils_i18n_gettext('190', 'Inuktitut', 'ccvm', 'value')),
4292     (191, 'item_lang', 'ile', oils_i18n_gettext('191', 'Interlingue', 'ccvm', 'value')),
4293     (192, 'item_lang', 'ilo', oils_i18n_gettext('192', 'Iloko', 'ccvm', 'value')),
4294     (193, 'item_lang', 'ina', oils_i18n_gettext('193', 'Interlingua (International Auxiliary Language Association)', 'ccvm', 'value')),
4295     (194, 'item_lang', 'inc', oils_i18n_gettext('194', 'Indic (Other)', 'ccvm', 'value')),
4296     (195, 'item_lang', 'ind', oils_i18n_gettext('195', 'Indonesian', 'ccvm', 'value')),
4297     (196, 'item_lang', 'ine', oils_i18n_gettext('196', 'Indo-European (Other)', 'ccvm', 'value')),
4298     (197, 'item_lang', 'inh', oils_i18n_gettext('197', 'Ingush', 'ccvm', 'value')),
4299     (198, 'item_lang', '-int', oils_i18n_gettext('198', 'Interlingua (International Auxiliary Language Association)', 'ccvm', 'value')),
4300     (199, 'item_lang', 'ipk', oils_i18n_gettext('199', 'Inupiaq', 'ccvm', 'value')),
4301     (200, 'item_lang', 'ira', oils_i18n_gettext('200', 'Iranian (Other)', 'ccvm', 'value')),
4302     (201, 'item_lang', '-iri', oils_i18n_gettext('201', 'Irish', 'ccvm', 'value')),
4303     (202, 'item_lang', 'iro', oils_i18n_gettext('202', 'Iroquoian (Other)', 'ccvm', 'value')),
4304     (203, 'item_lang', 'ita', oils_i18n_gettext('203', 'Italian', 'ccvm', 'value')),
4305     (204, 'item_lang', 'jav', oils_i18n_gettext('204', 'Javanese', 'ccvm', 'value')),
4306     (205, 'item_lang', 'jpn', oils_i18n_gettext('205', 'Japanese', 'ccvm', 'value')),
4307     (206, 'item_lang', 'jpr', oils_i18n_gettext('206', 'Judeo-Persian', 'ccvm', 'value')),
4308     (207, 'item_lang', 'jrb', oils_i18n_gettext('207', 'Judeo-Arabic', 'ccvm', 'value')),
4309     (208, 'item_lang', 'kaa', oils_i18n_gettext('208', 'Kara-Kalpak', 'ccvm', 'value')),
4310     (209, 'item_lang', 'kab', oils_i18n_gettext('209', 'Kabyle', 'ccvm', 'value')),
4311     (210, 'item_lang', 'kac', oils_i18n_gettext('210', 'Kachin', 'ccvm', 'value')),
4312     (211, 'item_lang', 'kal', oils_i18n_gettext('211', 'Kalâtdlisut', 'ccvm', 'value')),
4313     (212, 'item_lang', 'kam', oils_i18n_gettext('212', 'Kamba', 'ccvm', 'value')),
4314     (213, 'item_lang', 'kan', oils_i18n_gettext('213', 'Kannada', 'ccvm', 'value')),
4315     (214, 'item_lang', 'kar', oils_i18n_gettext('214', 'Karen', 'ccvm', 'value')),
4316     (215, 'item_lang', 'kas', oils_i18n_gettext('215', 'Kashmiri', 'ccvm', 'value')),
4317     (216, 'item_lang', 'kau', oils_i18n_gettext('216', 'Kanuri', 'ccvm', 'value')),
4318     (217, 'item_lang', 'kaw', oils_i18n_gettext('217', 'Kawi', 'ccvm', 'value')),
4319     (218, 'item_lang', 'kaz', oils_i18n_gettext('218', 'Kazakh', 'ccvm', 'value')),
4320     (219, 'item_lang', 'kbd', oils_i18n_gettext('219', 'Kabardian', 'ccvm', 'value')),
4321     (220, 'item_lang', 'kha', oils_i18n_gettext('220', 'Khasi', 'ccvm', 'value')),
4322     (221, 'item_lang', 'khi', oils_i18n_gettext('221', 'Khoisan (Other)', 'ccvm', 'value')),
4323     (222, 'item_lang', 'khm', oils_i18n_gettext('222', 'Khmer', 'ccvm', 'value')),
4324     (223, 'item_lang', 'kho', oils_i18n_gettext('223', 'Khotanese', 'ccvm', 'value')),
4325     (224, 'item_lang', 'kik', oils_i18n_gettext('224', 'Kikuyu', 'ccvm', 'value')),
4326     (225, 'item_lang', 'kin', oils_i18n_gettext('225', 'Kinyarwanda', 'ccvm', 'value')),
4327     (226, 'item_lang', 'kir', oils_i18n_gettext('226', 'Kyrgyz', 'ccvm', 'value')),
4328     (227, 'item_lang', 'kmb', oils_i18n_gettext('227', 'Kimbundu', 'ccvm', 'value')),
4329     (228, 'item_lang', 'kok', oils_i18n_gettext('228', 'Konkani', 'ccvm', 'value')),
4330     (229, 'item_lang', 'kom', oils_i18n_gettext('229', 'Komi', 'ccvm', 'value')),
4331     (230, 'item_lang', 'kon', oils_i18n_gettext('230', 'Kongo', 'ccvm', 'value')),
4332     (231, 'item_lang', 'kor', oils_i18n_gettext('231', 'Korean', 'ccvm', 'value')),
4333     (232, 'item_lang', 'kos', oils_i18n_gettext('232', 'Kusaie', 'ccvm', 'value')),
4334     (233, 'item_lang', 'kpe', oils_i18n_gettext('233', 'Kpelle', 'ccvm', 'value')),
4335     (234, 'item_lang', 'kro', oils_i18n_gettext('234', 'Kru', 'ccvm', 'value')),
4336     (235, 'item_lang', 'kru', oils_i18n_gettext('235', 'Kurukh', 'ccvm', 'value')),
4337     (236, 'item_lang', 'kua', oils_i18n_gettext('236', 'Kuanyama', 'ccvm', 'value')),
4338     (237, 'item_lang', 'kum', oils_i18n_gettext('237', 'Kumyk', 'ccvm', 'value')),
4339     (238, 'item_lang', 'kur', oils_i18n_gettext('238', 'Kurdish', 'ccvm', 'value')),
4340     (239, 'item_lang', '-kus', oils_i18n_gettext('239', 'Kusaie', 'ccvm', 'value')),
4341     (240, 'item_lang', 'kut', oils_i18n_gettext('240', 'Kutenai', 'ccvm', 'value')),
4342     (241, 'item_lang', 'lad', oils_i18n_gettext('241', 'Ladino', 'ccvm', 'value')),
4343     (242, 'item_lang', 'lah', oils_i18n_gettext('242', 'Lahnda', 'ccvm', 'value')),
4344     (243, 'item_lang', 'lam', oils_i18n_gettext('243', 'Lamba', 'ccvm', 'value')),
4345     (244, 'item_lang', '-lan', oils_i18n_gettext('244', 'Occitan (post-1500)', 'ccvm', 'value')),
4346     (245, 'item_lang', 'lao', oils_i18n_gettext('245', 'Lao', 'ccvm', 'value')),
4347     (246, 'item_lang', '-lap', oils_i18n_gettext('246', 'Sami', 'ccvm', 'value')),
4348     (247, 'item_lang', 'lat', oils_i18n_gettext('247', 'Latin', 'ccvm', 'value')),
4349     (248, 'item_lang', 'lav', oils_i18n_gettext('248', 'Latvian', 'ccvm', 'value')),
4350     (249, 'item_lang', 'lez', oils_i18n_gettext('249', 'Lezgian', 'ccvm', 'value')),
4351     (250, 'item_lang', 'lim', oils_i18n_gettext('250', 'Limburgish', 'ccvm', 'value')),
4352     (251, 'item_lang', 'lin', oils_i18n_gettext('251', 'Lingala', 'ccvm', 'value')),
4353     (252, 'item_lang', 'lit', oils_i18n_gettext('252', 'Lithuanian', 'ccvm', 'value')),
4354     (253, 'item_lang', 'lol', oils_i18n_gettext('253', 'Mongo-Nkundu', 'ccvm', 'value')),
4355     (254, 'item_lang', 'loz', oils_i18n_gettext('254', 'Lozi', 'ccvm', 'value')),
4356     (255, 'item_lang', 'ltz', oils_i18n_gettext('255', 'Letzeburgesch', 'ccvm', 'value')),
4357     (256, 'item_lang', 'lua', oils_i18n_gettext('256', 'Luba-Lulua', 'ccvm', 'value')),
4358     (257, 'item_lang', 'lub', oils_i18n_gettext('257', 'Luba-Katanga', 'ccvm', 'value')),
4359     (258, 'item_lang', 'lug', oils_i18n_gettext('258', 'Ganda', 'ccvm', 'value')),
4360     (259, 'item_lang', 'lui', oils_i18n_gettext('259', 'Luiseño', 'ccvm', 'value')),
4361     (260, 'item_lang', 'lun', oils_i18n_gettext('260', 'Lunda', 'ccvm', 'value')),
4362     (261, 'item_lang', 'luo', oils_i18n_gettext('261', 'Luo (Kenya and Tanzania)', 'ccvm', 'value')),
4363     (262, 'item_lang', 'lus', oils_i18n_gettext('262', 'Lushai', 'ccvm', 'value')),
4364     (263, 'item_lang', 'mac', oils_i18n_gettext('263', 'Macedonian', 'ccvm', 'value')),
4365     (264, 'item_lang', 'mad', oils_i18n_gettext('264', 'Madurese', 'ccvm', 'value')),
4366     (265, 'item_lang', 'mag', oils_i18n_gettext('265', 'Magahi', 'ccvm', 'value')),
4367     (266, 'item_lang', 'mah', oils_i18n_gettext('266', 'Marshallese', 'ccvm', 'value')),
4368     (267, 'item_lang', 'mai', oils_i18n_gettext('267', 'Maithili', 'ccvm', 'value')),
4369     (268, 'item_lang', 'mak', oils_i18n_gettext('268', 'Makasar', 'ccvm', 'value')),
4370     (269, 'item_lang', 'mal', oils_i18n_gettext('269', 'Malayalam', 'ccvm', 'value')),
4371     (270, 'item_lang', 'man', oils_i18n_gettext('270', 'Mandingo', 'ccvm', 'value')),
4372     (271, 'item_lang', 'mao', oils_i18n_gettext('271', 'Maori', 'ccvm', 'value')),
4373     (272, 'item_lang', 'map', oils_i18n_gettext('272', 'Austronesian (Other)', 'ccvm', 'value')),
4374     (273, 'item_lang', 'mar', oils_i18n_gettext('273', 'Marathi', 'ccvm', 'value')),
4375     (274, 'item_lang', 'mas', oils_i18n_gettext('274', 'Masai', 'ccvm', 'value')),
4376     (275, 'item_lang', '-max', oils_i18n_gettext('275', 'Manx', 'ccvm', 'value')),
4377     (276, 'item_lang', 'may', oils_i18n_gettext('276', 'Malay', 'ccvm', 'value')),
4378     (277, 'item_lang', 'mdr', oils_i18n_gettext('277', 'Mandar', 'ccvm', 'value')),
4379     (278, 'item_lang', 'men', oils_i18n_gettext('278', 'Mende', 'ccvm', 'value')),
4380     (279, 'item_lang', 'mga', oils_i18n_gettext('279', 'Irish, Middle (ca. 1100-1550)', 'ccvm', 'value')),
4381     (280, 'item_lang', 'mic', oils_i18n_gettext('280', 'Micmac', 'ccvm', 'value')),
4382     (281, 'item_lang', 'min', oils_i18n_gettext('281', 'Minangkabau', 'ccvm', 'value')),
4383     (282, 'item_lang', 'mis', oils_i18n_gettext('282', 'Miscellaneous languages', 'ccvm', 'value')),
4384     (283, 'item_lang', 'mkh', oils_i18n_gettext('283', 'Mon-Khmer (Other)', 'ccvm', 'value')),
4385     (284, 'item_lang', '-mla', oils_i18n_gettext('284', 'Malagasy', 'ccvm', 'value')),
4386     (285, 'item_lang', 'mlg', oils_i18n_gettext('285', 'Malagasy', 'ccvm', 'value')),
4387     (286, 'item_lang', 'mlt', oils_i18n_gettext('286', 'Maltese', 'ccvm', 'value')),
4388     (287, 'item_lang', 'mnc', oils_i18n_gettext('287', 'Manchu', 'ccvm', 'value')),
4389     (288, 'item_lang', 'mni', oils_i18n_gettext('288', 'Manipuri', 'ccvm', 'value')),
4390     (289, 'item_lang', 'mno', oils_i18n_gettext('289', 'Manobo languages', 'ccvm', 'value')),
4391     (290, 'item_lang', 'moh', oils_i18n_gettext('290', 'Mohawk', 'ccvm', 'value')),
4392     (291, 'item_lang', 'mol', oils_i18n_gettext('291', 'Moldavian', 'ccvm', 'value')),
4393     (292, 'item_lang', 'mon', oils_i18n_gettext('292', 'Mongolian', 'ccvm', 'value')),
4394     (293, 'item_lang', 'mos', oils_i18n_gettext('293', 'Mooré', 'ccvm', 'value')),
4395     (294, 'item_lang', 'mul', oils_i18n_gettext('294', 'Multiple languages', 'ccvm', 'value')),
4396     (295, 'item_lang', 'mun', oils_i18n_gettext('295', 'Munda (Other)', 'ccvm', 'value')),
4397     (296, 'item_lang', 'mus', oils_i18n_gettext('296', 'Creek', 'ccvm', 'value')),
4398     (297, 'item_lang', 'mwr', oils_i18n_gettext('297', 'Marwari', 'ccvm', 'value')),
4399     (298, 'item_lang', 'myn', oils_i18n_gettext('298', 'Mayan languages', 'ccvm', 'value')),
4400     (299, 'item_lang', 'nah', oils_i18n_gettext('299', 'Nahuatl', 'ccvm', 'value')),
4401     (300, 'item_lang', 'nai', oils_i18n_gettext('300', 'North American Indian (Other)', 'ccvm', 'value')),
4402     (301, 'item_lang', 'nap', oils_i18n_gettext('301', 'Neapolitan Italian', 'ccvm', 'value')),
4403     (302, 'item_lang', 'nau', oils_i18n_gettext('302', 'Nauru', 'ccvm', 'value')),
4404     (303, 'item_lang', 'nav', oils_i18n_gettext('303', 'Navajo', 'ccvm', 'value')),
4405     (304, 'item_lang', 'nbl', oils_i18n_gettext('304', 'Ndebele (South Africa)', 'ccvm', 'value')),
4406     (305, 'item_lang', 'nde', oils_i18n_gettext('305', 'Ndebele (Zimbabwe)  ', 'ccvm', 'value')),
4407     (306, 'item_lang', 'ndo', oils_i18n_gettext('306', 'Ndonga', 'ccvm', 'value')),
4408     (307, 'item_lang', 'nds', oils_i18n_gettext('307', 'Low German', 'ccvm', 'value')),
4409     (308, 'item_lang', 'nep', oils_i18n_gettext('308', 'Nepali', 'ccvm', 'value')),
4410     (309, 'item_lang', 'new', oils_i18n_gettext('309', 'Newari', 'ccvm', 'value')),
4411     (310, 'item_lang', 'nia', oils_i18n_gettext('310', 'Nias', 'ccvm', 'value')),
4412     (311, 'item_lang', 'nic', oils_i18n_gettext('311', 'Niger-Kordofanian (Other)', 'ccvm', 'value')),
4413     (312, 'item_lang', 'niu', oils_i18n_gettext('312', 'Niuean', 'ccvm', 'value')),
4414     (313, 'item_lang', 'nno', oils_i18n_gettext('313', 'Norwegian (Nynorsk)', 'ccvm', 'value')),
4415     (314, 'item_lang', 'nob', oils_i18n_gettext('314', 'Norwegian (BokmÃ¥l)', 'ccvm', 'value')),
4416     (315, 'item_lang', 'nog', oils_i18n_gettext('315', 'Nogai', 'ccvm', 'value')),
4417     (316, 'item_lang', 'non', oils_i18n_gettext('316', 'Old Norse', 'ccvm', 'value')),
4418     (317, 'item_lang', 'nor', oils_i18n_gettext('317', 'Norwegian', 'ccvm', 'value')),
4419     (318, 'item_lang', 'nso', oils_i18n_gettext('318', 'Northern Sotho', 'ccvm', 'value')),
4420     (319, 'item_lang', 'nub', oils_i18n_gettext('319', 'Nubian languages', 'ccvm', 'value')),
4421     (320, 'item_lang', 'nya', oils_i18n_gettext('320', 'Nyanja', 'ccvm', 'value')),
4422     (321, 'item_lang', 'nym', oils_i18n_gettext('321', 'Nyamwezi', 'ccvm', 'value')),
4423     (322, 'item_lang', 'nyn', oils_i18n_gettext('322', 'Nyankole', 'ccvm', 'value')),
4424     (323, 'item_lang', 'nyo', oils_i18n_gettext('323', 'Nyoro', 'ccvm', 'value')),
4425     (324, 'item_lang', 'nzi', oils_i18n_gettext('324', 'Nzima', 'ccvm', 'value')),
4426     (325, 'item_lang', 'oci', oils_i18n_gettext('325', 'Occitan (post-1500)', 'ccvm', 'value')),
4427     (326, 'item_lang', 'oji', oils_i18n_gettext('326', 'Ojibwa', 'ccvm', 'value')),
4428     (327, 'item_lang', 'ori', oils_i18n_gettext('327', 'Oriya', 'ccvm', 'value')),
4429     (328, 'item_lang', 'orm', oils_i18n_gettext('328', 'Oromo', 'ccvm', 'value')),
4430     (329, 'item_lang', 'osa', oils_i18n_gettext('329', 'Osage', 'ccvm', 'value')),
4431     (330, 'item_lang', 'oss', oils_i18n_gettext('330', 'Ossetic', 'ccvm', 'value')),
4432     (331, 'item_lang', 'ota', oils_i18n_gettext('331', 'Turkish, Ottoman', 'ccvm', 'value')),
4433     (332, 'item_lang', 'oto', oils_i18n_gettext('332', 'Otomian languages', 'ccvm', 'value')),
4434     (333, 'item_lang', 'paa', oils_i18n_gettext('333', 'Papuan (Other)', 'ccvm', 'value')),
4435     (334, 'item_lang', 'pag', oils_i18n_gettext('334', 'Pangasinan', 'ccvm', 'value')),
4436     (335, 'item_lang', 'pal', oils_i18n_gettext('335', 'Pahlavi', 'ccvm', 'value')),
4437     (336, 'item_lang', 'pam', oils_i18n_gettext('336', 'Pampanga', 'ccvm', 'value')),
4438     (337, 'item_lang', 'pan', oils_i18n_gettext('337', 'Panjabi', 'ccvm', 'value')),
4439     (338, 'item_lang', 'pap', oils_i18n_gettext('338', 'Papiamento', 'ccvm', 'value')),
4440     (339, 'item_lang', 'pau', oils_i18n_gettext('339', 'Palauan', 'ccvm', 'value')),
4441     (340, 'item_lang', 'peo', oils_i18n_gettext('340', 'Old Persian (ca. 600-400 B.C.)', 'ccvm', 'value')),
4442     (341, 'item_lang', 'per', oils_i18n_gettext('341', 'Persian', 'ccvm', 'value')),
4443     (342, 'item_lang', 'phi', oils_i18n_gettext('342', 'Philippine (Other)', 'ccvm', 'value')),
4444     (343, 'item_lang', 'phn', oils_i18n_gettext('343', 'Phoenician', 'ccvm', 'value')),
4445     (344, 'item_lang', 'pli', oils_i18n_gettext('344', 'Pali', 'ccvm', 'value')),
4446     (345, 'item_lang', 'pol', oils_i18n_gettext('345', 'Polish', 'ccvm', 'value')),
4447     (346, 'item_lang', 'pon', oils_i18n_gettext('346', 'Ponape', 'ccvm', 'value')),
4448     (347, 'item_lang', 'por', oils_i18n_gettext('347', 'Portuguese', 'ccvm', 'value')),
4449     (348, 'item_lang', 'pra', oils_i18n_gettext('348', 'Prakrit languages', 'ccvm', 'value')),
4450     (349, 'item_lang', 'pro', oils_i18n_gettext('349', 'Provençal (to 1500)', 'ccvm', 'value')),
4451     (350, 'item_lang', 'pus', oils_i18n_gettext('350', 'Pushto', 'ccvm', 'value')),
4452     (351, 'item_lang', 'que', oils_i18n_gettext('351', 'Quechua', 'ccvm', 'value')),
4453     (352, 'item_lang', 'raj', oils_i18n_gettext('352', 'Rajasthani', 'ccvm', 'value')),
4454     (353, 'item_lang', 'rap', oils_i18n_gettext('353', 'Rapanui', 'ccvm', 'value')),
4455     (354, 'item_lang', 'rar', oils_i18n_gettext('354', 'Rarotongan', 'ccvm', 'value')),
4456     (355, 'item_lang', 'roa', oils_i18n_gettext('355', 'Romance (Other)', 'ccvm', 'value')),
4457     (356, 'item_lang', 'roh', oils_i18n_gettext('356', 'Raeto-Romance', 'ccvm', 'value')),
4458     (357, 'item_lang', 'rom', oils_i18n_gettext('357', 'Romani', 'ccvm', 'value')),
4459     (358, 'item_lang', 'rum', oils_i18n_gettext('358', 'Romanian', 'ccvm', 'value')),
4460     (359, 'item_lang', 'run', oils_i18n_gettext('359', 'Rundi', 'ccvm', 'value')),
4461     (360, 'item_lang', 'rus', oils_i18n_gettext('360', 'Russian', 'ccvm', 'value')),
4462     (361, 'item_lang', 'sad', oils_i18n_gettext('361', 'Sandawe', 'ccvm', 'value')),
4463     (362, 'item_lang', 'sag', oils_i18n_gettext('362', 'Sango (Ubangi Creole)', 'ccvm', 'value')),
4464     (363, 'item_lang', 'sah', oils_i18n_gettext('363', 'Yakut', 'ccvm', 'value')),
4465     (364, 'item_lang', 'sai', oils_i18n_gettext('364', 'South American Indian (Other)', 'ccvm', 'value')),
4466     (365, 'item_lang', 'sal', oils_i18n_gettext('365', 'Salishan languages', 'ccvm', 'value')),
4467     (366, 'item_lang', 'sam', oils_i18n_gettext('366', 'Samaritan Aramaic', 'ccvm', 'value')),
4468     (367, 'item_lang', 'san', oils_i18n_gettext('367', 'Sanskrit', 'ccvm', 'value')),
4469     (368, 'item_lang', '-sao', oils_i18n_gettext('368', 'Samoan', 'ccvm', 'value')),
4470     (369, 'item_lang', 'sas', oils_i18n_gettext('369', 'Sasak', 'ccvm', 'value')),
4471     (370, 'item_lang', 'sat', oils_i18n_gettext('370', 'Santali', 'ccvm', 'value')),
4472     (371, 'item_lang', 'scc', oils_i18n_gettext('371', 'Serbian', 'ccvm', 'value')),
4473     (372, 'item_lang', 'sco', oils_i18n_gettext('372', 'Scots', 'ccvm', 'value')),
4474     (373, 'item_lang', 'scr', oils_i18n_gettext('373', 'Croatian', 'ccvm', 'value')),
4475     (374, 'item_lang', 'sel', oils_i18n_gettext('374', 'Selkup', 'ccvm', 'value')),
4476     (375, 'item_lang', 'sem', oils_i18n_gettext('375', 'Semitic (Other)', 'ccvm', 'value')),
4477     (376, 'item_lang', 'sga', oils_i18n_gettext('376', 'Irish, Old (to 1100)', 'ccvm', 'value')),
4478     (377, 'item_lang', 'sgn', oils_i18n_gettext('377', 'Sign languages', 'ccvm', 'value')),
4479     (378, 'item_lang', 'shn', oils_i18n_gettext('378', 'Shan', 'ccvm', 'value')),
4480     (379, 'item_lang', '-sho', oils_i18n_gettext('379', 'Shona', 'ccvm', 'value')),
4481     (380, 'item_lang', 'sid', oils_i18n_gettext('380', 'Sidamo', 'ccvm', 'value')),
4482     (381, 'item_lang', 'sin', oils_i18n_gettext('381', 'Sinhalese', 'ccvm', 'value')),
4483     (382, 'item_lang', 'sio', oils_i18n_gettext('382', 'Siouan (Other)', 'ccvm', 'value')),
4484     (383, 'item_lang', 'sit', oils_i18n_gettext('383', 'Sino-Tibetan (Other)', 'ccvm', 'value')),
4485     (384, 'item_lang', 'sla', oils_i18n_gettext('384', 'Slavic (Other)', 'ccvm', 'value')),
4486     (385, 'item_lang', 'slo', oils_i18n_gettext('385', 'Slovak', 'ccvm', 'value')),
4487     (386, 'item_lang', 'slv', oils_i18n_gettext('386', 'Slovenian', 'ccvm', 'value')),
4488     (387, 'item_lang', 'sma', oils_i18n_gettext('387', 'Southern Sami', 'ccvm', 'value')),
4489     (388, 'item_lang', 'sme', oils_i18n_gettext('388', 'Northern Sami', 'ccvm', 'value')),
4490     (389, 'item_lang', 'smi', oils_i18n_gettext('389', 'Sami', 'ccvm', 'value')),
4491     (390, 'item_lang', 'smj', oils_i18n_gettext('390', 'Lule Sami', 'ccvm', 'value')),
4492     (391, 'item_lang', 'smn', oils_i18n_gettext('391', 'Inari Sami', 'ccvm', 'value')),
4493     (392, 'item_lang', 'smo', oils_i18n_gettext('392', 'Samoan', 'ccvm', 'value')),
4494     (393, 'item_lang', 'sms', oils_i18n_gettext('393', 'Skolt Sami', 'ccvm', 'value')),
4495     (394, 'item_lang', 'sna', oils_i18n_gettext('394', 'Shona', 'ccvm', 'value')),
4496     (395, 'item_lang', 'snd', oils_i18n_gettext('395', 'Sindhi', 'ccvm', 'value')),
4497     (396, 'item_lang', '-snh', oils_i18n_gettext('396', 'Sinhalese', 'ccvm', 'value')),
4498     (397, 'item_lang', 'snk', oils_i18n_gettext('397', 'Soninke', 'ccvm', 'value')),
4499     (398, 'item_lang', 'sog', oils_i18n_gettext('398', 'Sogdian', 'ccvm', 'value')),
4500     (399, 'item_lang', 'som', oils_i18n_gettext('399', 'Somali', 'ccvm', 'value')),
4501     (400, 'item_lang', 'son', oils_i18n_gettext('400', 'Songhai', 'ccvm', 'value')),
4502     (401, 'item_lang', 'sot', oils_i18n_gettext('401', 'Sotho', 'ccvm', 'value')),
4503     (402, 'item_lang', 'spa', oils_i18n_gettext('402', 'Spanish', 'ccvm', 'value')),
4504     (403, 'item_lang', 'srd', oils_i18n_gettext('403', 'Sardinian', 'ccvm', 'value')),
4505     (404, 'item_lang', 'srr', oils_i18n_gettext('404', 'Serer', 'ccvm', 'value')),
4506     (405, 'item_lang', 'ssa', oils_i18n_gettext('405', 'Nilo-Saharan (Other)', 'ccvm', 'value')),
4507     (406, 'item_lang', '-sso', oils_i18n_gettext('406', 'Sotho', 'ccvm', 'value')),
4508     (407, 'item_lang', 'ssw', oils_i18n_gettext('407', 'Swazi', 'ccvm', 'value')),
4509     (408, 'item_lang', 'suk', oils_i18n_gettext('408', 'Sukuma', 'ccvm', 'value')),
4510     (409, 'item_lang', 'sun', oils_i18n_gettext('409', 'Sundanese', 'ccvm', 'value')),
4511     (410, 'item_lang', 'sus', oils_i18n_gettext('410', 'Susu', 'ccvm', 'value')),
4512     (411, 'item_lang', 'sux', oils_i18n_gettext('411', 'Sumerian', 'ccvm', 'value')),
4513     (412, 'item_lang', 'swa', oils_i18n_gettext('412', 'Swahili', 'ccvm', 'value')),
4514     (413, 'item_lang', 'swe', oils_i18n_gettext('413', 'Swedish', 'ccvm', 'value')),
4515     (414, 'item_lang', '-swz', oils_i18n_gettext('414', 'Swazi', 'ccvm', 'value')),
4516     (415, 'item_lang', 'syr', oils_i18n_gettext('415', 'Syriac', 'ccvm', 'value')),
4517     (416, 'item_lang', '-tag', oils_i18n_gettext('416', 'Tagalog', 'ccvm', 'value')),
4518     (417, 'item_lang', 'tah', oils_i18n_gettext('417', 'Tahitian', 'ccvm', 'value')),
4519     (418, 'item_lang', 'tai', oils_i18n_gettext('418', 'Tai (Other)', 'ccvm', 'value')),
4520     (419, 'item_lang', '-taj', oils_i18n_gettext('419', 'Tajik', 'ccvm', 'value')),
4521     (420, 'item_lang', 'tam', oils_i18n_gettext('420', 'Tamil', 'ccvm', 'value')),
4522     (421, 'item_lang', '-tar', oils_i18n_gettext('421', 'Tatar', 'ccvm', 'value')),
4523     (422, 'item_lang', 'tat', oils_i18n_gettext('422', 'Tatar', 'ccvm', 'value')),
4524     (423, 'item_lang', 'tel', oils_i18n_gettext('423', 'Telugu', 'ccvm', 'value')),
4525     (424, 'item_lang', 'tem', oils_i18n_gettext('424', 'Temne', 'ccvm', 'value')),
4526     (425, 'item_lang', 'ter', oils_i18n_gettext('425', 'Terena', 'ccvm', 'value')),
4527     (426, 'item_lang', 'tet', oils_i18n_gettext('426', 'Tetum', 'ccvm', 'value')),
4528     (427, 'item_lang', 'tgk', oils_i18n_gettext('427', 'Tajik', 'ccvm', 'value')),
4529     (428, 'item_lang', 'tgl', oils_i18n_gettext('428', 'Tagalog', 'ccvm', 'value')),
4530     (429, 'item_lang', 'tha', oils_i18n_gettext('429', 'Thai', 'ccvm', 'value')),
4531     (430, 'item_lang', 'tib', oils_i18n_gettext('430', 'Tibetan', 'ccvm', 'value')),
4532     (431, 'item_lang', 'tig', oils_i18n_gettext('431', 'Tigré', 'ccvm', 'value')),
4533     (432, 'item_lang', 'tir', oils_i18n_gettext('432', 'Tigrinya', 'ccvm', 'value')),
4534     (433, 'item_lang', 'tiv', oils_i18n_gettext('433', 'Tiv', 'ccvm', 'value')),
4535     (434, 'item_lang', 'tkl', oils_i18n_gettext('434', 'Tokelauan', 'ccvm', 'value')),
4536     (435, 'item_lang', 'tli', oils_i18n_gettext('435', 'Tlingit', 'ccvm', 'value')),
4537     (436, 'item_lang', 'tmh', oils_i18n_gettext('436', 'Tamashek', 'ccvm', 'value')),
4538     (437, 'item_lang', 'tog', oils_i18n_gettext('437', 'Tonga (Nyasa)', 'ccvm', 'value')),
4539     (438, 'item_lang', 'ton', oils_i18n_gettext('438', 'Tongan', 'ccvm', 'value')),
4540     (439, 'item_lang', 'tpi', oils_i18n_gettext('439', 'Tok Pisin', 'ccvm', 'value')),
4541     (440, 'item_lang', '-tru', oils_i18n_gettext('440', 'Truk', 'ccvm', 'value')),
4542     (441, 'item_lang', 'tsi', oils_i18n_gettext('441', 'Tsimshian', 'ccvm', 'value')),
4543     (442, 'item_lang', 'tsn', oils_i18n_gettext('442', 'Tswana', 'ccvm', 'value')),
4544     (443, 'item_lang', 'tso', oils_i18n_gettext('443', 'Tsonga', 'ccvm', 'value')),
4545     (444, 'item_lang', '-tsw', oils_i18n_gettext('444', 'Tswana', 'ccvm', 'value')),
4546     (445, 'item_lang', 'tuk', oils_i18n_gettext('445', 'Turkmen', 'ccvm', 'value')),
4547     (446, 'item_lang', 'tum', oils_i18n_gettext('446', 'Tumbuka', 'ccvm', 'value')),
4548     (447, 'item_lang', 'tup', oils_i18n_gettext('447', 'Tupi languages', 'ccvm', 'value')),
4549     (448, 'item_lang', 'tur', oils_i18n_gettext('448', 'Turkish', 'ccvm', 'value')),
4550     (449, 'item_lang', 'tut', oils_i18n_gettext('449', 'Altaic (Other)', 'ccvm', 'value')),
4551     (450, 'item_lang', 'tvl', oils_i18n_gettext('450', 'Tuvaluan', 'ccvm', 'value')),
4552     (451, 'item_lang', 'twi', oils_i18n_gettext('451', 'Twi', 'ccvm', 'value')),
4553     (452, 'item_lang', 'tyv', oils_i18n_gettext('452', 'Tuvinian', 'ccvm', 'value')),
4554     (453, 'item_lang', 'udm', oils_i18n_gettext('453', 'Udmurt', 'ccvm', 'value')),
4555     (454, 'item_lang', 'uga', oils_i18n_gettext('454', 'Ugaritic', 'ccvm', 'value')),
4556     (455, 'item_lang', 'uig', oils_i18n_gettext('455', 'Uighur', 'ccvm', 'value')),
4557     (456, 'item_lang', 'ukr', oils_i18n_gettext('456', 'Ukrainian', 'ccvm', 'value')),
4558     (457, 'item_lang', 'umb', oils_i18n_gettext('457', 'Umbundu', 'ccvm', 'value')),
4559     (458, 'item_lang', 'und', oils_i18n_gettext('458', 'Undetermined', 'ccvm', 'value')),
4560     (459, 'item_lang', 'urd', oils_i18n_gettext('459', 'Urdu', 'ccvm', 'value')),
4561     (460, 'item_lang', 'uzb', oils_i18n_gettext('460', 'Uzbek', 'ccvm', 'value')),
4562     (461, 'item_lang', 'vai', oils_i18n_gettext('461', 'Vai', 'ccvm', 'value')),
4563     (462, 'item_lang', 'ven', oils_i18n_gettext('462', 'Venda', 'ccvm', 'value')),
4564     (463, 'item_lang', 'vie', oils_i18n_gettext('463', 'Vietnamese', 'ccvm', 'value')),
4565     (464, 'item_lang', 'vol', oils_i18n_gettext('464', 'Volapük', 'ccvm', 'value')),
4566     (465, 'item_lang', 'vot', oils_i18n_gettext('465', 'Votic', 'ccvm', 'value')),
4567     (466, 'item_lang', 'wak', oils_i18n_gettext('466', 'Wakashan languages', 'ccvm', 'value')),
4568     (467, 'item_lang', 'wal', oils_i18n_gettext('467', 'Walamo', 'ccvm', 'value')),
4569     (468, 'item_lang', 'war', oils_i18n_gettext('468', 'Waray', 'ccvm', 'value')),
4570     (469, 'item_lang', 'was', oils_i18n_gettext('469', 'Washo', 'ccvm', 'value')),
4571     (470, 'item_lang', 'wel', oils_i18n_gettext('470', 'Welsh', 'ccvm', 'value')),
4572     (471, 'item_lang', 'wen', oils_i18n_gettext('471', 'Sorbian languages', 'ccvm', 'value')),
4573     (472, 'item_lang', 'wln', oils_i18n_gettext('472', 'Walloon', 'ccvm', 'value')),
4574     (473, 'item_lang', 'wol', oils_i18n_gettext('473', 'Wolof', 'ccvm', 'value')),
4575     (474, 'item_lang', 'xal', oils_i18n_gettext('474', 'Kalmyk', 'ccvm', 'value')),
4576     (475, 'item_lang', 'xho', oils_i18n_gettext('475', 'Xhosa', 'ccvm', 'value')),
4577     (476, 'item_lang', 'yao', oils_i18n_gettext('476', 'Yao (Africa)', 'ccvm', 'value')),
4578     (477, 'item_lang', 'yap', oils_i18n_gettext('477', 'Yapese', 'ccvm', 'value')),
4579     (478, 'item_lang', 'yid', oils_i18n_gettext('478', 'Yiddish', 'ccvm', 'value')),
4580     (479, 'item_lang', 'yor', oils_i18n_gettext('479', 'Yoruba', 'ccvm', 'value')),
4581     (480, 'item_lang', 'ypk', oils_i18n_gettext('480', 'Yupik languages', 'ccvm', 'value')),
4582     (481, 'item_lang', 'zap', oils_i18n_gettext('481', 'Zapotec', 'ccvm', 'value')),
4583     (482, 'item_lang', 'zen', oils_i18n_gettext('482', 'Zenaga', 'ccvm', 'value')),
4584     (483, 'item_lang', 'zha', oils_i18n_gettext('483', 'Zhuang', 'ccvm', 'value')),
4585     (484, 'item_lang', 'znd', oils_i18n_gettext('484', 'Zande', 'ccvm', 'value')),
4586     (485, 'item_lang', 'zul', oils_i18n_gettext('485', 'Zulu', 'ccvm', 'value')),
4587     (486, 'item_lang', 'zun', oils_i18n_gettext('486', 'Zuni', 'ccvm', 'value'));
4588
4589 INSERT INTO config.coded_value_map (id, ctype, code, value, description) VALUES 
4590     (487,'audience', ' ', oils_i18n_gettext('487', 'Unknown or unspecified', 'ccvm', 'value'),  oils_i18n_gettext('487', 'The target audience for the item not known or not specified.', 'ccvm', 'description')),
4591     (488,'audience', 'a', oils_i18n_gettext('488', 'Preschool', 'ccvm', 'value'),               oils_i18n_gettext('488', 'The item is intended for children, approximate ages 0-5 years.', 'ccvm', 'description')),
4592     (489,'audience', 'b', oils_i18n_gettext('489', 'Primary', 'ccvm', 'value'),                 oils_i18n_gettext('489', 'The item is intended for children, approximate ages 6-8 years.', 'ccvm', 'description')),
4593     (490,'audience', 'c', oils_i18n_gettext('490', 'Pre-adolescent', 'ccvm', 'value'),          oils_i18n_gettext('490', 'The item is intended for young people, approximate ages 9-13 years.', 'ccvm', 'description')),
4594     (491,'audience', 'd', oils_i18n_gettext('491', 'Adolescent', 'ccvm', 'value'),              oils_i18n_gettext('491', 'The item is intended for young people, approximate ages 14-17 years.', 'ccvm', 'description')),
4595     (492,'audience', 'e', oils_i18n_gettext('492', 'Adult', 'ccvm', 'value'),                   oils_i18n_gettext('492', 'The item is intended for adults.', 'ccvm', 'description')),
4596     (493,'audience', 'f', oils_i18n_gettext('493', 'Specialized', 'ccvm', 'value'),             oils_i18n_gettext('493', 'The item is aimed at a particular audience and the nature of the presentation makes the item of little interest to another audience.', 'ccvm', 'description')),
4597     (494,'audience', 'g', oils_i18n_gettext('494', 'General', 'ccvm', 'value'),                 oils_i18n_gettext('494', 'The item is of general interest and not aimed at an audience of a particular intellectual level.', 'ccvm', 'description')),
4598     (495,'audience', 'j', oils_i18n_gettext('495', 'Juvenile', 'ccvm', 'value'),                oils_i18n_gettext('495', 'The item is intended for children and young people, approximate ages 0-15 years.', 'ccvm', 'description'));
4599
4600 INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES
4601     (496, 'item_type', 'a', oils_i18n_gettext('496', 'Language material', 'ccvm', 'value')),
4602     (497, 'item_type', 't', oils_i18n_gettext('497', 'Manuscript language material', 'ccvm', 'value')),
4603     (498, 'item_type', 'g', oils_i18n_gettext('498', 'Projected medium', 'ccvm', 'value')),
4604     (499, 'item_type', 'k', oils_i18n_gettext('499', 'Two-dimensional nonprojectable graphic', 'ccvm', 'value')),
4605     (500, 'item_type', 'r', oils_i18n_gettext('500', 'Three-dimensional artifact or naturally occurring object', 'ccvm', 'value')),
4606     (501, 'item_type', 'o', oils_i18n_gettext('501', 'Kit', 'ccvm', 'value')),
4607     (502, 'item_type', 'p', oils_i18n_gettext('502', 'Mixed materials', 'ccvm', 'value')),
4608     (503, 'item_type', 'e', oils_i18n_gettext('503', 'Cartographic material', 'ccvm', 'value')),
4609     (504, 'item_type', 'f', oils_i18n_gettext('504', 'Manuscript cartographic material', 'ccvm', 'value')),
4610     (505, 'item_type', 'c', oils_i18n_gettext('505', 'Notated music', 'ccvm', 'value')),
4611     (506, 'item_type', 'd', oils_i18n_gettext('506', 'Manuscript notated music', 'ccvm', 'value')),
4612     (507, 'item_type', 'i', oils_i18n_gettext('507', 'Nonmusical sound recording', 'ccvm', 'value')),
4613     (508, 'item_type', 'j', oils_i18n_gettext('508', 'Musical sound recording', 'ccvm', 'value')),
4614     (509, 'item_type', 'm', oils_i18n_gettext('509', 'Computer file', 'ccvm', 'value'));
4615
4616 INSERT INTO config.coded_value_map (id, ctype, code, value, description) VALUES 
4617     (510, 'lit_form', '0', oils_i18n_gettext('510', 'Not fiction (not further specified)', 'ccvm', 'value'), oils_i18n_gettext('510', 'The item is not a work of fiction and no further identification of the literary form is desired', 'ccvm', 'description')),
4618     (511, 'lit_form', '1', oils_i18n_gettext('511', 'Fiction (not further specified)', 'ccvm', 'value'),     oils_i18n_gettext('511', 'The item is a work of fiction and no further identification of the literary form is desired', 'ccvm', 'description')),
4619     (512, 'lit_form', 'c', oils_i18n_gettext('512', 'Comic strips', 'ccvm', 'value'), NULL),
4620     (513, 'lit_form', 'd', oils_i18n_gettext('513', 'Dramas', 'ccvm', 'value'), NULL),
4621     (514, 'lit_form', 'e', oils_i18n_gettext('514', 'Essays', 'ccvm', 'value'), NULL),
4622     (515, 'lit_form', 'f', oils_i18n_gettext('515', 'Novels', 'ccvm', 'value'), NULL),
4623     (516, 'lit_form', 'h', oils_i18n_gettext('516', 'Humor, satires, etc.', 'ccvm', 'value'),                oils_i18n_gettext('516', 'The item is a humorous work, satire or of similar literary form.', 'ccvm', 'description')),
4624     (517, 'lit_form', 'i', oils_i18n_gettext('517', 'Letters', 'ccvm', 'value'),                             oils_i18n_gettext('517', 'The item is a single letter or collection of correspondence.', 'ccvm', 'description')),
4625     (518, 'lit_form', 'j', oils_i18n_gettext('518', 'Short stories', 'ccvm', 'value'),                       oils_i18n_gettext('518', 'The item is a short story or collection of short stories.', 'ccvm', 'description')),
4626     (519, 'lit_form', 'm', oils_i18n_gettext('519', 'Mixed forms', 'ccvm', 'value'),                         oils_i18n_gettext('519', 'The item is a variety of literary forms (e.g., poetry and short stories).', 'ccvm', 'description')),
4627     (520, 'lit_form', 'p', oils_i18n_gettext('520', 'Poetry', 'ccvm', 'value'),                              oils_i18n_gettext('520', 'The item is a poem or collection of poems.', 'ccvm', 'description')),
4628     (521, 'lit_form', 's', oils_i18n_gettext('521', 'Speeches', 'ccvm', 'value'),                            oils_i18n_gettext('521', 'The item is a speech or collection of speeches.', 'ccvm', 'description')),
4629     (522, 'lit_form', 'u', oils_i18n_gettext('522', 'Unknown', 'ccvm', 'value'),                             oils_i18n_gettext('522', 'The literary form of the item is unknown.', 'ccvm', 'description'));
4630
4631
4632 INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES
4633     (523, 'item_form', 'a', oils_i18n_gettext('523', 'Microfilm', 'ccvm', 'value')),
4634     (524, 'item_form', 'b', oils_i18n_gettext('524', 'Microfiche', 'ccvm', 'value')),
4635     (525, 'item_form', 'c', oils_i18n_gettext('525', 'Microopaque', 'ccvm', 'value')),
4636     (526, 'item_form', 'd', oils_i18n_gettext('526', 'Large print', 'ccvm', 'value')),
4637     (527, 'item_form', 'f', oils_i18n_gettext('527', 'Braille', 'ccvm', 'value')),
4638     (528, 'item_form', 'r', oils_i18n_gettext('528', 'Regular print reproduction', 'ccvm', 'value')),
4639     (529, 'item_form', 's', oils_i18n_gettext('529', 'Electronic', 'ccvm', 'value'));
4640
4641 INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES
4642     (530, 'bib_level', 'a', oils_i18n_gettext('530', 'Monographic component part', 'ccvm', 'value')),
4643     (531, 'bib_level', 'b', oils_i18n_gettext('531', 'Serial component part', 'ccvm', 'value')),
4644     (532, 'bib_level', 'c', oils_i18n_gettext('532', 'Collection', 'ccvm', 'value')),
4645     (533, 'bib_level', 'd', oils_i18n_gettext('533', 'Subunit', 'ccvm', 'value')),
4646     (534, 'bib_level', 'i', oils_i18n_gettext('534', 'Integrating resource', 'ccvm', 'value')),
4647     (535, 'bib_level', 'm', oils_i18n_gettext('535', 'Monograph/Item', 'ccvm', 'value')),
4648     (536, 'bib_level', 's', oils_i18n_gettext('536', 'Serial', 'ccvm', 'value'));
4649
4650
4651 -- Trigger Event Definitions -------------------------------------------------
4652
4653 -- Sample Overdue Notice --
4654
4655 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, max_delay, template) 
4656     VALUES (1, 'f', 1, '7 Day Overdue Email Notification', 'checkout.due', 'CircIsOverdue', 'SendEmail', '7 days', 'due_date', 'usr', '8 days', 
4657 $$
4658 [%- USE date -%]
4659 [%- user = target.0.usr -%]
4660 To: [%- params.recipient_email || user.email %]
4661 From: [%- params.sender_email || default_sender %]
4662 Subject: Overdue Notification
4663
4664 Dear [% user.family_name %], [% user.first_given_name %]
4665 Our records indicate the following items are overdue.
4666
4667 [% FOR circ IN target %]
4668     Title: [% circ.target_copy.call_number.record.simple_record.title %] 
4669     Barcode: [% circ.target_copy.barcode %] 
4670     Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
4671     Item Cost: [% helpers.get_copy_price(circ.target_copy) %]
4672     Total Owed For Transaction: [% circ.billable_transaction.summary.total_owed %]
4673     Library: [% circ.circ_lib.name %]
4674 [% END %]
4675
4676 $$);
4677
4678 INSERT INTO action_trigger.environment (event_def, path) VALUES 
4679     (1, 'target_copy.call_number.record.simple_record'),
4680     (1, 'usr'),
4681     (1, 'billable_transaction.summary'),
4682     (1, 'circ_lib.billing_address');
4683
4684 -- Sample Mark Long-Overdue Item Lost --
4685
4686 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field) 
4687     VALUES (2, 'f', 1, '90 Day Overdue Mark Lost', 'checkout.due', 'CircIsOverdue', 'MarkItemLost', '90 days', 'due_date');
4688
4689 -- Sample Auto Mark Lost Notice --
4690
4691 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, template) 
4692     VALUES (3, 'f', 1, '90 Day Overdue Mark Lost Notice', 'lost.auto', 'NOOP_True', 'SendEmail', 'usr',
4693 $$
4694 [%- USE date -%]
4695 [%- user = target.0.usr -%]
4696 To: [%- params.recipient_email || user.email %]
4697 From: [%- params.sender_email || default_sender %]
4698 Subject: Overdue Items Marked Lost
4699
4700 Dear [% user.family_name %], [% user.first_given_name %]
4701 The following items are 90 days overdue and have been marked LOST.
4702
4703 [% FOR circ IN target %]
4704     Title: [% circ.target_copy.call_number.record.simple_record.title %] 
4705     Barcode: [% circ.target_copy.barcode %] 
4706     Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
4707     Item Cost: [% helpers.get_copy_price(circ.target_copy) %]
4708     Total Owed For Transaction: [% circ.billable_transaction.summary.total_owed %]
4709     Library: [% circ.circ_lib.name %]
4710 [% END %]
4711
4712 $$);
4713
4714
4715 INSERT INTO action_trigger.environment (event_def, path) VALUES 
4716     (3, 'target_copy.call_number.record.simple_record'),
4717     (3, 'usr'),
4718     (3, 'billable_transaction.summary'),
4719     (3, 'circ_lib.billing_address');
4720
4721 -- Sample Purchase Order HTML Template --
4722
4723 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, template) 
4724     VALUES (4, 't', 1, 'PO HTML', 'format.po.html', 'NOOP_True', 'ProcessTemplate', 
4725 $$
4726 [%- USE date -%]
4727 [%-
4728     # find a lineitem attribute by name and optional type
4729     BLOCK get_li_attr;
4730         FOR attr IN li.attributes;
4731             IF attr.attr_name == attr_name;
4732                 IF !attr_type OR attr_type == attr.attr_type;
4733                     attr.attr_value;
4734                     LAST;
4735                 END;
4736             END;
4737         END;
4738     END
4739 -%]
4740
4741 <h2>Purchase Order [% target.id %]</h2>
4742 <br/>
4743 date <b>[% date.format(date.now, '%Y%m%d') %]</b>
4744 <br/>
4745
4746 <style>
4747     table td { padding:5px; border:1px solid #aaa;}
4748     table { width:95%; border-collapse:collapse; }
4749     #vendor-notes { padding:5px; border:1px solid #aaa; }
4750 </style>
4751 <table id='vendor-table'>
4752   <tr>
4753     <td valign='top'>Vendor</td>
4754     <td>
4755       <div>[% target.provider.name %]</div>
4756       <div>[% target.provider.addresses.0.street1 %]</div>
4757       <div>[% target.provider.addresses.0.street2 %]</div>
4758       <div>[% target.provider.addresses.0.city %]</div>
4759       <div>[% target.provider.addresses.0.state %]</div>
4760       <div>[% target.provider.addresses.0.country %]</div>
4761       <div>[% target.provider.addresses.0.post_code %]</div>
4762     </td>
4763     <td valign='top'>Ship to / Bill to</td>
4764     <td>
4765       <div>[% target.ordering_agency.name %]</div>
4766       <div>[% target.ordering_agency.billing_address.street1 %]</div>
4767       <div>[% target.ordering_agency.billing_address.street2 %]</div>
4768       <div>[% target.ordering_agency.billing_address.city %]</div>
4769       <div>[% target.ordering_agency.billing_address.state %]</div>
4770       <div>[% target.ordering_agency.billing_address.country %]</div>
4771       <div>[% target.ordering_agency.billing_address.post_code %]</div>
4772     </td>
4773   </tr>
4774 </table>
4775
4776 <br/><br/>
4777 <fieldset id='vendor-notes'>
4778     <legend>Notes to the Vendor</legend>
4779     <ul>
4780     [% FOR note IN target.notes %]
4781         [% IF note.vendor_public == 't' %]
4782             <li>[% note.value %]</li>
4783         [% END %]
4784     [% END %]
4785     </ul>
4786 </fieldset>
4787 <br/><br/>
4788
4789 <table>
4790   <thead>
4791     <tr>
4792       <th>PO#</th>
4793       <th>ISBN or Item #</th>
4794       <th>Title</th>
4795       <th>Quantity</th>
4796       <th>Unit Price</th>
4797       <th>Line Total</th>
4798       <th>Notes</th>
4799     </tr>
4800   </thead>
4801   <tbody>
4802
4803   [% subtotal = 0 %]
4804   [% FOR li IN target.lineitems %]
4805
4806   <tr>
4807     [% count = li.lineitem_details.size %]
4808     [% price = li.estimated_unit_price %]
4809     [% litotal = (price * count) %]
4810     [% subtotal = subtotal + litotal %]
4811     [% isbn = PROCESS get_li_attr attr_name = 'isbn' %]
4812     [% ident = PROCESS get_li_attr attr_name = 'identifier' %]
4813
4814     <td>[% target.id %]</td>
4815     <td>[% isbn || ident %]</td>
4816     <td>[% PROCESS get_li_attr attr_name = 'title' %]</td>
4817     <td>[% count %]</td>
4818     <td>[% price %]</td>
4819     <td>[% litotal %]</td>
4820     <td>
4821         <ul>
4822         [% FOR note IN li.lineitem_notes %]
4823             [% IF note.vendor_public == 't' %]
4824                 <li>[% note.value %]</li>
4825             [% END %]
4826         [% END %]
4827         </ul>
4828     </td>
4829   </tr>
4830   [% END %]
4831   <tr>
4832     <td/><td/><td/><td/>
4833     <td>Subtotal</td>
4834     <td>[% subtotal %]</td>
4835   </tr>
4836   </tbody>
4837 </table>
4838
4839 <br/>
4840
4841 Total Line Item Count: [% target.lineitems.size %]
4842 $$);
4843
4844 INSERT INTO action_trigger.environment (event_def, path) VALUES 
4845     (4, 'lineitems.lineitem_details.fund'),
4846     (4, 'lineitems.lineitem_details.location'),
4847     (4, 'lineitems.lineitem_details.owning_lib'),
4848     (4, 'ordering_agency.mailing_address'),
4849     (4, 'ordering_agency.billing_address'),
4850     (4, 'provider.addresses'),
4851     (4, 'lineitems.attributes'),
4852     (4, 'lineitems.lineitem_notes'),
4853     (4, 'notes');
4854
4855
4856 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, template)
4857     VALUES (5, 'f', 1, 'Hold Ready for Pickup Email Notification', 'hold.available', 'HoldIsAvailable', 'SendEmail', '30 minutes', 'shelf_time', 'usr',
4858 $$
4859 [%- USE date -%]
4860 [%- user = target.0.usr -%]
4861 To: [%- params.recipient_email || user.email %]
4862 From: [%- params.sender_email || default_sender %]
4863 Subject: Hold Available Notification
4864
4865 Dear [% user.family_name %], [% user.first_given_name %]
4866 The item(s) you requested are available for pickup from the Library.
4867
4868 [% FOR hold IN target %]
4869     Title: [% hold.current_copy.call_number.record.simple_record.title %]
4870     Author: [% hold.current_copy.call_number.record.simple_record.author %]
4871     Call Number: [% hold.current_copy.call_number.label %]
4872     Barcode: [% hold.current_copy.barcode %]
4873     Library: [% hold.pickup_lib.name %]
4874 [% END %]
4875
4876 $$);
4877
4878
4879 INSERT INTO action_trigger.hook (
4880         key,
4881         core_type,
4882         description,
4883         passive
4884     ) VALUES (
4885         'hold_request.shelf_expires_soon',
4886         'ahr',
4887         'A hold on the shelf will expire there soon.',
4888         TRUE
4889     );
4890
4891 INSERT INTO action_trigger.environment (event_def, path) VALUES
4892     (5, 'current_copy.call_number.record.simple_record'),
4893     (5, 'usr'),
4894     (5, 'pickup_lib.billing_address');
4895
4896
4897 INSERT INTO action_trigger.event_definition (
4898         id,
4899         active,
4900         owner,
4901         name,
4902         hook,
4903         validator,
4904         reactor,
4905         delay,
4906         delay_field,
4907         group_field,
4908         template
4909     ) VALUES (
4910         7,
4911         FALSE,
4912         1,
4913         'Hold Expires from Shelf Soon',
4914         'hold_request.shelf_expires_soon',
4915         'HoldIsAvailable',
4916         'SendEmail',
4917         '- 1 DAY',
4918         'shelf_expire_time',
4919         'usr',
4920 $$
4921 [%- USE date -%]
4922 [%- user = target.0.usr -%]
4923 To: [%- params.recipient_email || user.email %]
4924 From: [%- params.sender_email || default_sender %]
4925 Subject: Hold Available Notification
4926
4927 Dear [% user.family_name %], [% user.first_given_name %]
4928 You requested holds on the following item(s), which are available for
4929 pickup, but these holds will soon expire.
4930
4931 [% FOR hold IN target %]
4932     [%- data = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
4933     Title: [% data.title %]
4934     Author: [% data.author %]
4935     Library: [% hold.pickup_lib.name %]
4936 [% END %]
4937 $$
4938 );
4939
4940
4941 INSERT INTO action_trigger.environment (
4942         event_def,
4943         path
4944     ) VALUES
4945     ( 7, 'current_copy'),
4946     ( 7, 'pickup_lib.billing_address'),
4947     ( 7, 'usr');
4948
4949 -- long wait hold request notifications
4950
4951 INSERT INTO action_trigger.hook (
4952         key,
4953         core_type,
4954         description,
4955         passive
4956     ) VALUES (
4957         'hold_request.long_wait',
4958         'ahr',
4959         'A patron has been waiting on a hold to be fulfilled for a long time.',
4960         TRUE
4961     );
4962
4963 INSERT INTO action_trigger.event_definition (
4964         id,
4965         active,
4966         owner,
4967         name,
4968         hook,
4969         validator,
4970         reactor,
4971         delay,
4972         delay_field,
4973         group_field,
4974         template
4975     ) VALUES (
4976         9,
4977         FALSE,
4978         1,
4979         'Hold waiting for pickup for long time',
4980         'hold_request.long_wait',
4981         'NOOP_True',
4982         'SendEmail',
4983         '6 MONTHS',
4984         'request_time',
4985         'usr',
4986 $$
4987 [%- USE date -%]
4988 [%- user = target.0.usr -%]
4989 To: [%- params.recipient_email || user.email %]
4990 From: [%- params.sender_email || default_sender %]
4991 Subject: Long Wait Hold Notification
4992
4993 Dear [% user.family_name %], [% user.first_given_name %]
4994
4995 You requested hold(s) on the following item(s), but unfortunately
4996 we have not been able to fulfill your request after a considerable
4997 length of time.  If you would still like to receive these items,
4998 no action is required.
4999
5000 [% FOR hold IN target %]
5001     Title: [% hold.bib_rec.bib_record.simple_record.title %]
5002     Author: [% hold.bib_rec.bib_record.simple_record.author %]
5003 [% END %]
5004 $$
5005 );
5006
5007 INSERT INTO action_trigger.environment (event_def, path)
5008     VALUES
5009         (9, 'pickup_lib'),
5010         (9, 'usr'),
5011         (9, 'bib_rec.bib_record.simple_record');
5012
5013 -- trigger data related to acq user requests
5014
5015 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
5016         'aur.ordered',
5017         'aur', 
5018         oils_i18n_gettext(
5019             'aur.ordered',
5020             'A patron acquisition request has been marked On-Order.',
5021             'ath',
5022             'description'
5023         ), 
5024         TRUE
5025     ), (
5026         'aur.received', 
5027         'aur', 
5028         oils_i18n_gettext(
5029             'aur.received', 
5030             'A patron acquisition request has been marked Received.',
5031             'ath',
5032             'description'
5033         ),
5034         TRUE
5035     ), (
5036         'aur.cancelled',
5037         'aur',
5038         oils_i18n_gettext(
5039             'aur.cancelled',
5040             'A patron acquisition request has been marked Cancelled.',
5041             'ath',
5042             'description'
5043         ),
5044         TRUE
5045     ), (
5046         'aur.created',
5047         'aur',
5048         oils_i18n_gettext(
5049             'aur.created',
5050             'A patron has made an acquisitions request.',
5051             'ath',
5052             'description'
5053         ),
5054         TRUE
5055     ), (
5056         'aur.rejected',
5057         'aur',
5058         oils_i18n_gettext(
5059             'aur.rejected',
5060             'A patron acquisition request has been rejected.',
5061             'ath',
5062             'description'
5063         ),
5064         TRUE
5065     )
5066 ;
5067
5068 INSERT INTO action_trigger.validator (module,description) VALUES (
5069         'Acq::UserRequestOrdered',
5070         oils_i18n_gettext(
5071             'Acq::UserRequestOrdered',
5072             'Tests to see if the corresponding Line Item has a state of "on-order".',
5073             'atval',
5074             'description'
5075         )
5076     ), (
5077         'Acq::UserRequestReceived',
5078         oils_i18n_gettext(
5079             'Acq::UserRequestReceived',
5080             'Tests to see if the corresponding Line Item has a state of "received".',
5081             'atval',
5082             'description'
5083         )
5084     ), (
5085         'Acq::UserRequestCancelled',
5086         oils_i18n_gettext(
5087             'Acq::UserRequestCancelled',
5088             'Tests to see if the corresponding Line Item has a state of "cancelled".',
5089             'atval',
5090             'description'
5091         )
5092     )
5093 ;
5094
5095 INSERT INTO action_trigger.event_definition (
5096         id,
5097         active,
5098         owner,
5099         name,
5100         hook,
5101         validator,
5102         reactor,
5103         template
5104     ) VALUES (
5105         15,
5106         FALSE,
5107         1,
5108         'Email Notice: Patron Acquisition Request marked On-Order.',
5109         'aur.ordered',
5110         'Acq::UserRequestOrdered',
5111         'SendEmail',
5112 $$
5113 [%- USE date -%]
5114 [%- SET li = target.lineitem; -%]
5115 [%- SET user = target.usr -%]
5116 [%- SET title = helpers.get_li_attr("title", "", li.attributes) -%]
5117 [%- SET author = helpers.get_li_attr("author", "", li.attributes) -%]
5118 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) -%]
5119 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) -%]
5120 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
5121 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
5122
5123 To: [%- params.recipient_email || user.email %]
5124 From: [%- params.sender_email || default_sender %]
5125 Subject: Acquisition Request Notification
5126
5127 Dear [% user.family_name %], [% user.first_given_name %]
5128 Our records indicate the following acquisition request has been placed on order.
5129
5130 Title: [% title %]
5131 [% IF author %]Author: [% author %][% END %]
5132 [% IF edition %]Edition: [% edition %][% END %]
5133 [% IF isbn %]ISBN: [% isbn %][% END %]
5134 [% IF publisher %]Publisher: [% publisher %][% END %]
5135 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
5136 Lineitem ID: [% li.id %]
5137 $$
5138     ), (
5139         16,
5140         FALSE,
5141         1,
5142         'Email Notice: Patron Acquisition Request marked Received.',
5143         'aur.received',
5144         'Acq::UserRequestReceived',
5145         'SendEmail',
5146 $$
5147 [%- USE date -%]
5148 [%- SET li = target.lineitem; -%]
5149 [%- SET user = target.usr -%]
5150 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
5151 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
5152 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
5153 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
5154 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
5155 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
5156
5157 To: [%- params.recipient_email || user.email %]
5158 From: [%- params.sender_email || default_sender %]
5159 Subject: Acquisition Request Notification
5160
5161 Dear [% user.family_name %], [% user.first_given_name %]
5162 Our records indicate the materials for the following acquisition request have been received.
5163
5164 Title: [% title %]
5165 [% IF author %]Author: [% author %][% END %]
5166 [% IF edition %]Edition: [% edition %][% END %]
5167 [% IF isbn %]ISBN: [% isbn %][% END %]
5168 [% IF publisher %]Publisher: [% publisher %][% END %]
5169 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
5170 Lineitem ID: [% li.id %]
5171 $$
5172     ), (
5173         17,
5174         FALSE,
5175         1,
5176         'Email Notice: Patron Acquisition Request marked Cancelled.',
5177         'aur.cancelled',
5178         'Acq::UserRequestCancelled',
5179         'SendEmail',
5180 $$
5181 [%- USE date -%]
5182 [%- SET li = target.lineitem; -%]
5183 [%- SET user = target.usr -%]
5184 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
5185 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
5186 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
5187 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
5188 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
5189 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
5190
5191 To: [%- params.recipient_email || user.email %]
5192 From: [%- params.sender_email || default_sender %]
5193 Subject: Acquisition Request Notification
5194
5195 Dear [% user.family_name %], [% user.first_given_name %]
5196 Our records indicate the following acquisition request has been cancelled.
5197
5198 Title: [% title %]
5199 [% IF author %]Author: [% author %][% END %]
5200 [% IF edition %]Edition: [% edition %][% END %]
5201 [% IF isbn %]ISBN: [% isbn %][% END %]
5202 [% IF publisher %]Publisher: [% publisher %][% END %]
5203 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
5204 Lineitem ID: [% li.id %]
5205 $$
5206     ), (
5207         18,
5208         FALSE,
5209         1,
5210         'Email Notice: Acquisition Request created.',
5211         'aur.created',
5212         'NOOP_True',
5213         'SendEmail',
5214 $$
5215 [%- USE date -%]
5216 [%- SET user = target.usr -%]
5217 [%- SET title = target.title -%]
5218 [%- SET author = target.author -%]
5219 [%- SET isxn = target.isxn -%]
5220 [%- SET publisher = target.publisher -%]
5221 [%- SET pubdate = target.pubdate -%]
5222
5223 To: [%- params.recipient_email || user.email %]
5224 From: [%- params.sender_email || default_sender %]
5225 Subject: Acquisition Request Notification
5226
5227 Dear [% user.family_name %], [% user.first_given_name %]
5228 Our records indicate that you have made the following acquisition request:
5229
5230 Title: [% title %]
5231 [% IF author %]Author: [% author %][% END %]
5232 [% IF edition %]Edition: [% edition %][% END %]
5233 [% IF isbn %]ISXN: [% isxn %][% END %]
5234 [% IF publisher %]Publisher: [% publisher %][% END %]
5235 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
5236 $$
5237     ), (
5238         19,
5239         FALSE,
5240         1,
5241         'Email Notice: Acquisition Request Rejected.',
5242         'aur.rejected',
5243         'NOOP_True',
5244         'SendEmail',
5245 $$
5246 [%- USE date -%]
5247 [%- SET user = target.usr -%]
5248 [%- SET title = target.title -%]
5249 [%- SET author = target.author -%]
5250 [%- SET isxn = target.isxn -%]
5251 [%- SET publisher = target.publisher -%]
5252 [%- SET pubdate = target.pubdate -%]
5253 [%- SET cancel_reason = target.cancel_reason.description -%]
5254
5255 To: [%- params.recipient_email || user.email %]
5256 From: [%- params.sender_email || default_sender %]
5257 Subject: Acquisition Request Notification
5258
5259 Dear [% user.family_name %], [% user.first_given_name %]
5260 Our records indicate the following acquisition request has been rejected for this reason: [% cancel_reason %]
5261
5262 Title: [% title %]
5263 [% IF author %]Author: [% author %][% END %]
5264 [% IF edition %]Edition: [% edition %][% END %]
5265 [% IF isbn %]ISBN: [% isbn %][% END %]
5266 [% IF publisher %]Publisher: [% publisher %][% END %]
5267 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
5268 $$
5269     )
5270 ;
5271
5272 INSERT INTO action_trigger.environment (
5273         event_def,
5274         path
5275     ) VALUES 
5276         ( 15, 'lineitem' ),
5277         ( 15, 'lineitem.attributes' ),
5278         ( 15, 'usr' ),
5279
5280         ( 16, 'lineitem' ),
5281         ( 16, 'lineitem.attributes' ),
5282         ( 16, 'usr' ),
5283
5284         ( 17, 'lineitem' ),
5285         ( 17, 'lineitem.attributes' ),
5286         ( 17, 'usr' ),
5287
5288         ( 18, 'usr' ),
5289         ( 19, 'usr' ),
5290         ( 19, 'cancel_reason' )
5291     ;
5292
5293 INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('password.reset_request','aupr','Patron has requested a self-serve password reset');
5294 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, template) 
5295     VALUES (20, 'f', 1, 'Password reset request notification', 'password.reset_request', 'NOOP_True', 'SendEmail', '00:00:01',
5296 $$
5297 [%- USE date -%]
5298 [%- user = target.usr -%]
5299 To: [%- params.recipient_email || user.email %]
5300 From: [%- params.sender_email || user.home_ou.email || default_sender %]
5301 Subject: [% user.home_ou.name %]: library account password reset request
5302   
5303 You have received this message because you, or somebody else, requested a reset
5304 of your library system password. If you did not request a reset of your library
5305 system password, just ignore this message and your current password will
5306 continue to work.
5307
5308 If you did request a reset of your library system password, please perform
5309 the following steps to continue the process of resetting your password:
5310
5311 1. Open the following link in a web browser: https://[% params.hostname %]/opac/password/[% params.locale || 'en-US' %]/[% target.uuid %]
5312 The browser displays a password reset form.
5313
5314 2. Enter your new password in the password reset form in the browser. You must
5315 enter the password twice to ensure that you do not make a mistake. If the
5316 passwords match, you will then be able to log in to your library system account
5317 with the new password.
5318
5319 $$);
5320 INSERT INTO action_trigger.environment ( event_def, path) VALUES
5321     ( 20, 'usr' );
5322 INSERT INTO action_trigger.environment ( event_def, path) VALUES
5323     ( 20, 'usr.home_ou' );
5324
5325
5326 INSERT INTO action_trigger.hook (key, core_type, description, passive)
5327     VALUES (
5328         'format.acqcle.html',
5329         'acqcle',
5330         'Formats claim events into a voucher',
5331         TRUE
5332     );
5333
5334 INSERT INTO action_trigger.event_definition (
5335         id, active, owner, name, hook, group_field,
5336         validator, reactor, granularity, template
5337     ) VALUES (
5338         21,
5339         TRUE,
5340         1,
5341         'Claim Voucher',
5342         'format.acqcle.html',
5343         'claim',
5344         'NOOP_True',
5345         'ProcessTemplate',
5346         'print-on-demand',
5347 $$
5348 [%- USE date -%]
5349 [%- SET claim = target.0.claim -%]
5350 <!-- This will need refined/prettified. -->
5351 <div class="acq-claim-voucher">
5352     <h2>Claim: [% claim.id %] ([% claim.type.code %])</h2>
5353     <h3>Against: [%- helpers.get_li_attr("title", "", claim.lineitem_detail.lineitem.attributes) -%]</h3>
5354     <ul>
5355         [% FOR event IN target %]
5356         <li>
5357             Event type: [% event.type.code %]
5358             [% IF event.type.library_initiated %](Library initiated)[% END %]
5359             <br />
5360             Event date: [% event.event_date %]<br />
5361             Order date: [% event.claim.lineitem_detail.lineitem.purchase_order.order_date %]<br />
5362             Expected receive date: [% event.claim.lineitem_detail.lineitem.expected_recv_time %]<br />
5363             Initiated by: [% event.creator.family_name %], [% event.creator.first_given_name %] [% event.creator.second_given_name %]<br />
5364             Barcode: [% event.claim.lineitem_detail.barcode %]; Fund:
5365             [% event.claim.lineitem_detail.fund.code %]
5366             ([% event.claim.lineitem_detail.fund.year %])
5367         </li>
5368         [% END %]
5369     </ul>
5370 </div>
5371 $$
5372 );
5373
5374 INSERT INTO action_trigger.environment (event_def, path) VALUES
5375     (21, 'claim'),
5376     (21, 'claim.type'),
5377     (21, 'claim.lineitem_detail'),
5378     (21, 'claim.lineitem_detail.fund'),
5379     (21, 'claim.lineitem_detail.lineitem.attributes'),
5380     (21, 'claim.lineitem_detail.lineitem.purchase_order'),
5381     (21, 'creator'),
5382     (21, 'type')
5383 ;
5384
5385
5386 INSERT INTO action_trigger.hook (key, core_type, description, passive)
5387     VALUES (
5388         'format.acqinv.html',
5389         'acqinv',
5390         'Formats invoices into a voucher',
5391         TRUE
5392     );
5393
5394 INSERT INTO action_trigger.event_definition (
5395         id, active, owner, name, hook,
5396         validator, reactor, granularity, template
5397     ) VALUES (
5398         22,
5399         TRUE,
5400         1,
5401         'Invoice',
5402         'format.acqinv.html',
5403         'NOOP_True',
5404         'ProcessTemplate',
5405         'print-on-demand',
5406 $$
5407 [%- SET invoice = target -%]
5408 <!-- This lacks general refinement -->
5409 <div class="acq-invoice-voucher">
5410     <h1>Invoice</h1>
5411     <div>
5412         <strong>No.</strong> [% invoice.inv_ident %]
5413         [% IF invoice.inv_type %]
5414             / <strong>Type:</strong>[% invoice.inv_type %]
5415         [% END %]
5416     </div>
5417     <div>
5418         <dl>
5419             [% BLOCK ent_with_address %]
5420             <dt>[% ent_label %]: [% ent.name %] ([% ent.code %])</dt>
5421             <dd>
5422                 [% IF ent.addresses.0 %]
5423                     [% SET addr = ent.addresses.0 %]
5424                     [% addr.street1 %]<br />
5425                     [% IF addr.street2 %][% addr.street2 %]<br />[% END %]
5426                     [% addr.city %],
5427                     [% IF addr.county %] [% addr.county %], [% END %]
5428                     [% IF addr.state %] [% addr.state %] [% END %]
5429                     [% IF addr.post_code %][% addr.post_code %][% END %]<br />
5430                     [% IF addr.country %] [% addr.country %] [% END %]
5431                 [% END %]
5432                 <p>
5433                     [% IF ent.phone %] Phone: [% ent.phone %]<br />[% END %]
5434                     [% IF ent.fax_phone %] Fax: [% ent.fax_phone %]<br />[% END %]
5435                     [% IF ent.url %] URL: [% ent.url %]<br />[% END %]
5436                     [% IF ent.email %] E-mail: [% ent.email %] [% END %]
5437                 </p>
5438             </dd>
5439             [% END %]
5440             [% INCLUDE ent_with_address
5441                 ent = invoice.provider
5442                 ent_label = "Provider" %]
5443             [% INCLUDE ent_with_address
5444                 ent = invoice.shipper
5445                 ent_label = "Shipper" %]
5446             <dt>Receiver</dt>
5447             <dd>
5448                 [% invoice.receiver.name %] ([% invoice.receiver.shortname %])
5449             </dd>
5450             <dt>Received</dt>
5451             <dd>
5452                 [% helpers.format_date(invoice.recv_date) %] by
5453                 [% invoice.recv_method %]
5454             </dd>
5455             [% IF invoice.note %]
5456                 <dt>Note</dt>
5457                 <dd>
5458                     [% invoice.note %]
5459                 </dd>
5460             [% END %]
5461         </dl>
5462     </div>
5463     <ul>
5464         [% FOR entry IN invoice.entries %]
5465             <li>
5466                 [% IF entry.lineitem %]
5467                     Title: [% helpers.get_li_attr(
5468                         "title", "", entry.lineitem.attributes
5469                     ) %]<br />
5470                     Author: [% helpers.get_li_attr(
5471                         "author", "", entry.lineitem.attributes
5472                     ) %]
5473                 [% END %]
5474                 [% IF entry.purchase_order %]
5475                     (PO: [% entry.purchase_order.name %])
5476                 [% END %]<br />
5477                 Invoice item count: [% entry.inv_item_count %]
5478                 [% IF entry.phys_item_count %]
5479                     / Physical item count: [% entry.phys_item_count %]
5480                 [% END %]
5481                 <br />
5482                 [% IF entry.cost_billed %]
5483                     Cost billed: [% entry.cost_billed %]
5484                     [% IF entry.billed_per_item %](per item)[% END %]
5485                     <br />
5486                 [% END %]
5487                 [% IF entry.actual_cost %]
5488                     Actual cost: [% entry.actual_cost %]<br />
5489                 [% END %]
5490                 [% IF entry.amount_paid %]
5491                     Amount paid: [% entry.amount_paid %]<br />
5492                 [% END %]
5493                 [% IF entry.note %]Note: [% entry.note %][% END %]
5494             </li>
5495         [% END %]
5496         [% FOR item IN invoice.items %]
5497             <li>
5498                 [% IF item.inv_item_type %]
5499                     Item Type: [% item.inv_item_type %]<br />
5500                 [% END %]
5501                 [% IF item.title %]Title/Description:
5502                     [% item.title %]<br />
5503                 [% END %]
5504                 [% IF item.author %]Author: [% item.author %]<br />[% END %]
5505                 [% IF item.purchase_order %]PO: [% item.purchase_order %]<br />[% END %]
5506                 [% IF item.note %]Note: [% item.note %]<br />[% END %]
5507                 [% IF item.cost_billed %]
5508                     Cost billed: [% item.cost_billed %]<br />
5509                 [% END %]
5510                 [% IF item.actual_cost %]
5511                     Actual cost: [% item.actual_cost %]<br />
5512                 [% END %]
5513                 [% IF item.amount_paid %]
5514                     Amount paid: [% item.amount_paid %]<br />
5515                 [% END %]
5516             </li>
5517         [% END %]
5518     </ul>
5519     <div>
5520         Amounts spent per fund:
5521         <table>
5522         [% FOR blob IN user_data %]
5523             <tr>
5524                 <th style="text-align: left;">[% blob.fund.code %] ([% blob.fund.year %]):</th>
5525                 <td>$[% blob.total %]</td>
5526             </tr>
5527         [% END %]
5528         </table>
5529     </div>
5530 </div>
5531 [% END %]$$
5532 );
5533
5534
5535 INSERT INTO action_trigger.environment (event_def, path) VALUES
5536     (22, 'provider'),
5537     (22, 'provider.addresses'),
5538     (22, 'shipper'),
5539     (22, 'shipper.addresses'),
5540     (22, 'receiver'),
5541     (22, 'entries'),
5542     (22, 'entries.purchase_order'),
5543     (22, 'entries.lineitem'),
5544     (22, 'entries.lineitem.attributes'),
5545     (22, 'items')
5546 ;
5547
5548 SELECT SETVAL('action_trigger.event_definition_id_seq'::TEXT, 100);
5549
5550 -- Org Unit Settings for configuring org unit weights and org unit max-loops for hold targeting
5551
5552 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
5553     'circ.holds.org_unit_target_weight',
5554     'Holds: Org Unit Target Weight',
5555     'Org Units can be organized into hold target groups based on a weight.  Potential copies from org units with the same weight are chosen at random.',
5556     'integer'
5557 );
5558
5559 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
5560     'circ.holds.target_holds_by_org_unit_weight',
5561     'Holds: Use weight-based hold targeting',
5562     'Use library weight based hold targeting',
5563     'bool'
5564 );
5565
5566 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
5567     'circ.holds.max_org_unit_target_loops',
5568     'Holds: Maximum library target attempts',
5569     'When this value is set and greater than 0, the system will only attempt to find a copy at each possible branch the configured number of times',
5570     'integer'
5571 );
5572
5573
5574 -- Org setting for overriding the circ lib of a precat copy
5575 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
5576     'circ.pre_cat_copy_circ_lib',
5577     'Pre-cat Item Circ Lib',
5578     'Override the default circ lib of "here" with a pre-configured circ lib for pre-cat items.  The value should be the "shortname" (aka policy name) of the org unit',
5579     'string'
5580 );
5581
5582 -- Circ auto-renew interval setting
5583 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
5584     'circ.checkout_auto_renew_age',
5585     'Checkout auto renew age',
5586     'When an item has been checked out for at least this amount of time, an attempt to check out the item to the patron that it is already checked out to will simply renew the circulation',
5587     'interval'
5588 );
5589
5590 -- Setting for behind the desk hold pickups
5591 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
5592     'circ.holds.behind_desk_pickup_supported',
5593     'Holds: Behind Desk Pickup Supported',
5594     'If a branch supports both a public holds shelf and behind-the-desk pickups, set this value to true.  This gives the patron the option to enable behind-the-desk pickups for their holds',
5595     'bool'
5596 );
5597
5598 -- 0227.data.org-setting-acq.holds.allow_holds_from_purchase_request.sql
5599 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
5600         'acq.holds.allow_holds_from_purchase_request',
5601         oils_i18n_gettext(
5602             'acq.holds.allow_holds_from_purchase_request', 
5603             'Allows patrons to create automatic holds from purchase requests.', 
5604             'coust', 
5605             'label'),
5606         oils_i18n_gettext(
5607             'acq.holds.allow_holds_from_purchase_request', 
5608             'Allows patrons to create automatic holds from purchase requests.', 
5609             'coust', 
5610             'description'),
5611         'bool'
5612 );
5613
5614 -- Hold cancel action/trigger hooks
5615
5616 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
5617     'hold_request.cancel.expire_no_target',
5618     'ahr',
5619     'A hold is cancelled because no copies were found'
5620 );
5621
5622 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
5623     'hold_request.cancel.expire_holds_shelf',
5624     'ahr',
5625     'A hold is cancelled because it was on the holds shelf too long'
5626 );
5627
5628 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
5629     'hold_request.cancel.staff',
5630     'ahr',
5631     'A hold is cancelled because it was cancelled by staff'
5632 );
5633
5634 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
5635     'hold_request.cancel.patron',
5636     'ahr',
5637     'A hold is cancelled by the patron'
5638 );
5639
5640
5641
5642 -- hold targeter skip me
5643 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
5644     'circ.holds.target_skip_me',
5645     'Skip For Hold Targeting',
5646     'When true, don''t target any copies at this org unit for holds',
5647     'bool'
5648 );
5649
5650
5651 -- in-db indexing normalizers
5652 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5653         'NACO Normalize',
5654         'Apply NACO normalization rules to the extracted text.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
5655         'naco_normalize',
5656         0
5657 );
5658
5659 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5660         'Normalize date range',
5661         'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.',
5662         'split_date_range',
5663         0
5664 );
5665
5666 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5667         'NACO Normalize -- retain first comma',
5668         'Apply NACO normalization rules to the extracted text, retaining the first comma.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
5669         'naco_normalize_keep_comma',
5670         0
5671 );
5672
5673 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5674         'Strip Diacritics',
5675         'Convert text to NFD form and remove non-spacing combining marks.',
5676         'remove_diacritics',
5677         0
5678 );
5679
5680 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5681         'Remove Parenthesized Substring',
5682         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
5683         'remove_paren_substring',
5684         0
5685 );
5686
5687 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5688         'Up-case',
5689         'Convert text upper case.',
5690         'uppercase',
5691         0
5692 );
5693
5694 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5695         'Down-case',
5696         'Convert text lower case.',
5697         'lowercase',
5698         0
5699 );
5700
5701 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5702         'Extract Dewey-like number',
5703         'Extract a string of numeric characters that resembles a DDC number.',
5704         'call_number_dewey',
5705         0
5706 );
5707
5708 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5709         'Left truncation',
5710         'Discard the specified number of characters from the left side of the string.',
5711         'left_trunc',
5712         1
5713 );
5714
5715 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5716         'Right truncation',
5717         'Include only the specified number of characters from the left side of the string.',
5718         'right_trunc',
5719         1
5720 );
5721
5722 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5723         'First word',
5724         'Include only the first space-separated word of a string.',
5725         'first_word',
5726         0
5727 );
5728
5729 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5730         'ISBN 10/13 conversion',
5731         'Translate ISBN10 to ISBN13 and vice versa.',
5732         'translate_isbn1013',
5733         0
5734 );
5735
5736 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5737         'Replace',
5738         'Replace all occurences of first parameter in the string with the second parameter.',
5739         'replace',
5740         2
5741 );
5742
5743 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
5744         'Trim Surrounding Space',
5745         'Trim leading and trailing spaces from extracted text.',
5746         'btrim',
5747         0
5748 );
5749
5750 -- make use of the index normalizers
5751
5752 INSERT INTO config.metabib_field_index_norm_map (field,norm)
5753     SELECT  m.id,
5754             i.id
5755       FROM  config.metabib_field m,
5756         config.index_normalizer i
5757       WHERE i.func IN ('naco_normalize','split_date_range')
5758             AND m.id NOT IN (18, 19);
5759
5760 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
5761     SELECT  m.id,
5762             i.id,
5763             2
5764       FROM  config.metabib_field m,
5765             config.index_normalizer i
5766       WHERE i.func IN ('translate_isbn1013')
5767             AND m.id IN (18);
5768
5769 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
5770     SELECT  m.id,
5771             i.id,
5772             $$["-",""]$$
5773       FROM  config.metabib_field m,
5774             config.index_normalizer i
5775       WHERE i.func IN ('replace')
5776             AND m.id IN (19);
5777
5778 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
5779     SELECT  m.id,
5780             i.id,
5781             $$[" ",""]$$
5782       FROM  config.metabib_field m,
5783             config.index_normalizer i
5784       WHERE i.func IN ('replace')
5785             AND m.id IN (19);
5786
5787 INSERT INTO config.record_attr_index_norm_map (attr,norm,pos)
5788     SELECT  m.name, i.id, 0
5789       FROM  config.record_attr_definition m,
5790             config.index_normalizer i
5791       WHERE i.func IN ('content_or_null')
5792             AND m.name IN ('titlesort', 'authorsort');
5793
5794 INSERT INTO config.record_attr_index_norm_map (attr,norm,pos)
5795     SELECT  m.name, i.id, 0
5796       FROM  config.record_attr_definition m,
5797             config.index_normalizer i
5798       WHERE i.func IN ('integer_or_null')
5799             AND m.name IN ('date1', 'date2', 'pubdate');
5800
5801 INSERT INTO config.record_attr_index_norm_map (attr,norm,pos)
5802     SELECT  m.name, i.id, 0
5803       FROM  config.record_attr_definition m,
5804             config.index_normalizer i
5805       WHERE i.func IN ('approximate_low_date')
5806             AND m.name IN ('date1', 'pubdate');
5807
5808 INSERT INTO config.record_attr_index_norm_map (attr,norm,pos)
5809     SELECT  m.name, i.id, 0
5810       FROM  config.record_attr_definition m,
5811             config.index_normalizer i
5812       WHERE i.func IN ('approximate_high_date')
5813             AND m.name IN ('date2');
5814
5815 -- claims never checked out mark item missing 
5816 INSERT INTO
5817     config.org_unit_setting_type ( name, label, description, datatype )
5818     VALUES (
5819         'circ.claim_never_checked_out.mark_missing',
5820         'Claim Never Checked Out: Mark copy as missing', 
5821         'When a circ is marked as claims-never-checked-out, mark the copy as missing',
5822         'bool'
5823     );
5824
5825 -- mark damaged void overdue setting
5826 INSERT INTO
5827     config.org_unit_setting_type ( name, label, description, datatype )
5828     VALUES (
5829         'circ.damaged.void_ovedue',
5830         'Mark item damaged voids overdues',
5831         'When an item is marked damaged, overdue fines on the most recent circulation are voided.',
5832         'bool'
5833     );
5834
5835 -- hold cancel display limits
5836 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
5837     VALUES (
5838         'circ.holds.canceled.display_count',
5839         'Holds: Canceled holds display count',
5840         'How many canceled holds to show in patron holds interfaces',
5841         'integer'
5842     );
5843
5844 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
5845     VALUES (
5846         'circ.holds.canceled.display_age',
5847         'Holds: Canceled holds display age',
5848         'Show all canceled holds that were canceled within this amount of time',
5849         'interval'
5850     );
5851
5852 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
5853     VALUES (
5854         'circ.holds.uncancel.reset_request_time',
5855         'Holds: Reset request time on un-cancel',
5856         'When a hold is uncanceled, reset the request time to push it to the end of the queue',
5857         'bool'
5858     );
5859
5860 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
5861     VALUES (
5862         'circ.holds.default_shelf_expire_interval',
5863         'Default hold shelf expire interval',
5864         '',
5865         'interval'
5866 );
5867
5868
5869 -- Sample Pre-due Notice --
5870
5871 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, max_delay, template) 
5872     VALUES (6, 'f', 1, '3 Day Courtesy Notice', 'checkout.due', 'CircIsOpen', 'SendEmail', '-3 days', 'due_date', 'usr', '-2 days',
5873 $$
5874 [%- USE date -%]
5875 [%- user = target.0.usr -%]
5876 To: [%- params.recipient_email || user.email %]
5877 From: [%- params.sender_email || default_sender %]
5878 Subject: Courtesy Notice
5879
5880 Dear [% user.family_name %], [% user.first_given_name %]
5881 As a reminder, the following items are due in 3 days.
5882
5883 [% FOR circ IN target %]
5884     Title: [% circ.target_copy.call_number.record.simple_record.title %] 
5885     Barcode: [% circ.target_copy.barcode %] 
5886     Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
5887     Item Cost: [% helpers.get_copy_price(circ.target_copy) %]
5888     Library: [% circ.circ_lib.name %]
5889     Library Phone: [% circ.circ_lib.phone %]
5890 [% END %]
5891
5892 $$);
5893
5894 INSERT INTO action_trigger.environment (event_def, path) VALUES 
5895     (6, 'target_copy.call_number.record.simple_record'),
5896     (6, 'usr'),
5897     (6, 'circ_lib.billing_address');
5898
5899 -- Additional A/T Reactors
5900
5901 INSERT INTO action_trigger.reactor (module,description) VALUES
5902 (   'ApplyPatronPenalty',
5903     oils_i18n_gettext(
5904         'ApplyPatronPenalty',
5905         'Applies the configured penalty to a patron.  Required named environment variables are "user", which refers to the user object, and "context_org", which refers to the org_unit object that acts as the focus for the penalty.',
5906         'atreact',
5907         'description'
5908     )
5909 );
5910
5911 INSERT INTO action_trigger.reactor (module,description) VALUES
5912 (   'SendFile',
5913     oils_i18n_gettext(
5914         'SendFile',
5915         'Build and transfer a file to a remote server.  Required parameter "remote_host" specifying target server.  Optional parameters: remote_user, remote_password, remote_account, port, type (FTP, SFTP or SCP), and debug.',
5916         'atreact',
5917         'description'
5918     )
5919 );
5920
5921
5922 INSERT INTO config.org_unit_setting_type (name, label, description, datatype, fm_class)
5923     VALUES (
5924         'circ.claim_return.copy_status', 
5925         'Claim Return Copy Status', 
5926         'Claims returned copies are put into this status.  Default is to leave the copy in the Checked Out status',
5927         'link', 
5928         'ccs' 
5929     );
5930
5931 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
5932     VALUES ( 
5933         'circ.max_fine.cap_at_price',
5934         oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
5935         oils_i18n_gettext('circ.max_fine.cap_at_price', 'This prevents the system from charging more than the item price in overdue fines', 'coust', 'description'),
5936         'bool' 
5937     );
5938
5939 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) 
5940     VALUES ( 
5941         'circ.holds.clear_shelf.copy_status',
5942         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Holds: Clear shelf copy status', 'coust', 'label'),
5943         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Any copies that have not been put into reshelving, in-transit, or on-holds-shelf (for a new hold) during the clear shelf process will be put into this status.  This is basically a purgatory status for copies waiting to be pulled from the shelf and processed by hand', 'coust', 'description'),
5944         'link',
5945         'ccs'
5946     );
5947
5948 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
5949     VALUES ( 
5950         'circ.selfcheck.workstation_required',
5951         oils_i18n_gettext('circ.selfcheck.workstation_required', 'Selfcheck: Workstation Required', 'coust', 'label'),
5952         oils_i18n_gettext('circ.selfcheck.workstation_required', 'All selfcheck stations must use a workstation', 'coust', 'description'),
5953         'bool'
5954     ), (
5955         'circ.selfcheck.patron_password_required',
5956         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Selfcheck: Require Patron Password', 'coust', 'label'),
5957         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Patron must log in with barcode and password at selfcheck station', 'coust', 'description'),
5958         'bool'
5959     );
5960
5961 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
5962     VALUES ( 
5963         'circ.selfcheck.alert.sound',
5964         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Selfcheck: Audio Alerts', 'coust', 'label'),
5965         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Use audio alerts for selfcheck events', 'coust', 'description'),
5966         'bool'
5967     );
5968
5969 -- self-check checkout receipt
5970
5971 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
5972     VALUES (
5973         'format.selfcheck.checkout',
5974         'circ',
5975         'Formats circ objects for self-checkout receipt',
5976         TRUE
5977     );
5978
5979 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
5980     VALUES (
5981         10,
5982         TRUE,
5983         1,
5984         'Self-Checkout Receipt',
5985         'format.selfcheck.checkout',
5986         'NOOP_True',
5987         'ProcessTemplate',
5988         'usr',
5989         'print-on-demand',
5990 $$
5991 [%- USE date -%]
5992 [%- SET user = target.0.usr -%]
5993 [%- SET lib = target.0.circ_lib -%]
5994 [%- SET lib_addr = target.0.circ_lib.billing_address -%]
5995 [%- SET hours = lib.hours_of_operation -%]
5996 <div>
5997     <style> li { padding: 8px; margin 5px; }</style>
5998     <div>[% date.format %]</div>
5999     <div>[% lib.name %]</div>
6000     <div>[% lib_addr.street1 %] [% lib_addr.street2 %]</div>
6001     <div>[% lib_addr.city %], [% lib_addr.state %] [% lb_addr.post_code %]</div>
6002     <div>[% lib.phone %]</div>
6003     <br/>
6004
6005     [% user.family_name %], [% user.first_given_name %]
6006     <ol>
6007     [% FOR circ IN target %]
6008         [%-
6009             SET idx = loop.count - 1;
6010             SET udata =  user_data.$idx
6011         -%]
6012         <li>
6013             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
6014             <div>Barcode: [% circ.target_copy.barcode %]</div>
6015             [% IF user_data.renewal_failure %]
6016                 <div style='color:red;'>Renewal Failed</div>
6017             [% ELSE %]
6018                 <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
6019             [% END %]
6020         </li>
6021     [% END %]
6022     </ol>
6023     
6024     <div>
6025         Library Hours
6026         [%- BLOCK format_time; date.format(time _ ' 1/1/1000', format='%I:%M %p'); END -%]
6027         <div>
6028             Monday 
6029             [% PROCESS format_time time = hours.dow_0_open %] 
6030             [% PROCESS format_time time = hours.dow_0_close %] 
6031         </div>
6032         <div>
6033             Tuesday 
6034             [% PROCESS format_time time = hours.dow_1_open %] 
6035             [% PROCESS format_time time = hours.dow_1_close %] 
6036         </div>
6037         <div>
6038             Wednesday 
6039             [% PROCESS format_time time = hours.dow_2_open %] 
6040             [% PROCESS format_time time = hours.dow_2_close %] 
6041         </div>
6042         <div>
6043             Thursday
6044             [% PROCESS format_time time = hours.dow_3_open %] 
6045             [% PROCESS format_time time = hours.dow_3_close %] 
6046         </div>
6047         <div>
6048             Friday
6049             [% PROCESS format_time time = hours.dow_4_open %] 
6050             [% PROCESS format_time time = hours.dow_4_close %] 
6051         </div>
6052         <div>
6053             Saturday
6054             [% PROCESS format_time time = hours.dow_5_open %] 
6055             [% PROCESS format_time time = hours.dow_5_close %] 
6056         </div>
6057         <div>
6058             Sunday 
6059             [% PROCESS format_time time = hours.dow_6_open %] 
6060             [% PROCESS format_time time = hours.dow_6_close %] 
6061         </div>
6062     </div>
6063 </div>
6064 $$
6065 );
6066
6067
6068 INSERT INTO action_trigger.environment ( event_def, path) VALUES
6069     ( 10, 'target_copy'),
6070     ( 10, 'circ_lib.billing_address'),
6071     ( 10, 'circ_lib.hours_of_operation'),
6072     ( 10, 'usr');
6073
6074
6075 -- items out selfcheck receipt
6076
6077 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
6078     VALUES (
6079         'format.selfcheck.items_out',
6080         'circ',
6081         'Formats items out for self-checkout receipt',
6082         TRUE
6083     );
6084
6085 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
6086     VALUES (
6087         11,
6088         TRUE,
6089         1,
6090         'Self-Checkout Items Out Receipt',
6091         'format.selfcheck.items_out',
6092         'NOOP_True',
6093         'ProcessTemplate',
6094         'usr',
6095         'print-on-demand',
6096 $$
6097 [%- USE date -%]
6098 [%- SET user = target.0.usr -%]
6099 <div>
6100     <style> li { padding: 8px; margin 5px; }</style>
6101     <div>[% date.format %]</div>
6102     <br/>
6103
6104     [% user.family_name %], [% user.first_given_name %]
6105     <ol>
6106     [% FOR circ IN target %]
6107         <li>
6108             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
6109             <div>Barcode: [% circ.target_copy.barcode %]</div>
6110             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
6111         </li>
6112     [% END %]
6113     </ol>
6114 </div>
6115 $$
6116 );
6117
6118
6119 INSERT INTO action_trigger.environment ( event_def, path) VALUES
6120     ( 11, 'target_copy'),
6121     ( 11, 'circ_lib.billing_address'),
6122     ( 11, 'circ_lib.hours_of_operation'),
6123     ( 11, 'usr');
6124
6125 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
6126     VALUES (
6127         'format.selfcheck.holds',
6128         'ahr',
6129         'Formats holds for self-checkout receipt',
6130         TRUE
6131     );
6132
6133 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
6134     VALUES (
6135         12,
6136         TRUE,
6137         1,
6138         'Self-Checkout Holds Receipt',
6139         'format.selfcheck.holds',
6140         'NOOP_True',
6141         'ProcessTemplate',
6142         'usr',
6143         'print-on-demand',
6144 $$
6145 [%- USE date -%]
6146 [%- SET user = target.0.usr -%]
6147 <div>
6148     <style> li { padding: 8px; margin 5px; }</style>
6149     <div>[% date.format %]</div>
6150     <br/>
6151
6152     [% user.family_name %], [% user.first_given_name %]
6153     <ol>
6154     [% FOR hold IN target %]
6155         [%-
6156             SET idx = loop.count - 1;
6157             SET udata =  user_data.$idx
6158         -%]
6159         <li>
6160             <div>Title: [% hold.bib_rec.bib_record.simple_record.title %]</div>
6161             <div>Author: [% hold.bib_rec.bib_record.simple_record.author %]</div>
6162             <div>Pickup Location: [% hold.pickup_lib.name %]</div>
6163             <div>Status: 
6164                 [%- IF udata.ready -%]
6165                     Ready for pickup
6166                 [% ELSE %]
6167                     #[% udata.queue_position %] of [% udata.potential_copies %] copies.
6168                 [% END %]
6169             </div>
6170         </li>
6171     [% END %]
6172     </ol>
6173 </div>
6174 $$
6175 );
6176
6177
6178 INSERT INTO action_trigger.environment ( event_def, path) VALUES
6179     ( 12, 'bib_rec.bib_record.simple_record'),
6180     ( 12, 'pickup_lib'),
6181     ( 12, 'usr');
6182
6183 -- fines receipt
6184
6185 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
6186     VALUES (
6187         'format.selfcheck.fines',
6188         'au',
6189         'Formats fines for self-checkout receipt',
6190         TRUE
6191     );
6192
6193 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template )
6194     VALUES (
6195         13,
6196         TRUE,
6197         1,
6198         'Self-Checkout Fines Receipt',
6199         'format.selfcheck.fines',
6200         'NOOP_True',
6201         'ProcessTemplate',
6202         'print-on-demand',
6203 $$
6204 [%- USE date -%]
6205 [%- SET user = target -%]
6206 <div>
6207     <style> li { padding: 8px; margin 5px; }</style>
6208     <div>[% date.format %]</div>
6209     <br/>
6210
6211     [% user.family_name %], [% user.first_given_name %]
6212     <ol>
6213     [% FOR xact IN user.open_billable_transactions_summary %]
6214         <li>
6215             <div>Details: 
6216                 [% IF xact.xact_type == 'circulation' %]
6217                     [%- helpers.get_copy_bib_basics(xact.circulation.target_copy).title -%]
6218                 [% ELSE %]
6219                     [%- xact.last_billing_type -%]
6220                 [% END %]
6221             </div>
6222             <div>Total Billed: [% xact.total_owed %]</div>
6223             <div>Total Paid: [% xact.total_paid %]</div>
6224             <div>Balance Owed : [% xact.balance_owed %]</div>
6225         </li>
6226     [% END %]
6227     </ol>
6228 </div>
6229 $$
6230 );
6231
6232 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
6233     VALUES (
6234         'format.acqli.html',
6235         'jub',
6236         'Formats lineitem worksheet for titles received',
6237         TRUE
6238     );
6239
6240 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template)
6241     VALUES (
6242         14,
6243         TRUE,
6244         1,
6245         'Lineitem Worksheet',
6246         'format.acqli.html',
6247         'NOOP_True',
6248         'ProcessTemplate',
6249         'print-on-demand',
6250 $$
6251 [%- USE date -%]
6252 [%- SET li = target; -%]
6253 <div class="wrapper">
6254     <div class="summary" style='font-size:110%; font-weight:bold;'>
6255
6256         <div>Title: [% helpers.get_li_attr("title", "", li.attributes) %]</div>
6257         <div>Author: [% helpers.get_li_attr("author", "", li.attributes) %]</div>
6258         <div class="count">Item Count: [% li.lineitem_details.size %]</div>
6259         <div class="lineid">Lineitem ID: [% li.id %]</div>
6260
6261         [% IF li.distribution_formulas.size > 0 %]
6262             [% SET forms = [] %]
6263             [% FOREACH form IN li.distribution_formulas; forms.push(form.formula.name); END %]
6264             <div>Distribution Formulas: [% forms.join(',') %]</div>
6265         [% END %]
6266
6267         [% IF li.lineitem_notes.size > 0 %]
6268             Lineitem Notes:
6269             <ul>
6270                 [%- FOR note IN li.lineitem_notes -%]
6271                     <li>
6272                     [% IF note.alert_text %]
6273                         [% note.alert_text.code -%] 
6274                         [% IF note.value -%]
6275                             : [% note.value %]
6276                         [% END %]
6277                     [% ELSE %]
6278                         [% note.value -%] 
6279                     [% END %]
6280                     </li>
6281                 [% END %]
6282             </ul>
6283         [% END %]
6284     </div>
6285     <br/>
6286     <table>
6287         <thead>
6288             <tr>
6289                 <th>Branch</th>
6290                 <th>Barcode</th>
6291                 <th>Call Number</th>
6292                 <th>Fund</th>
6293                 <th>Shelving Location</th>
6294                 <th>Recd.</th>
6295                 <th>Notes</th>
6296             </tr>
6297         </thead>
6298         <tbody>
6299         [% FOREACH detail IN li.lineitem_details.sort('owning_lib') %]
6300             [% 
6301                 IF detail.eg_copy_id;
6302                     SET copy = detail.eg_copy_id;
6303                     SET cn_label = copy.call_number.label;
6304                 ELSE; 
6305                     SET copy = detail; 
6306                     SET cn_label = detail.cn_label;
6307                 END 
6308             %]
6309             <tr>
6310                 <!-- acq.lineitem_detail.id = [%- detail.id -%] -->
6311                 <td style='padding:5px;'>[% detail.owning_lib.shortname %]</td>
6312                 <td style='padding:5px;'>[% IF copy.barcode   %]<span class="barcode"  >[% detail.barcode   %]</span>[% END %]</td>
6313                 <td style='padding:5px;'>[% IF cn_label %]<span class="cn_label" >[% cn_label  %]</span>[% END %]</td>
6314                 <td style='padding:5px;'>[% IF detail.fund %]<span class="fund">[% detail.fund.code %] ([% detail.fund.year %])</span>[% END %]</td>
6315                 <td style='padding:5px;'>[% copy.location.name %]</td>
6316                 <td style='padding:5px;'>[% IF detail.recv_time %]<span class="recv_time">[% detail.recv_time %]</span>[% END %]</td>
6317                 <td style='padding:5px;'>[% detail.note %]</td>
6318             </tr>
6319         [% END %]
6320         </tbody>
6321     </table>
6322 </div>
6323 $$
6324 );
6325
6326
6327 INSERT INTO action_trigger.environment (event_def, path) VALUES
6328     ( 14, 'attributes' ),
6329     ( 14, 'lineitem_notes' ),
6330     ( 14, 'lineitem_notes.alert_text' ),
6331     ( 14, 'distribution_formulas.formula' ),
6332     ( 14, 'lineitem_details' ),
6333     ( 14, 'lineitem_details.owning_lib' ),
6334     ( 14, 'lineitem_details.fund' ),
6335     ( 14, 'lineitem_details.location' ),
6336     ( 14, 'lineitem_details.eg_copy_id' ),
6337     ( 14, 'lineitem_details.eg_copy_id.call_number' ),
6338     ( 14, 'lineitem_details.eg_copy_id.location' )
6339 ;
6340
6341 INSERT INTO action_trigger.environment ( event_def, path) VALUES
6342     ( 13, 'open_billable_transactions_summary.circulation' );
6343
6344
6345 INSERT INTO action_trigger.validator (module, description) 
6346     VALUES (
6347         'Acq::PurchaseOrderEDIRequired',
6348         oils_i18n_gettext(
6349             'Acq::PurchaseOrderEDIRequired',
6350             'Purchase order is delivered via EDI',
6351             'atval',
6352             'description'
6353         )
6354     );
6355
6356 INSERT INTO action_trigger.reactor (module, description)
6357     VALUES (
6358         'GeneratePurchaseOrderJEDI',
6359         oils_i18n_gettext(
6360             'GeneratePurchaseOrderJEDI',
6361             'Creates purchase order JEDI (JSON EDI) for subsequent EDI processing',
6362             'atreact',
6363             'description'
6364         )
6365     );
6366
6367
6368 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, cleanup_success, cleanup_failure, delay, delay_field, group_field, template) 
6369     VALUES (23, true, 1, 'PO JEDI', 'acqpo.activated', 'Acq::PurchaseOrderEDIRequired', 'GeneratePurchaseOrderJEDI', NULL, NULL, '00:00:00', NULL, NULL,
6370 $$[%- USE date -%]
6371 [%# start JEDI document 
6372   # Vendor specific kludges:
6373   # BT      - vendcode goes to NAD/BY *suffix*  w/ 91 qualifier
6374   # INGRAM  - vendcode goes to NAD/BY *segment* w/ 91 qualifier (separately)
6375   # BRODART - vendcode goes to FTX segment (lineitem level)
6376 -%]
6377 [%- 
6378 IF target.provider.edi_default.vendcode && target.provider.code == 'BRODART';
6379     xtra_ftx = target.provider.edi_default.vendcode;
6380 END;
6381 -%]
6382 [%- BLOCK big_block -%]
6383 {
6384    "recipient":"[% target.provider.san %]",
6385    "sender":"[% target.ordering_agency.mailing_address.san %]",
6386    "body": [{
6387      "ORDERS":[ "order", {
6388         "po_number":[% target.id %],
6389         "date":"[% date.format(date.now, '%Y%m%d') %]",
6390         "buyer":[
6391             [%   IF   target.provider.edi_default.vendcode && (target.provider.code == 'BT' || target.provider.name.match('(?i)^BAKER & TAYLOR'))  -%]
6392                 {"id-qualifier": 91, "id":"[% target.ordering_agency.mailing_address.san _ ' ' _ target.provider.edi_default.vendcode %]"}
6393             [%- ELSIF target.provider.edi_default.vendcode && target.provider.code == 'INGRAM' -%]
6394                 {"id":"[% target.ordering_agency.mailing_address.san %]"},
6395                 {"id-qualifier": 91, "id":"[% target.provider.edi_default.vendcode %]"}
6396             [%- ELSE -%]
6397                 {"id":"[% target.ordering_agency.mailing_address.san %]"}
6398             [%- END -%]
6399         ],
6400         "vendor":[
6401             [%- # target.provider.name (target.provider.id) -%]
6402             "[% target.provider.san %]",
6403             {"id-qualifier": 92, "id":"[% target.provider.id %]"}
6404         ],
6405         "currency":"[% target.provider.currency_type %]",
6406                 
6407         "items":[
6408         [%- FOR li IN target.lineitems %]
6409         {
6410             "line_index":"[% li.id %]",
6411             "identifiers":[   [%-# li.isbns = helpers.get_li_isbns(li.attributes) %]
6412             [% FOR isbn IN helpers.get_li_isbns(li.attributes) -%]
6413                 [% IF isbn.length == 13 -%]
6414                 {"id-qualifier":"EN","id":"[% isbn %]"},
6415                 [% ELSE -%]
6416                 {"id-qualifier":"IB","id":"[% isbn %]"},
6417                 [%- END %]
6418             [% END %]
6419                 {"id-qualifier":"IN","id":"[% li.id %]"}
6420             ],
6421             "price":[% li.estimated_unit_price || '0.00' %],
6422             "desc":[
6423                 {"BTI":"[% helpers.get_li_attr('title',     '', li.attributes) %]"},
6424                 {"BPU":"[% helpers.get_li_attr('publisher', '', li.attributes) %]"},
6425                 {"BPD":"[% helpers.get_li_attr('pubdate',   '', li.attributes) %]"},
6426                 {"BPH":"[% helpers.get_li_attr('pagination','', li.attributes) %]"}
6427             ],
6428             [%- ftx_vals = []; 
6429                 FOR note IN li.lineitem_notes; 
6430                     NEXT UNLESS note.vendor_public == 't'; 
6431                     ftx_vals.push(note.value); 
6432                 END; 
6433                 IF xtra_ftx;           ftx_vals.unshift(xtra_ftx); END; 
6434                 IF ftx_vals.size == 0; ftx_vals.unshift('');       END;  # BT needs FTX+LIN for every LI, even if it is an empty one
6435             -%]
6436
6437             "free-text":[ 
6438                 [% FOR note IN ftx_vals -%] "[% note %]"[% UNLESS loop.last %], [% END %][% END %] 
6439             ],            
6440             "quantity":[% li.lineitem_details.size %]
6441         }[% UNLESS loop.last %],[% END %]
6442         [%-# TODO: lineitem details (later) -%]
6443         [% END %]
6444         ],
6445         "line_items":[% target.lineitems.size %]
6446      }]  [%# close ORDERS array %]
6447    }]    [%# close  body  array %]
6448 }
6449 [% END %]
6450 [% tempo = PROCESS big_block; helpers.escape_json(tempo) %]
6451 $$
6452 );
6453
6454 INSERT INTO action_trigger.environment (event_def, path) VALUES 
6455   (23, 'lineitems.attributes'), 
6456   (23, 'lineitems.lineitem_details'), 
6457   (23, 'lineitems.lineitem_notes'), 
6458   (23, 'ordering_agency.mailing_address'), 
6459   (23, 'provider'),
6460   (23, 'provider.edi_default');
6461
6462 INSERT INTO
6463     config.org_unit_setting_type (name, label, description, datatype)
6464     VALUES (
6465         'notice.telephony.callfile_lines',
6466         'Telephony: Arbitrary line(s) to include in each notice callfile',
6467         $$
6468         This overrides lines from opensrf.xml.
6469         Line(s) must be valid for your target server and platform
6470         (e.g. Asterisk 1.4).
6471         $$,
6472         'string'
6473     );
6474
6475 INSERT INTO action_trigger.reactor (module, description) VALUES (
6476     'AstCall', 'Possibly place a phone call with Asterisk'
6477 );
6478
6479 INSERT INTO
6480     action_trigger.event_definition (
6481         id, active, owner, name, hook, validator, reactor,
6482         cleanup_success, cleanup_failure, delay, delay_field, group_field,
6483         max_delay, granularity, usr_field, opt_in_setting, template
6484     ) VALUES (
6485         24,
6486         FALSE,
6487         1,
6488         'Telephone Overdue Notice',
6489         'checkout.due', 'NOOP_True', 'AstCall',
6490         DEFAULT, DEFAULT, '5 seconds', 'due_date', 'usr',
6491         DEFAULT, DEFAULT, DEFAULT, DEFAULT,
6492         $$
6493 [% phone = target.0.usr.day_phone | replace('[\s\-\(\)]', '') -%]
6494 [% IF phone.match('^[2-9]') %][% country = 1 %][% ELSE %][% country = '' %][% END -%]
6495 Channel: [% channel_prefix %]/[% country %][% phone %]
6496 Context: overdue-test
6497 MaxRetries: 1
6498 RetryTime: 60
6499 WaitTime: 30
6500 Extension: 10
6501 Archive: 1
6502 Set: eg_user_id=[% target.0.usr.id %]
6503 Set: items=[% target.size %]
6504 Set: titlestring=[% titles = [] %][% FOR circ IN target %][% titles.push(circ.target_copy.call_number.record.simple_record.title) %][% END %][% titles.join(". ") %]
6505 $$
6506     );
6507
6508 INSERT INTO
6509     action_trigger.environment (id, event_def, path)
6510     VALUES
6511         (DEFAULT, 24, 'target_copy.call_number.record.simple_record'),
6512         (DEFAULT, 24, 'usr')
6513     ;
6514
6515 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
6516     VALUES ( 
6517         'circ.offline.username_allowed',
6518         oils_i18n_gettext('circ.offline.username_allowed', 'Offline: Patron Usernames Allowed', 'coust', 'label'),
6519         oils_i18n_gettext('circ.offline.username_allowed', 'During offline circulations, allow patrons to identify themselves with usernames in addition to barcode.  For this setting to work, a barcode format must also be defined', 'coust', 'description'),
6520         'bool'
6521     );
6522
6523 -- 0285.data.history_format.sql
6524
6525 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
6526         'circ.format.history.email',
6527         'circ', 
6528         oils_i18n_gettext(
6529             'circ.format.history.email',
6530             'An email has been requested for a circ history.',
6531             'ath',
6532             'description'
6533         ), 
6534         FALSE
6535     )
6536     ,(
6537         'circ.format.history.print',
6538         'circ', 
6539         oils_i18n_gettext(
6540             'circ.format.history.print',
6541             'A circ history needs to be formatted for printing.',
6542             'ath',
6543             'description'
6544         ), 
6545         FALSE
6546     )
6547     ,(
6548         'ahr.format.history.email',
6549         'ahr', 
6550         oils_i18n_gettext(
6551             'ahr.format.history.email',
6552             'An email has been requested for a hold request history.',
6553             'ath',
6554             'description'
6555         ), 
6556         FALSE
6557     )
6558     ,(
6559         'ahr.format.history.print',
6560         'ahr', 
6561         oils_i18n_gettext(
6562             'ahr.format.history.print',
6563             'A hold request history needs to be formatted for printing.',
6564             'ath',
6565             'description'
6566         ), 
6567         FALSE
6568     )
6569
6570 ;
6571
6572 INSERT INTO action_trigger.event_definition (
6573         id,
6574         active,
6575         owner,
6576         name,
6577         hook,
6578         validator,
6579         reactor,
6580         group_field,
6581         granularity,
6582         template
6583     ) VALUES (
6584         25,
6585         TRUE,
6586         1,
6587         'circ.history.email',
6588         'circ.format.history.email',
6589         'NOOP_True',
6590         'SendEmail',
6591         'usr',
6592         NULL,
6593 $$
6594 [%- USE date -%]
6595 [%- SET user = target.0.usr -%]
6596 To: [%- params.recipient_email || user.email %]
6597 From: [%- params.sender_email || default_sender %]
6598 Subject: Circulation History
6599
6600     [% FOR circ IN target %]
6601             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
6602             Barcode: [% circ.target_copy.barcode %]
6603             Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]
6604             Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
6605             Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]
6606     [% END %]
6607 $$
6608     )
6609     ,(
6610         26,
6611         TRUE,
6612         1,
6613         'circ.history.print',
6614         'circ.format.history.print',
6615         'NOOP_True',
6616         'ProcessTemplate',
6617         'usr',
6618         'print-on-demand',
6619 $$
6620 [%- USE date -%]
6621 <div>
6622     <style> li { padding: 8px; margin 5px; }</style>
6623     <div>[% date.format %]</div>
6624     <br/>
6625
6626     [% user.family_name %], [% user.first_given_name %]
6627     <ol>
6628     [% FOR circ IN target %]
6629         <li>
6630             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
6631             <div>Barcode: [% circ.target_copy.barcode %]</div>
6632             <div>Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]</div>
6633             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
6634             <div>Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]</div>
6635         </li>
6636     [% END %]
6637     </ol>
6638 </div>
6639 $$
6640     )
6641     ,(
6642         27,
6643         TRUE,
6644         1,
6645         'ahr.history.email',
6646         'ahr.format.history.email',
6647         'NOOP_True',
6648         'SendEmail',
6649         'usr',
6650         NULL,
6651 $$
6652 [%- USE date -%]
6653 [%- SET user = target.0.usr -%]
6654 To: [%- params.recipient_email || user.email %]
6655 From: [%- params.sender_email || default_sender %]
6656 Subject: Hold Request History
6657
6658     [% FOR hold IN target %]
6659             [% helpers.get_copy_bib_basics(hold.current_copy.id).title %]
6660             Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]
6661             [% IF hold.fulfillment_time %]Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %][% END %]
6662     [% END %]
6663 $$
6664     )
6665     ,(
6666         28,
6667         TRUE,
6668         1,
6669         'ahr.history.print',
6670         'ahr.format.history.print',
6671         'NOOP_True',
6672         'ProcessTemplate',
6673         'usr',
6674         'print-on-demand',
6675 $$
6676 [%- USE date -%]
6677 <div>
6678     <style> li { padding: 8px; margin 5px; }</style>
6679     <div>[% date.format %]</div>
6680     <br/>
6681
6682     [% user.family_name %], [% user.first_given_name %]
6683     <ol>
6684     [% FOR hold IN target %]
6685         <li>
6686             <div>[% helpers.get_copy_bib_basics(hold.current_copy.id).title %]</div>
6687             <div>Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]</div>
6688             [% IF hold.fulfillment_time %]<div>Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %]</div>[% END %]
6689         </li>
6690     [% END %]
6691     </ol>
6692 </div>
6693 $$
6694     )
6695
6696 ;
6697
6698 INSERT INTO action_trigger.environment (
6699         event_def,
6700         path
6701     ) VALUES 
6702          ( 25, 'target_copy')
6703         ,( 25, 'usr' )
6704         ,( 26, 'target_copy' )
6705         ,( 26, 'usr' )
6706         ,( 27, 'current_copy' )
6707         ,( 27, 'usr' )
6708         ,( 28, 'current_copy' )
6709         ,( 28, 'usr' )
6710 ;
6711
6712 -- 0289.data.payment_receipt_format.sql
6713 -- 0326.data.payment_receipt_format.sql
6714
6715 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
6716         'money.format.payment_receipt.email',
6717         'mp', 
6718         oils_i18n_gettext(
6719             'money.format.payment_receipt.email',
6720             'An email has been requested for a payment receipt.',
6721             'ath',
6722             'description'
6723         ), 
6724         FALSE
6725     )
6726     ,(
6727         'money.format.payment_receipt.print',
6728         'mp', 
6729         oils_i18n_gettext(
6730             'money.format.payment_receipt.print',
6731             'A payment receipt needs to be formatted for printing.',
6732             'ath',
6733             'description'
6734         ), 
6735         FALSE
6736     )
6737 ;
6738
6739 INSERT INTO action_trigger.event_definition (
6740         id,
6741         active,
6742         owner,
6743         name,
6744         hook,
6745         validator,
6746         reactor,
6747         group_field,
6748         granularity,
6749         template
6750     ) VALUES (
6751         29,
6752         TRUE,
6753         1,
6754         'money.payment_receipt.email',
6755         'money.format.payment_receipt.email',
6756         'NOOP_True',
6757         'SendEmail',
6758         'xact.usr',
6759         NULL,
6760 $$
6761 [%- USE date -%]
6762 [%- SET user = target.0.xact.usr -%]
6763 To: [%- params.recipient_email || user.email %]
6764 From: [%- params.sender_email || default_sender %]
6765 Subject: Payment Receipt
6766
6767 [% date.format -%]
6768 [%- SET xact_mp_hash = {} -%]
6769 [%- FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions -%]
6770     [%- SET xact_id = mp.xact.id -%]
6771     [%- IF ! xact_mp_hash.defined( xact_id ) -%][%- xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } -%][%- END -%]
6772     [%- xact_mp_hash.$xact_id.payments.push(mp) -%]
6773 [%- END -%]
6774 [%- FOR xact_id IN xact_mp_hash.keys.sort -%]
6775     [%- SET xact = xact_mp_hash.$xact_id.xact %]
6776 Transaction ID: [% xact_id %]
6777     [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
6778     [% ELSE %]Miscellaneous
6779     [% END %]
6780     Line item billings:
6781         [%- SET mb_type_hash = {} -%]
6782         [%- FOR mb IN xact.billings %][%# Group billings by their btype -%]
6783             [%- IF mb.voided == 'f' -%]
6784                 [%- SET mb_type = mb.btype.id -%]
6785                 [%- IF ! mb_type_hash.defined( mb_type ) -%][%- mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } -%][%- END -%]
6786                 [%- IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) -%][%- mb_type_hash.$mb_type.first_ts = mb.billing_ts -%][%- END -%]
6787                 [%- mb_type_hash.$mb_type.last_ts = mb.billing_ts -%]
6788                 [%- mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount -%]
6789                 [%- mb_type_hash.$mb_type.billings.push( mb ) -%]
6790             [%- END -%]
6791         [%- END -%]
6792         [%- FOR mb_type IN mb_type_hash.keys.sort -%]
6793             [%- IF mb_type == 1 %][%-# Consolidated view of overdue billings -%]
6794                 $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
6795                     on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
6796             [%- ELSE -%][%# all other billings show individually %]
6797                 [% FOR mb IN mb_type_hash.$mb_type.billings %]
6798                     $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
6799                 [% END %]
6800             [% END %]
6801         [% END %]
6802     Line item payments:
6803         [% FOR mp IN xact_mp_hash.$xact_id.payments %]
6804             Payment ID: [% mp.id %]
6805                 Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
6806                     [% CASE "cash_payment" %]cash
6807                     [% CASE "check_payment" %]check
6808                     [% CASE "credit_card_payment" %]credit card (
6809                         [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
6810                         [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
6811                         [% cc_chunks.last -%]
6812                         exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
6813                     )
6814                     [% CASE "credit_payment" %]credit
6815                     [% CASE "forgive_payment" %]forgiveness
6816                     [% CASE "goods_payment" %]goods
6817                     [% CASE "work_payment" %]work
6818                 [%- END %] on [% mp.payment_ts %] [% mp.note %]
6819         [% END %]
6820 [% END %]
6821 $$
6822     )
6823     ,(
6824         30,
6825         TRUE,
6826         1,
6827         'money.payment_receipt.print',
6828         'money.format.payment_receipt.print',
6829         'NOOP_True',
6830         'ProcessTemplate',
6831         'xact.usr',
6832         'print-on-demand',
6833 $$
6834 [%- USE date -%][%- SET user = target.0.xact.usr -%]
6835 <div style="li { padding: 8px; margin 5px; }">
6836     <div>[% date.format %]</div><br/>
6837     <ol>
6838     [% SET xact_mp_hash = {} %]
6839     [% FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions %]
6840         [% SET xact_id = mp.xact.id %]
6841         [% IF ! xact_mp_hash.defined( xact_id ) %][% xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } %][% END %]
6842         [% xact_mp_hash.$xact_id.payments.push(mp) %]
6843     [% END %]
6844     [% FOR xact_id IN xact_mp_hash.keys.sort %]
6845         [% SET xact = xact_mp_hash.$xact_id.xact %]
6846         <li>Transaction ID: [% xact_id %]
6847             [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
6848             [% ELSE %]Miscellaneous
6849             [% END %]
6850             Line item billings:<ol>
6851                 [% SET mb_type_hash = {} %]
6852                 [% FOR mb IN xact.billings %][%# Group billings by their btype %]
6853                     [% IF mb.voided == 'f' %]
6854                         [% SET mb_type = mb.btype.id %]
6855                         [% IF ! mb_type_hash.defined( mb_type ) %][% mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } %][% END %]
6856                         [% IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) %][% mb_type_hash.$mb_type.first_ts = mb.billing_ts %][% END %]
6857                         [% mb_type_hash.$mb_type.last_ts = mb.billing_ts %]
6858                         [% mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount %]
6859                         [% mb_type_hash.$mb_type.billings.push( mb ) %]
6860                     [% END %]
6861                 [% END %]
6862                 [% FOR mb_type IN mb_type_hash.keys.sort %]
6863                     <li>[% IF mb_type == 1 %][%# Consolidated view of overdue billings %]
6864                         $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
6865                             on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
6866                     [% ELSE %][%# all other billings show individually %]
6867                         [% FOR mb IN mb_type_hash.$mb_type.billings %]
6868                             $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
6869                         [% END %]
6870                     [% END %]</li>
6871                 [% END %]
6872             </ol>
6873             Line item payments:<ol>
6874                 [% FOR mp IN xact_mp_hash.$xact_id.payments %]
6875                     <li>Payment ID: [% mp.id %]
6876                         Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
6877                             [% CASE "cash_payment" %]cash
6878                             [% CASE "check_payment" %]check
6879                             [% CASE "credit_card_payment" %]credit card (
6880                                 [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
6881                                 [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
6882                                 [% cc_chunks.last -%]
6883                                 exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
6884                             )
6885                             [% CASE "credit_payment" %]credit
6886                             [% CASE "forgive_payment" %]forgiveness
6887                             [% CASE "goods_payment" %]goods
6888                             [% CASE "work_payment" %]work
6889                         [%- END %] on [% mp.payment_ts %] [% mp.note %]
6890                     </li>
6891                 [% END %]
6892             </ol>
6893         </li>
6894     [% END %]
6895     </ol>
6896 </div>
6897 $$
6898     )
6899 ;
6900
6901 INSERT INTO action_trigger.environment (
6902         event_def,
6903         path
6904     ) VALUES -- for fleshing mp objects
6905          ( 29, 'xact')
6906         ,( 29, 'xact.usr')
6907         ,( 29, 'xact.grocery' )
6908         ,( 29, 'xact.circulation' )
6909         ,( 29, 'xact.summary' )
6910         ,( 29, 'credit_card_payment')
6911         ,( 29, 'xact.billings')
6912         ,( 29, 'xact.billings.btype')
6913         ,( 30, 'xact')
6914         ,( 30, 'xact.usr')
6915         ,( 30, 'xact.grocery' )
6916         ,( 30, 'xact.circulation' )
6917         ,( 30, 'xact.summary' )
6918         ,( 30, 'credit_card_payment')
6919         ,( 30, 'xact.billings')
6920         ,( 30, 'xact.billings.btype')
6921 ;
6922
6923 -- 0294.data.bre_format.sql
6924
6925 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
6926     'temp',
6927     oils_i18n_gettext(
6928         'temp',
6929         'Temporary bucket which gets deleted after use.',
6930         'cbrebt',
6931         'label'
6932     )
6933 );
6934
6935 INSERT INTO action_trigger.cleanup ( module, description ) VALUES (
6936     'DeleteTempBiblioBucket',
6937     oils_i18n_gettext(
6938         'DeleteTempBiblioBucket',
6939         'Deletes a cbreb object used as a target if it has a btype of "temp"',
6940         'atclean',
6941         'description'
6942     )
6943 );
6944
6945 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
6946         'biblio.format.record_entry.email',
6947         'cbreb', 
6948         oils_i18n_gettext(
6949             'biblio.format.record_entry.email',
6950             'An email has been requested for one or more biblio record entries.',
6951             'ath',
6952             'description'
6953         ), 
6954         FALSE
6955     )
6956     ,(
6957         'biblio.format.record_entry.print',
6958         'cbreb', 
6959         oils_i18n_gettext(
6960             'biblio.format.record_entry.print',
6961             'One or more biblio record entries need to be formatted for printing.',
6962             'ath',
6963             'description'
6964         ), 
6965         FALSE
6966     )
6967 ;
6968
6969 INSERT INTO action_trigger.event_definition (
6970         id,
6971         active,
6972         owner,
6973         name,
6974         hook,
6975         validator,
6976         reactor,
6977         cleanup_success,
6978         cleanup_failure,
6979         group_field,
6980         granularity,
6981         template
6982     ) VALUES (
6983         31,
6984         TRUE,
6985         1,
6986         'biblio.record_entry.email',
6987         'biblio.format.record_entry.email',
6988         'NOOP_True',
6989         'SendEmail',
6990         'DeleteTempBiblioBucket',
6991         'DeleteTempBiblioBucket',
6992         'owner',
6993         NULL,
6994 $$
6995 [%- USE date -%]
6996 [%- SET user = target.0.owner -%]
6997 To: [%- params.recipient_email || user.email %]
6998 From: [%- params.sender_email || default_sender %]
6999 Subject: Bibliographic Records
7000
7001     [% FOR cbreb IN target %]
7002     [% FOR cbrebi IN cbreb.items %]
7003         Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]
7004         Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]
7005         Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]
7006         Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
7007
7008     [% END %]
7009     [% END %]
7010 $$
7011     )
7012     ,(
7013         32,
7014         TRUE,
7015         1,
7016         'biblio.record_entry.print',
7017         'biblio.format.record_entry.print',
7018         'NOOP_True',
7019         'ProcessTemplate',
7020         'DeleteTempBiblioBucket',
7021         'DeleteTempBiblioBucket',
7022         'owner',
7023         'print-on-demand',
7024 $$
7025 [%- USE date -%]
7026 <div>
7027     <style> li { padding: 8px; margin 5px; }</style>
7028     <ol>
7029     [% FOR cbreb IN target %]
7030     [% FOR cbrebi IN cbreb.items %]
7031         <li>Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]<br />
7032             Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]<br />
7033             Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]<br />
7034             Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
7035         </li>
7036     [% END %]
7037     [% END %]
7038     </ol>
7039 </div>
7040 $$
7041     )
7042 ;
7043
7044 INSERT INTO action_trigger.environment (
7045         event_def,
7046         path
7047     ) VALUES -- for fleshing cbreb objects
7048          ( 31, 'owner' )
7049         ,( 31, 'items' )
7050         ,( 31, 'items.target_biblio_record_entry' )
7051         ,( 31, 'items.target_biblio_record_entry.simple_record' )
7052         ,( 31, 'items.target_biblio_record_entry.call_numbers' )
7053         ,( 31, 'items.target_biblio_record_entry.fixed_fields' )
7054         ,( 31, 'items.target_biblio_record_entry.notes' )
7055         ,( 31, 'items.target_biblio_record_entry.full_record_entries' )
7056         ,( 32, 'owner' )
7057         ,( 32, 'items' )
7058         ,( 32, 'items.target_biblio_record_entry' )
7059         ,( 32, 'items.target_biblio_record_entry.simple_record' )
7060         ,( 32, 'items.target_biblio_record_entry.call_numbers' )
7061         ,( 32, 'items.target_biblio_record_entry.fixed_fields' )
7062         ,( 32, 'items.target_biblio_record_entry.notes' )
7063         ,( 32, 'items.target_biblio_record_entry.full_record_entries' )
7064 ;
7065
7066 -- Org unit settings for fund spending limits
7067
7068 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
7069 VALUES (
7070     'acq.fund.balance_limit.warn',
7071     oils_i18n_gettext('acq.fund.balance_limit.warn', 'Fund Spending Limit for Warning', 'coust', 'label'),
7072     oils_i18n_gettext('acq.fund.balance_limit.warn', 'When the amount remaining in the fund, including spent money and encumbrances, goes below this percentage, attempts to spend from the fund will result in a warning to the staff.', 'coust', 'descripton'),
7073     'integer'
7074 );
7075
7076 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
7077 VALUES (
7078     'acq.fund.balance_limit.block',
7079     oils_i18n_gettext('acq.fnd.balance_limit.block', 'Fund Spending Limit for Block', 'coust', 'label'),
7080     oils_i18n_gettext('acq.fund.balance_limit.block', 'When the amount remaining in the fund, including spent money and encumbrances, goes below this percentage, attempts to spend from the fund will be blocked.', 'coust', 'description'),
7081     'integer'
7082 );
7083
7084 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
7085 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
7086 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
7087 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
7088 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
7089 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name'));
7090
7091 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
7092 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
7093
7094 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
7095     1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
7096 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
7097     2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
7098 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
7099     3, 1, 'delivered_but_lost',
7100         oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
7101
7102 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
7103 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
7104 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
7105 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
7106 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
7107 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
7108 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
7109 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
7110 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
7111 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
7112 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
7113 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
7114 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
7115 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
7116 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
7117 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
7118 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
7119 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
7120 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
7121 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
7122 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
7123 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
7124 ('t',( 22+1000), 1, 'Call-off delivery', 'A request for delivery of a particular quantity of goods to be delivered on a particular date (or within a particular period).'),
7125 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
7126 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
7127 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
7128 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
7129 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
7130 ('t',( 28+1000), 1, 'Verified documents for debit',    'Upon receipt and verification of documents we shall authorize you to debit our account with you when due.'),
7131 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
7132 ('t',( 30+1000), 1, 'Authenticated advice for authorization', 'On receipt of your authenticated advice we shall authorize you to debit our account with you when due.'),
7133 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
7134 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
7135 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
7136 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
7137 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
7138 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
7139 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
7140 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
7141 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
7142 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
7143 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
7144 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
7145 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
7146 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
7147 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
7148 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
7149 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
7150 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
7151 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
7152 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
7153 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
7154 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
7155 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
7156 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
7157 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
7158 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
7159 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
7160 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
7161 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
7162 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
7163 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
7164 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
7165 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
7166 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
7167 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
7168 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
7169 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
7170 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
7171 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
7172 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
7173 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
7174 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
7175 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
7176 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
7177 ('t',( 75+1000), 1, 'Processed by primary, forwarded to additional payer(s)',   'This request has been processed by the primary payer and sent to additional payer(s).'),
7178 ('t',( 76+1000), 1, 'Processed by secondary, forwarded to additional payer(s)', 'This request has been processed by the secondary payer and sent to additional payer(s).'),
7179 ('t',( 77+1000), 1, 'Processed by tertiary, forwarded to additional payer(s)',  'This request has been processed by the tertiary payer and sent to additional payer(s).'),
7180 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
7181 ('t',( 79+1000), 1, 'Not our claim, forwarded to another payer(s)', 'A request does not belong to this payer but has been forwarded to another payer(s).'),
7182 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
7183 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
7184 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
7185 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
7186 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
7187 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
7188 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
7189 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
7190 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
7191 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
7192 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
7193 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
7194 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
7195 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
7196 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
7197 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
7198 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
7199 ('t',( 97+1000), 1, 'Single credit item of a group', 'Notification that the credit item is a single credit item of a group of credit items.'),
7200 ('t',( 98+1000), 1, 'Single debit item of a group',  'Notification that the debit item is a single debit item of a group of debit items.'),
7201 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
7202 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
7203 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
7204 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
7205 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
7206 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
7207 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
7208 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
7209 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
7210 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
7211 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
7212 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
7213 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
7214 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
7215 ('t',(113+1000), 1, 'Resale and claim', 'The identified items have been sold by the distributor to the end customer, and compensation for the loss of inventory value is claimed.'),
7216 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
7217 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
7218
7219 -- We won't necessarily use all of these, but they are here for completeness.
7220 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
7221 -- Values are the EDI code value + 1200
7222
7223 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
7224 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
7225 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
7226 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
7227 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
7228 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
7229 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
7230 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
7231 (1, 't', 1208, 'Inventory quantity at supplier''s subject to inspection by', 'customer Quantity of goods which the customer requires the supplier to have in inventory and which may be inspected by the customer if desired.'),
7232 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
7233 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
7234 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
7235 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
7236 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
7237 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
7238 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
7239 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
7240 (1, 't', 1217, 'Quantity on hand', 'The total quantity of a product on hand at a location. This includes as well units awaiting return to manufacturer, units unavailable due to inspection procedures and undamaged stock available for despatch, resale or use.'),
7241 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
7242 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
7243 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
7244 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
7245 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
7246 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
7247 (1, 't', 1224, 'Inventory quantity at supplier''s not subject to inspection', 'by customer Quantity of goods which the customer requires the supplier to have in inventory but which will not be checked by the customer.'),
7248 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
7249 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
7250 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
7251 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
7252 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
7253 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
7254 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
7255 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
7256 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
7257 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
7258 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
7259 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
7260 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
7261 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
7262 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
7263 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
7264 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
7265 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
7266 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
7267 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
7268 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
7269 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
7270 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
7271 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
7272 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
7273 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
7274 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
7275 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
7276 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
7277 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
7278 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
7279 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
7280 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
7281 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
7282 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
7283 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
7284 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
7285 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
7286 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
7287 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
7288 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
7289 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
7290 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
7291 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
7292 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
7293 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
7294 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
7295 (1, 't', 1272, 'Cumulative quantity received end of prior year', 'Cumulative quantity of all deliveries of the product received by the buyer till end of prior year.'),
7296 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
7297 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
7298 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
7299 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
7300 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
7301 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
7302 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
7303 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
7304 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
7305 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
7306 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
7307 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
7308 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
7309 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
7310 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
7311 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
7312 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
7313 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
7314 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
7315 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
7316 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
7317 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
7318 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
7319 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
7320 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
7321 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
7322 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
7323 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
7324 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
7325 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
7326 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
7327 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
7328 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
7329 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
7330 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
7331 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
7332 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
7333 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
7334 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
7335 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
7336 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
7337 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
7338 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
7339 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
7340 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
7341 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
7342 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
7343 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
7344 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
7345 (1, 't', 1322, 'Short-landed goods', 'If quantity of goods actually landed is less than the quantity which appears in the documentation. This quantity is the difference between these quantities.'),
7346 (1, 't', 1323, 'Surplus goods', 'If quantity of goods actually landed is more than the quantity which appears in the documentation. This quantity is the difference between these quantities.'),
7347 (1, 'f', 1324, 'Damaged goods', 'Quantity of goods which have deteriorated in transport such that they cannot be used for the purpose for which they were originally intended.'),
7348 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
7349 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
7350 (1, 't', 1327, 'Report difference', 'The quantity concerning the same transaction differs between two documents/messages and the source of this difference is a typing error.'),
7351 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
7352 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
7353 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
7354 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
7355 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
7356 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
7357 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
7358 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
7359 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
7360 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
7361 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
7362 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
7363 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
7364 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
7365 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
7366 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
7367 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
7368 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
7369 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
7370 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
7371 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
7372 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
7373 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
7374 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
7375 (1, 't', 1352, 'Consignment stock', 'Quantity of goods with an external customer which is still the property of the supplier. Payment for these goods is only made to the supplier when the ownership has been transferred between the trading partners.'),
7376 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
7377 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
7378 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
7379 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
7380 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
7381 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
7382 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
7383 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
7384 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
7385 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
7386 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
7387 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
7388 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
7389 (1, 't', 1366, 'All time buy',             'The total quantity of the referenced covering all future needs. Further orders of the referenced item are not expected.'),
7390 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
7391 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
7392 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
7393 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
7394 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
7395 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
7396 (1, 't', 1373, 'Previously amortised quantity', 'The cumulative quantity of the referenced item which had a cost for tooling amortisation included in the item price.'),
7397 (1, 't', 1374, 'Total amortisation quantity', 'The total quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
7398 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
7399 (1, 't', 1376, 'Concurrent item output of tooling', 'The number of related items which can be produced simultaneously with a single piece of the referenced tooling.'),
7400 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
7401 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
7402 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
7403 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
7404 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
7405 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
7406 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
7407 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
7408 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
7409 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
7410 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
7411 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
7412 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
7413 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
7414 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
7415 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
7416 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
7417 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
7418 (1, 'f', 1395, 'Received, not accepted, to be returned',  'Quantity which has been received but not accepted at a given location and which will consequently be returned to the relevant party.'),
7419 (1, 'f', 1396, 'Received, not accepted, to be destroyed', 'Quantity which has been received but not accepted at a given location and which will consequently be destroyed.'),
7420 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
7421 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
7422 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
7423 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
7424 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
7425 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
7426 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
7427 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
7428 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
7429 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
7430 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
7431 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
7432 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
7433 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
7434 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
7435 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
7436 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
7437 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
7438 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
7439 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
7440 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
7441 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
7442 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
7443 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
7444 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
7445 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
7446 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
7447 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
7448 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
7449 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
7450 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
7451 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
7452 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
7453 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
7454 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
7455 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
7456 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
7457 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
7458 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
7459 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
7460 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
7461 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
7462 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
7463 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
7464 (1, 't', 1442, 'Number of months', 'The number of months.'),
7465 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
7466 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
7467 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
7468 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
7469 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
7470 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
7471 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
7472 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
7473 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
7474 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
7475 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
7476 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
7477 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
7478 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
7479 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
7480 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
7481 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
7482 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
7483 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
7484 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
7485 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
7486 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
7487 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
7488 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
7489 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
7490 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
7491 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
7492 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
7493 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
7494 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
7495 (1, 't', 1473, 'Agents', 'The number of agents.'),
7496 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
7497 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
7498 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
7499 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
7500 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
7501 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
7502 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
7503 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
7504 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
7505 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
7506 (1, 't', 1484, 'Departments', 'The number of departments.'),
7507 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
7508 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
7509 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
7510 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
7511 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
7512 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
7513 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
7514 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
7515 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
7516 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
7517 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
7518 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
7519 (1, 't', 1497, 'Executives', 'The number of executives.'),
7520 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
7521 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
7522 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
7523 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
7524 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
7525 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
7526 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
7527 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
7528 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
7529 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
7530 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
7531 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
7532 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
7533 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
7534 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
7535 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
7536 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
7537 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
7538 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
7539 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
7540 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
7541 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
7542 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
7543 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
7544 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
7545 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
7546 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
7547 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
7548 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
7549 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
7550 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
7551 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
7552 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
7553 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
7554 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
7555 (1, 't', 1533, 'Seats',        'The number of seats.'),
7556 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
7557 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
7558 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
7559 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
7560 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
7561 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
7562 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
7563 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
7564 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
7565 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
7566 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
7567 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
7568 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
7569 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
7570 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
7571 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
7572 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
7573 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
7574 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
7575 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
7576 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
7577 (1, 't', 1555, 'Total number of foreign subsidiaries not included in', 'financial statement The total number of foreign subsidiaries not included in the financial statement.'),
7578 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
7579 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
7580 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
7581 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
7582 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
7583 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
7584 (1, 't', 1562, 'Total number of domestic subsidiaries not included in', 'financial statement The total number of domestic subsidiaries not included in the financial statement.'),
7585 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
7586 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
7587 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
7588 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
7589 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
7590 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
7591 (1, 't', 1569, 'Budget', 'Budget quantity.'),
7592 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
7593 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
7594 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
7595 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
7596 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
7597 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
7598 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
7599 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
7600 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
7601 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
7602 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
7603 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
7604 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
7605 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
7606 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
7607 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
7608 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
7609 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
7610 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
7611 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
7612 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
7613 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
7614 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
7615 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
7616 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
7617 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
7618 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
7619 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
7620 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
7621 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
7622 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
7623 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
7624 (1, 't', 1602, 'Patients',         'Number of patients.'),
7625 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
7626 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
7627 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
7628 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
7629 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
7630 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
7631 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
7632 (1, 't', 1610, 'Operators',        'Number of operators.'),
7633 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
7634 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
7635 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
7636 (1, 't', 1614, 'Machines',         'Number of machines.'),
7637 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
7638 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
7639 (1, 't', 1617, 'Directors',        'Number of directors.'),
7640 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
7641 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
7642 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
7643 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
7644 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
7645 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
7646 (1, 't', 1624, 'Beds', 'Number of beds.'),
7647 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
7648 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
7649 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
7650 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
7651 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
7652 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
7653 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
7654 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
7655 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
7656 (1, 't', 1634, 'Detrimental legal filings against directors', 'The number of legal filings that are of a detrimental nature that have been filed against the directors.'),
7657 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
7658 (1, 't', 1636, 'Professor', 'The number of professors.'),
7659 (1, 't', 1637, 'Seller',    'The number of sellers.'),
7660 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
7661 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
7662 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
7663 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
7664 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
7665 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
7666 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
7667 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
7668 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
7669 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
7670 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
7671 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
7672 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
7673 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
7674 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
7675 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
7676 (1, 't', 1654, 'Quantity ordered but not yet allocated from stock', 'A quantity of products which has been ordered but which has not yet been allocated from stock.'),
7677 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
7678 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
7679 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
7680 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
7681 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
7682 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
7683 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
7684 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
7685 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
7686 (1, 't', 1664, 'Tariff Quantity', 'Quantity of the goods in the unit as required by Customs for duty/tax/fee assessment. These quantities may also be used for other fiscal or statistical purposes.'),
7687 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
7688 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
7689 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
7690 (1, 't', 1668, 'Goods blocked for transshipment process', 'Goods are physically present, but can not be ordered because they are scheduled for a transshipment process.'),
7691 (1, 't', 1669, 'Goods blocked for cross docking process', 'Goods are physically present, but can not be ordered because they are scheduled for a cross docking process.'),
7692 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
7693 (1, 't', 1671, 'Number of packages for a set', 'Number of packages used to pack the individual items in a grouping of merchandise that is sold together as a single trade item.'),
7694 (1, 't', 1672, 'Number of items in a set', 'The number of individual items in a grouping of merchandise that is sold together as a single trade item.'),
7695 (1, 't', 1673, 'Order sizing factor', 'A trade item specification other than gross, net weight, or volume for a trade item or a transaction, used for order sizing and pricing purposes.'),
7696 (1, 't', 1674, 'Number of different next lower level trade items', 'Value indicates the number of differrent next lower level trade items contained in a complex trade item.'),
7697 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
7698 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
7699 (1, 't', 1677, 'Free quantity of next lower level trade item', 'The numeric quantity of free items in a combination pack. The unit of measure used for the free quantity of the next lower level must be the same as the unit of measure of the Net Content of the Child Trade Item.'),
7700 (1, 't', 1678, 'Marine Diesel Oil bunkers on board, on arrival',     'Number of Marine Diesel Oil (MDO) bunkers on board when the vessel arrives in the port.'),
7701 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
7702 (1, 't', 1680, 'Intermediate Fuel Oil bunkers on board, on arrival', 'Number of Intermediate Fuel Oil (IFO) bunkers on board when the vessel arrives in the port.'),
7703 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
7704 (1, 't', 1682, 'Bunker C bunkers on board, on arrival',              'Number of Bunker C, or Number 6 fuel oil bunkers on board when the vessel arrives in the port.'),
7705 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
7706 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
7707 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
7708 (1, 't', 1686, 'Quantity to be decremented (LPCO)', 'Quantity to be decremented from the allowable quantity on a License, Permit, Certificate, or Other document (LPCO).'),
7709 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
7710 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
7711 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
7712 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
7713 ;
7714 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
7715
7716
7717 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
7718     VALUES (
7719         'circ.holds.hold_has_copy_at.alert',
7720         oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', 'Holds: Has Local Copy Alert', 'coust', 'label'),
7721         oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', 'If there is an available copy at the requesting library that could fulfill a hold during hold placement time, alert the patron', 'coust', 'description'),
7722         'bool'
7723     ),(
7724         'circ.holds.hold_has_copy_at.block',
7725         oils_i18n_gettext('circ.holds.hold_has_copy_at.block', 'Holds: Has Local Copy Block', 'coust', 'label'),
7726         oils_i18n_gettext('circ.holds.hold_has_copy_at.block', 'If there is an available copy at the requesting library that could fulfill a hold during hold placement time, do not allow the hold to be placed', 'coust', 'description'),
7727         'bool'
7728     );
7729
7730 INSERT INTO config.global_flag (name, label, enabled)
7731     VALUES (
7732         'circ.holds.usr_not_requestor',
7733         oils_i18n_gettext(
7734             'circ.holds.usr_not_requestor',
7735             'Holds: When testing hold matrix matchpoints, use the profile group of the receiving user instead of that of the requestor (affects staff-placed holds)',
7736             'cgf',
7737             'label'
7738         ),
7739         TRUE
7740     );
7741
7742 INSERT INTO config.global_flag (name, label, enabled)
7743     VALUES (
7744         'circ.holds.empty_issuance_ok',
7745         oils_i18n_gettext(
7746             'circ.holds.empty_issuance_ok',
7747             'Holds: Allow holds on empty issuances',
7748             'cgf',
7749             'label'
7750         ),
7751         TRUE
7752     );
7753
7754 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
7755     VALUES (
7756         'ingest.disable_authority_linking',
7757         oils_i18n_gettext(
7758             'ingest.disable_authority_linking',
7759             'Authority Automation: Disable bib-authority link tracking',
7760             'cgf', 
7761             'label'
7762         )
7763     );
7764
7765 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
7766     VALUES (
7767         'ingest.disable_authority_auto_update',
7768         oils_i18n_gettext(
7769             'ingest.disable_authority_auto_update',
7770             'Authority Automation: Disable automatic authority updating (requires link tracking)',
7771             'cgf', 
7772             'label'
7773         )
7774     );
7775
7776 INSERT INTO config.global_flag (name, label, enabled)
7777     VALUES (
7778         'cat.bib.use_id_for_tcn',
7779         oils_i18n_gettext(
7780             'cat.bib.use_id_for_tcn',
7781             'Cat: Use Internal ID for TCN Value',
7782             'cgf', 
7783             'label'
7784         ),
7785         TRUE
7786     );
7787
7788 INSERT INTO config.global_flag (name,label,enabled)
7789     VALUES (
7790         'history.circ.retention_age',
7791         oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'),
7792         TRUE
7793     ),(
7794         'history.circ.retention_count',
7795         oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'),
7796         TRUE
7797     );
7798
7799 INSERT INTO config.global_flag (name, label, enabled)
7800     VALUES (
7801         'cat.maintain_control_numbers',
7802         oils_i18n_gettext(
7803             'cat.maintain_control_numbers',
7804             'Cat: Maintain 001/003/035 according to the MARC21 specification',
7805             'cgf', 
7806             'label'
7807         ),
7808         TRUE
7809     );
7810
7811 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
7812     VALUES (
7813         'history.circ.retention_age',
7814         TRUE,
7815         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','label'),
7816         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','description'),
7817         'interval'
7818     ),(
7819         'history.circ.retention_start',
7820         FALSE,
7821         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','label'),
7822         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','description'),
7823         'date'
7824     );
7825
7826 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
7827     VALUES (
7828         'history.hold.retention_age',
7829         TRUE,
7830         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','label'),
7831         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','description'),
7832         'interval'
7833     ),(
7834         'history.hold.retention_start',
7835         TRUE,
7836         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','label'),
7837         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','description'),
7838         'interval'
7839     ),(
7840         'history.hold.retention_count',
7841         TRUE,
7842         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','label'),
7843         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','description'),
7844         'integer'
7845     );
7846
7847 -- 0281.data.persistent-login-interval.sql
7848 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
7849 VALUES (
7850     'auth.persistent_login_interval',
7851     oils_i18n_gettext('auth.persistent_login_interval', 'Persistent Login Duration', 'coust', 'label'),
7852     oils_i18n_gettext('auth.persistent_login_interval', 'How long a persistent login lasts.  E.g. ''2 weeks''', 'coust', 'description'),
7853     'interval'
7854 );
7855
7856 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
7857         'cat.marc_control_number_identifier',
7858         oils_i18n_gettext(
7859             'cat.marc_control_number_identifier', 
7860             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
7861             'coust', 
7862             'label'),
7863         oils_i18n_gettext(
7864             'cat.marc_control_number_identifier', 
7865             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
7866             'coust', 
7867             'description'),
7868         'string'
7869 );
7870
7871 -- 0311.data.query-seed-datatypes.sql
7872 -- Define the most common datatypes in query.datatype.  Note that none of
7873 -- these stock datatypes specifies a width or precision.
7874
7875 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7876   VALUES (1, 'SMALLINT', true);
7877  
7878 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7879   VALUES (2, 'INTEGER', true);
7880  
7881 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7882   VALUES (3, 'BIGINT', true);
7883  
7884 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7885   VALUES (4, 'DECIMAL', true);
7886  
7887 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7888   VALUES (5, 'NUMERIC', true);
7889  
7890 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7891   VALUES (6, 'REAL', true);
7892  
7893 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7894   VALUES (7, 'DOUBLE PRECISION', true);
7895  
7896 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7897   VALUES (8, 'SERIAL', true);
7898  
7899 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7900   VALUES (9, 'BIGSERIAL', true);
7901  
7902 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7903   VALUES (10, 'MONEY', false);
7904  
7905 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7906   VALUES (11, 'VARCHAR', false);
7907  
7908 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7909   VALUES (12, 'CHAR', false);
7910  
7911 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7912   VALUES (13, 'TEXT', false);
7913  
7914 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7915   VALUES (14, '"char"', false);
7916  
7917 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7918   VALUES (15, 'NAME', false);
7919  
7920 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7921   VALUES (16, 'BYTEA', false);
7922  
7923 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7924   VALUES (17, 'TIMESTAMP WITHOUT TIME ZONE', false);
7925  
7926 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7927   VALUES (18, 'TIMESTAMP WITH TIME ZONE', false);
7928  
7929 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7930   VALUES (19, 'DATE', false);
7931  
7932 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7933   VALUES (20, 'TIME WITHOUT TIME ZONE', false);
7934  
7935 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7936   VALUES (21, 'TIME WITH TIME ZONE', false);
7937  
7938 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7939   VALUES (22, 'INTERVAL', false);
7940  
7941 INSERT INTO query.datatype (id, datatype_name, is_numeric )
7942   VALUES (23, 'BOOLEAN', false);
7943
7944 INSERT INTO config.usr_setting_type (name, opac_visible, label, description, datatype) 
7945     VALUES (
7946         'opac.default_sort',
7947         TRUE,
7948         oils_i18n_gettext(
7949             'opac.default_sort',
7950             'OPAC Default Search Sort',
7951             'cust',
7952             'label'
7953         ),
7954         oils_i18n_gettext(
7955             'opac.default_sort',
7956             'OPAC Default Search Sort',
7957             'cust',
7958             'description'
7959         ),
7960         'string'
7961     );
7962
7963 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) 
7964     VALUES (
7965         'circ.selfcheck.block_checkout_on_copy_status',
7966         oils_i18n_gettext(
7967             'circ.selfcheck.block_checkout_on_copy_status',
7968             'Selfcheck: Block copy checkout status',
7969             'coust',
7970             'label'
7971         ),
7972         oils_i18n_gettext(
7973             'circ.selfcheck.block_checkout_on_copy_status',
7974             'List of copy status IDs that will block checkout even if the generic COPY_NOT_AVAILABLE event is overridden',
7975             'coust',
7976             'description'
7977         ),
7978         'array'
7979     );
7980
7981 -- 0359.data.setting-prev-iss-copy-loc.sql
7982
7983 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
7984 VALUES (
7985     'serial.prev_issuance_copy_location',
7986     oils_i18n_gettext(
7987         'serial.prev_issuance_copy_location',
7988         'Serials: Previous Issuance Copy Location',
7989         'coust',
7990         'label'
7991     ),
7992     oils_i18n_gettext(
7993         'serial.prev_issuance_copy_location',
7994         'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
7995         'coust',
7996         'descripton'
7997         ),
7998     'link',
7999     'acpl'
8000 );
8001
8002 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
8003 VALUES (
8004     'cat.default_classification_scheme',
8005     oils_i18n_gettext(
8006         'cat.default_classification_scheme',
8007         'Cataloging: Default Classification Scheme',
8008         'coust',
8009         'label'
8010     ),
8011     oils_i18n_gettext(
8012         'cat.default_classification_scheme',
8013         'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
8014         'coust',
8015         'descripton'
8016         ),
8017     'link',
8018     'acnc'
8019 );
8020
8021
8022 -- 0355.data.missing_pieces_format.sql
8023
8024 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
8025     (   'circ.format.missing_pieces.slip.print',
8026         'circ', 
8027         oils_i18n_gettext(
8028             'circ.format.missing_pieces.slip.print',
8029             'A missing pieces slip needs to be formatted for printing.',
8030             'ath',
8031             'description'
8032         ), 
8033         FALSE
8034     )
8035     ,(  'circ.format.missing_pieces.letter.print',
8036         'circ', 
8037         oils_i18n_gettext(
8038             'circ.format.missing_pieces.letter.print',
8039             'A missing pieces patron letter needs to be formatted for printing.',
8040             'ath',
8041             'description'
8042         ), 
8043         FALSE
8044     )
8045 ;
8046
8047 INSERT INTO action_trigger.event_definition (
8048         id,
8049         active,
8050         owner,
8051         name,
8052         hook,
8053         validator,
8054         reactor,
8055         group_field,
8056         granularity,
8057         template
8058     ) VALUES (
8059         33,
8060         TRUE,
8061         1,
8062         'circ.missing_pieces.slip.print',
8063         'circ.format.missing_pieces.slip.print',
8064         'NOOP_True',
8065         'ProcessTemplate',
8066         'usr',
8067         'print-on-demand',
8068 $$
8069 [%- USE date -%]
8070 [%- SET user = target.0.usr -%]
8071 <div style="li { padding: 8px; margin 5px; }">
8072     <div>[% date.format %]</div><br/>
8073     Missing pieces for:
8074     <ol>
8075     [% FOR circ IN target %]
8076         <li>Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]<br />
8077             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
8078         </li>
8079     [% END %]
8080     </ol>
8081 </div>
8082 $$
8083     )
8084     ,(
8085         34,
8086         TRUE,
8087         1,
8088         'circ.missing_pieces.letter.print',
8089         'circ.format.missing_pieces.letter.print',
8090         'NOOP_True',
8091         'ProcessTemplate',
8092         'usr',
8093         'print-on-demand',
8094 $$
8095 [%- USE date -%]
8096 [%- SET user = target.0.usr -%]
8097 [% date.format %]
8098 Dear [% user.prefix %] [% user.first_given_name %] [% user.family_name %],
8099
8100 We are missing pieces for the following returned items:
8101 [% FOR circ IN target %]
8102 Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]
8103 [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
8104 [% END %]
8105
8106 Please return these pieces as soon as possible.
8107
8108 Thanks!
8109
8110 Library Staff
8111 $$
8112     )
8113 ;
8114
8115 INSERT INTO action_trigger.environment (
8116         event_def,
8117         path
8118     ) VALUES -- for fleshing circ objects
8119          ( 33, 'usr')
8120         ,( 33, 'target_copy')
8121         ,( 33, 'target_copy.circ_lib')
8122         ,( 33, 'target_copy.circ_lib.mailing_address')
8123         ,( 33, 'target_copy.circ_lib.billing_address')
8124         ,( 33, 'target_copy.call_number')
8125         ,( 33, 'target_copy.call_number.owning_lib')
8126         ,( 33, 'target_copy.call_number.owning_lib.mailing_address')
8127         ,( 33, 'target_copy.call_number.owning_lib.billing_address')
8128         ,( 33, 'circ_lib')
8129         ,( 33, 'circ_lib.mailing_address')
8130         ,( 33, 'circ_lib.billing_address')
8131         ,( 34, 'usr')
8132         ,( 34, 'target_copy')
8133         ,( 34, 'target_copy.circ_lib')
8134         ,( 34, 'target_copy.circ_lib.mailing_address')
8135         ,( 34, 'target_copy.circ_lib.billing_address')
8136         ,( 34, 'target_copy.call_number')
8137         ,( 34, 'target_copy.call_number.owning_lib')
8138         ,( 34, 'target_copy.call_number.owning_lib.mailing_address')
8139         ,( 34, 'target_copy.call_number.owning_lib.billing_address')
8140         ,( 34, 'circ_lib')
8141         ,( 34, 'circ_lib.mailing_address')
8142         ,( 34, 'circ_lib.billing_address')
8143 ;
8144
8145 -- 0373.data.org-setting-opac.org_unit_hiding.depth.sql
8146 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
8147         'opac.org_unit_hiding.depth',
8148         oils_i18n_gettext(
8149             'opac.org_unit_hiding.depth',
8150             'OPAC: Org Unit Hiding Depth', 
8151             'coust', 
8152             'label'),
8153         oils_i18n_gettext(
8154             'opac.org_unit_hiding.depth',
8155             'This will hide certain org units in the public OPAC if the Original Location (url param "ol") for the OPAC inherits this setting.  This setting specifies an org unit depth, that together with the OPAC Original Location determines which section of the Org Hierarchy should be visible in the OPAC.  For example, a stock Evergreen installation will have a 3-tier hierarchy (Consortium/System/Branch), where System has a depth of 1 and Branch has a depth of 2.  If this setting contains a depth of 1 in such an installation, then every library in the System in which the Original Location belongs will be visible, and everything else will be hidden.  A depth of 0 will effectively make every org visible.  The embedded OPAC in the staff client ignores this setting.', 
8156             'coust', 
8157             'description'),
8158         'integer'
8159 );
8160
8161 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
8162     VALUES
8163         ('circ.holds.clear_shelf.no_capture_holds',
8164         oils_i18n_gettext( 'circ.holds.clear_shelf.no_capture_holds',
8165             'Holds: Bypass hold capture during clear shelf process', 'coust', 'label'),
8166         oils_i18n_gettext( 'circ.holds.clear_shelf.no_capture_holds',
8167             'During the clear shelf process, avoid capturing new holds on cleared items.', 'coust', 'description'),
8168         'bool')
8169 ;
8170
8171 -- 0379.data.org-setting-circ.missing_pieces.copy_status.sql
8172 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
8173         'circ.missing_pieces.copy_status',
8174         oils_i18n_gettext(
8175             'circ.missing_pieces.copy_status',
8176             'Circulation: Item Status for Missing Pieces', 
8177             'coust', 
8178             'label'),
8179         oils_i18n_gettext(
8180             'circ.missing_pieces.copy_status',
8181             'This is the Item Status to use for items that have been marked or scanned as having Missing Pieces.  In the absence of this setting, the Damaged status is used.',
8182             'coust', 
8183             'description'),
8184         'link',
8185         'ccs'
8186 );
8187
8188 -- 0380.data.spine_label.sql Add spine label preferences
8189 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
8190     VALUES
8191         ('cat.label.font.size',
8192             oils_i18n_gettext('cat.label.font.size',
8193                 'Cataloging: Spine and pocket label font size', 'coust', 'label'),
8194             oils_i18n_gettext('cat.label.font.size',
8195                 'Set the default font size for spine and pocket labels', 'coust', 'description'),
8196             'integer'
8197         )
8198         ,('cat.label.font.family',
8199             oils_i18n_gettext('cat.label.font.family',
8200                 'Cataloging: Spine and pocket label font family', 'coust', 'label'),
8201             oils_i18n_gettext('cat.label.font.family',
8202                 'Set the preferred font family for spine and pocket labels. You can specify a list of fonts, separated by commas, in order of preference; the system will use the first font it finds with a matching name. For example, "Arial, Helvetica, serif".',
8203                 'coust', 'description'),
8204             'string'
8205         )
8206         ,('cat.spine.line.width',
8207             oils_i18n_gettext('cat.spine.line.width',
8208                 'Cataloging: Spine label line width', 'coust', 'label'),
8209             oils_i18n_gettext('cat.spine.line.width',
8210                 'Set the default line width for spine labels in number of characters. This specifies the boundary at which lines must be wrapped.',
8211                 'coust', 'description'),
8212             'integer'
8213         )
8214         ,('cat.spine.line.height',
8215             oils_i18n_gettext('cat.spine.line.height',
8216                 'Cataloging: Spine label maximum lines', 'coust', 'label'),
8217             oils_i18n_gettext('cat.spine.line.height',
8218                 'Set the default maximum number of lines for spine labels.',
8219                 'coust', 'description'),
8220             'integer'
8221         )
8222         ,('cat.spine.line.margin',
8223             oils_i18n_gettext('cat.spine.line.margin',
8224                 'Cataloging: Spine label left margin', 'coust', 'label'),
8225             oils_i18n_gettext('cat.spine.line.margin',
8226                 'Set the left margin for spine labels in number of characters.',
8227                 'coust', 'description'),
8228             'integer'
8229         )
8230         ,('cat.label.font.weight',
8231             oils_i18n_gettext('cat.label.font.weight',
8232                 'Cataloging: Spine and pocket label font weight', 'coust', 'label'),
8233             oils_i18n_gettext('cat.label.font.weight',
8234                 'Set the preferred font weight for spine and pocket labels. You can specify "normal", "bold", "bolder", or "lighter".',
8235                 'coust', 'description'),
8236             'string'
8237         )
8238 ;
8239
8240 INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES
8241     (1, 'cat.spine.line.margin', 0)
8242     ,(1, 'cat.spine.line.height', 9)
8243     ,(1, 'cat.spine.line.width', 8)
8244     ,(1, 'cat.label.font.family', '"monospace"')
8245     ,(1, 'cat.label.font.size', 10)
8246     ,(1, 'cat.label.font.weight', '"normal"')
8247 ;
8248
8249 -- 0383.data.org-setting-circ.do_not_tally_claims_returned.sql
8250
8251 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
8252         'circ.do_not_tally_claims_returned',
8253         oils_i18n_gettext(
8254             'circ.do_not_tally_claims_returned',
8255             'Circulation: Do not include outstanding Claims Returned circulations in lump sum tallies in Patron Display.', 
8256             'coust', 
8257             'label'),
8258         oils_i18n_gettext(
8259             'circ.do_not_tally_claims_returned',
8260             'In the Patron Display interface, the number of total active circulations for a given patron is presented in the Summary sidebar and underneath the Items Out navigation button.  This setting will prevent Claims Returned circulations from counting toward these tallies.',
8261             'coust', 
8262             'description'),
8263         'bool'
8264 );
8265
8266 -- 0384.data.hold_pull_list_template.sql
8267
8268 INSERT INTO action_trigger.hook (key,core_type,description,passive) 
8269     VALUES (   
8270         'ahr.format.pull_list',
8271         'ahr', 
8272         oils_i18n_gettext(
8273             'ahr.format.pull_list',
8274             'Format holds pull list for printing',
8275             'ath',
8276             'description'
8277         ), 
8278         FALSE
8279     );
8280
8281 INSERT INTO action_trigger.event_definition (
8282         id,
8283         active,
8284         owner,
8285         name,
8286         hook,
8287         validator,
8288         reactor,
8289         group_field,
8290         granularity,
8291         template
8292     ) VALUES (
8293         35,
8294         TRUE,
8295         1,
8296         'Holds Pull List',
8297         'ahr.format.pull_list',
8298         'NOOP_True',
8299         'ProcessTemplate',
8300         'pickup_lib',
8301         'print-on-demand',
8302 $$
8303 [%- USE date -%]
8304 <style>
8305     table { border-collapse: collapse; } 
8306     td { padding: 5px; border-bottom: 1px solid #888; } 
8307     th { font-weight: bold; }
8308 </style>
8309 [% 
8310     # Sort the holds into copy-location buckets
8311     # In the main print loop, sort each bucket by callnumber before printing
8312     SET holds_list = [];
8313     SET loc_data = [];
8314     SET current_location = target.0.current_copy.location.id;
8315     FOR hold IN target;
8316         IF current_location != hold.current_copy.location.id;
8317             SET current_location = hold.current_copy.location.id;
8318             holds_list.push(loc_data);
8319             SET loc_data = [];
8320         END;
8321         SET hold_data = {
8322             'hold' => hold,
8323             'callnumber' => hold.current_copy.call_number.label
8324         };
8325         loc_data.push(hold_data);
8326     END;
8327     holds_list.push(loc_data)
8328 %]
8329 <table>
8330     <thead>
8331         <tr>
8332             <th>Title</th>
8333             <th>Author</th>
8334             <th>Shelving Location</th>
8335             <th>Call Number</th>
8336             <th>Barcode</th>
8337             <th>Patron</th>
8338         </tr>
8339     </thead>
8340     <tbody>
8341     [% FOR loc_data IN holds_list  %]
8342         [% FOR hold_data IN loc_data.sort('callnumber') %]
8343             [% 
8344                 SET hold = hold_data.hold;
8345                 SET copy_data = helpers.get_copy_bib_basics(hold.current_copy.id);
8346             %]
8347             <tr>
8348                 <td>[% copy_data.title | truncate %]</td>
8349                 <td>[% copy_data.author | truncate %]</td>
8350                 <td>[% hold.current_copy.location.name %]</td>
8351                 <td>[% hold.current_copy.call_number.label %]</td>
8352                 <td>[% hold.current_copy.barcode %]</td>
8353                 <td>[% hold.usr.card.barcode %]</td>
8354             </tr>
8355         [% END %]
8356     [% END %]
8357     <tbody>
8358 </table>
8359 $$
8360 );
8361
8362 INSERT INTO action_trigger.environment (
8363         event_def,
8364         path
8365     ) VALUES
8366         (35, 'current_copy.location'),
8367         (35, 'current_copy.call_number'),
8368         (35, 'usr.card'),
8369         (35, 'pickup_lib')
8370 ;
8371
8372 -- 0386.data.org-setting-patron-clone-copy-addr.sql
8373
8374 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
8375         'circ.patron_edit.clone.copy_address',
8376         oils_i18n_gettext(
8377             'circ.patron_edit.clone.copy_address',
8378             'Patron Registration: Cloned patrons get address copy',
8379             'coust', 
8380             'label'
8381         ),
8382         oils_i18n_gettext(
8383             'circ.patron_edit.clone.copy_address',
8384             'In the Patron editor, copy addresses from the cloned user instead of linking directly to the address',
8385             'coust', 
8386             'description'
8387         ),
8388         'bool'
8389 );
8390
8391 -- 0388.data.org-setting-ui.patron.editor_defaults.sql
8392
8393 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
8394         'ui.patron.default_ident_type',
8395         oils_i18n_gettext(
8396             'ui.patron.default_ident_type',
8397             'GUI: Default Ident Type for Patron Registration', 
8398             'coust', 
8399             'label'),
8400         oils_i18n_gettext(
8401             'ui.patron.default_ident_type',
8402             'This is the default Ident Type for new users in the patron editor.',
8403             'coust', 
8404             'description'),
8405         'link',
8406         'cit'
8407 );
8408
8409 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
8410         'ui.patron.default_country',
8411         oils_i18n_gettext(
8412             'ui.patron.default_country',
8413             'GUI: Default Country for New Addresses in Patron Editor', 
8414             'coust', 
8415             'label'),
8416         oils_i18n_gettext(
8417             'ui.patron.default_country',
8418             'This is the default Country for new addresses in the patron editor.',
8419             'coust', 
8420             'description'),
8421         'string'
8422 );
8423
8424 -- 0392.data.org-setting-ui.patron.editor_address_requirement.sql
8425
8426 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
8427         'ui.patron.registration.require_address',
8428         oils_i18n_gettext(
8429             'ui.patron.registration.require_address',
8430             'GUI: Require at least one address for Patron Registration', 
8431             'coust', 
8432             'label'),
8433         oils_i18n_gettext(
8434             'ui.patron.registration.require_address',
8435             'Enforces a requirement for having at least one address for a patron during registration.',
8436             'coust', 
8437             'description'),
8438         'bool'
8439 );
8440
8441 -- 0412.data.trigger.validator.HoldIsCancelled.sql
8442
8443 INSERT INTO action_trigger.validator (module, description) VALUES (
8444     'HoldIsCancelled',
8445     oils_i18n_gettext(
8446         'HoldIsCancelled',
8447         'Check whether a hold request is cancelled.',
8448         'atval',
8449         'description'
8450     )
8451 );
8452
8453 -- 0448.data.trigger.circ.staff_age_to_lost.sql
8454
8455 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
8456     (   'circ.staff_age_to_lost',
8457         'circ', 
8458         oils_i18n_gettext(
8459             'circ.staff_age_to_lost',
8460             'An overdue circulation should be aged to a Lost status.',
8461             'ath',
8462             'description'
8463         ), 
8464         TRUE
8465     )
8466 ;
8467
8468 INSERT INTO action_trigger.event_definition (
8469         id,
8470         active,
8471         owner,
8472         name,
8473         hook,
8474         validator,
8475         reactor,
8476         delay_field
8477     ) VALUES (
8478         36,
8479         FALSE,
8480         1,
8481         'circ.staff_age_to_lost',
8482         'circ.staff_age_to_lost',
8483         'CircIsOverdue',
8484         'MarkItemLost',
8485         'due_date'
8486     )
8487 ;
8488
8489 -- 0460 schema for recalls triggered by holds
8490 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
8491     VALUES
8492         ('circ.holds.recall_threshold',
8493         oils_i18n_gettext( 'circ.holds.recall_threshold',
8494             'Recalls: Circulation duration that triggers a recall.', 'coust', 'label'),
8495         oils_i18n_gettext( 'circ.holds.recall_threshold',
8496             'Recalls: A hold placed on an item with a circulation duration longer than this will trigger a recall. For example, "14 days" or "3 weeks".', 'coust', 'description'),
8497         'interval')
8498 ;
8499
8500 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
8501     VALUES
8502         ('circ.holds.recall_return_interval',
8503         oils_i18n_gettext( 'circ.holds.recall_return_interval',
8504             'Recalls: Truncated loan period.', 'coust', 'label'),
8505         oils_i18n_gettext( 'circ.holds.recall_return_interval',
8506             'Recalls: When a recall is triggered, this defines the adjusted loan period for the item. For example, "4 days" or "1 week".', 'coust', 'description'),
8507         'interval')
8508 ;
8509
8510 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
8511     VALUES
8512         ('circ.holds.recall_fine_rules',
8513         oils_i18n_gettext( 'circ.holds.recall_fine_rules',
8514             'Recalls: An array of fine amount, fine interval, and maximum fine.', 'coust', 'label'),
8515         oils_i18n_gettext( 'circ.holds.recall_fine_rules',
8516             'Recalls: An array of fine amount, fine interval, and maximum fine. For example, to specify a new fine rule of $5.00 per day, with a maximum fine of $50.00, use: [5.00,"1 day",50.00]', 'coust', 'description'),
8517         'array')
8518 ;
8519
8520 INSERT INTO action_trigger.hook (key,core_type,description)
8521     VALUES ('circ.recall.target', 'circ', 'A checked-out copy has been recalled for a hold.');
8522
8523 INSERT INTO action_trigger.event_definition (id, owner, name, hook, validator, reactor, group_field, template)
8524     VALUES (37, 1, 'Item Recall Email Notice', 'circ.recall.target', 'NOOP_True', 'SendEmail', 'usr', 
8525 $$
8526 [%- USE date -%]
8527 [%- user = target.0.usr -%]
8528 To: [%- params.recipient_email || user.email %]
8529 From: [%- params.sender_email || default_sender %]
8530 Subject: Item Recall Notification 
8531
8532 Dear [% user.family_name %], [% user.first_given_name %]
8533
8534 The following item which you have checked out has been recalled so that
8535 another patron can have access to the item:
8536
8537 [% FOR circ IN target %]
8538     Title: [% circ.target_copy.call_number.record.simple_record.title %] 
8539     Barcode: [% circ.target_copy.barcode %] 
8540     Now Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
8541     Library: [% circ.circ_lib.name %]
8542
8543     If this item is not returned by the new due date, fines will be assessed at
8544     the rate of [% circ.recurring_fine %] every [% circ.fine_interval %].
8545 [% END %]
8546 $$
8547 );
8548
8549 INSERT INTO action_trigger.environment (event_def, path) VALUES
8550     (37, 'target_copy.call_number.record.simple_record'),
8551     (37, 'usr'),
8552     (37, 'circ_lib.billing_address')
8553 ;
8554
8555 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
8556     'ui.cat.volume_copy_editor.horizontal',
8557     oils_i18n_gettext(
8558         'ui.cat.volume_copy_editor.horizontal',
8559         'GUI: Horizontal layout for Volume/Copy Creator/Editor.',
8560         'coust', 'label'),
8561     oils_i18n_gettext(
8562         'ui.cat.volume_copy_editor.horizontal',
8563         'The main entry point for this interface is in Holdings Maintenance, Actions for Selected Rows, Edit Item Attributes / Call Numbers / Replace Barcodes.  This setting changes the top and bottom panes for that interface into left and right panes.',
8564         'coust', 'description'),
8565     'bool'
8566 );
8567
8568 INSERT into config.org_unit_setting_type
8569 ( name, label, description, datatype, fm_class ) VALUES
8570 ( 'cat.default_copy_status_fast',
8571   oils_i18n_gettext( 'cat.default_copy_status_fast', 'Cataloging: Default copy status (fast add)', 'coust', 'label'),
8572   oils_i18n_gettext( 'cat.default_copy_status_fast', 'Default status when a copy is created using the "Fast Add" interface.', 'coust', 'description'),
8573   'link', 'ccs'
8574 );
8575
8576 INSERT into config.org_unit_setting_type
8577 ( name, label, description, datatype, fm_class ) VALUES
8578 ( 'cat.default_copy_status_normal',
8579   oils_i18n_gettext( 'cat.default_copy_status_normal', 'Cataloging: Default copy status (normal)', 'coust', 'label'),
8580   oils_i18n_gettext( 'cat.default_copy_status_normal', 'Default status when a copy is created using the normal volume/copy creator interface.', 'coust', 'description'),
8581   'link', 'ccs'
8582 );
8583
8584 -- 0524.data.toggle_unified_volume_copy_editor.sql
8585
8586 INSERT into config.org_unit_setting_type
8587 ( name, label, description, datatype ) VALUES
8588 ( 'ui.unified_volume_copy_editor',
8589   oils_i18n_gettext( 'ui.unified_volume_copy_editor', 'GUI: Unified Volume/Item Creator/Editor', 'coust', 'label'),
8590   oils_i18n_gettext( 'ui.unified_volume_copy_editor', 'If true combines the Volume/Copy Creator and Item Attribute Editor in some instances.', 'coust', 'description'),
8591   'bool'
8592 );
8593
8594 -- add patron merge org unit settings
8595
8596 INSERT INTO config.org_unit_setting_type 
8597 ( name, label, description, datatype ) VALUES 
8598 ( 'circ.user_merge.delete_addresses', 
8599   'Circ:  Patron Merge Address Delete', 
8600   'Delete address(es) of subordinate user(s) in a patron merge', 
8601    'bool'
8602 );
8603
8604 INSERT INTO config.org_unit_setting_type 
8605 ( name, label, description, datatype ) VALUES 
8606 ( 'circ.user_merge.delete_cards', 
8607   'Circ: Patron Merge Barcode Delete', 
8608   'Delete barcode(s) of subordinate user(s) in a patron merge', 
8609   'bool'
8610 );
8611
8612 INSERT INTO config.org_unit_setting_type 
8613 ( name, label, description, datatype ) VALUES 
8614 ( 'circ.user_merge.deactivate_cards', 
8615   'Circ:  Patron Merge Deactivate Card', 
8616   'Mark barcode(s) of subordinate user(s) in a patron merge as inactive', 
8617   'bool'
8618 );
8619