]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
Don't make new auditor columns NOT NULL, or update them
[Evergreen.git] / Open-ILS / src / sql / Pg / 1.6.1-2.0-upgrade-db.sql
1 BEGIN;
2
3 -- Highest-numbered individual upgrade script
4 -- incorporated herein:
5
6 INSERT INTO config.upgrade_log (version) VALUES ('0403');
7
8 -- Begin by upgrading permission.perm_list.  This is fairly complicated.
9
10 -- Add ON UPDATE CASCADE to some foreign keys so that, when we renumber the
11 -- permissions, the dependents will follow and stay in sync:
12
13 ALTER TABLE permission.grp_perm_map DROP CONSTRAINT grp_perm_map_perm_fkey;
14 ALTER TABLE permission.grp_perm_map ADD CONSTRAINT grp_perm_map_perm_fkey FOREIGN KEY (perm)
15     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
16
17 ALTER TABLE permission.usr_perm_map DROP CONSTRAINT usr_perm_map_perm_fkey;
18 ALTER TABLE permission.usr_perm_map ADD CONSTRAINT usr_perm_map_perm_fkey FOREIGN KEY (perm)
19     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
20
21 ALTER TABLE permission.usr_object_perm_map DROP CONSTRAINT usr_object_perm_map_perm_fkey;
22 ALTER TABLE permission.usr_object_perm_map ADD CONSTRAINT usr_object_perm_map_perm_fkey FOREIGN KEY (perm)
23     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
24
25 UPDATE permission.perm_list
26     SET code = 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow'
27     WHERE code = 'UPDATE_ORG_UNIT_SETTING.global.credit.allow';
28
29 -- The following UPDATES were originally in an individual upgrade script, but should
30 -- no longer be necessary now that the foreign key has an ON UPDATE CASCADE clause.
31 -- We retain the UPDATES here, commented out, as historical relics.
32
33 -- UPDATE permission.grp_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
34 -- UPDATE permission.usr_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
35
36 -- Spelling correction
37 UPDATE permission.perm_list SET code = 'ADMIN_RECURRING_FINE_RULE' WHERE code = 'ADMIN_RECURING_FINE_RULE';
38
39 -- Now we engage in a Great Renumbering of the permissions in permission.perm_list,
40 -- in order to clean up accumulated cruft.
41
42 -- The first step is to establish some triggers so that, when we change the id of a permission,
43 -- the associated translations are updated accordingly.
44
45 CREATE OR REPLACE FUNCTION oils_i18n_update_apply(old_ident TEXT, new_ident TEXT, hint TEXT) RETURNS VOID AS $_$
46 BEGIN
47
48     EXECUTE $$
49         UPDATE  config.i18n_core
50           SET   identity_value = $$ || quote_literal( new_ident ) || $$ 
51           WHERE fq_field LIKE '$$ || hint || $$.%' 
52                 AND identity_value = $$ || quote_literal( old_ident ) || $$;$$;
53
54     RETURN;
55
56 END;
57 $_$ LANGUAGE PLPGSQL;
58
59 CREATE OR REPLACE FUNCTION oils_i18n_id_tracking(/* hint */) RETURNS TRIGGER AS $_$
60 BEGIN
61     PERFORM oils_i18n_update_apply( OLD.id::TEXT, NEW.id::TEXT, TG_ARGV[0]::TEXT );
62     RETURN NEW;
63 END;
64 $_$ LANGUAGE PLPGSQL;
65
66 CREATE OR REPLACE FUNCTION oils_i18n_code_tracking(/* hint */) RETURNS TRIGGER AS $_$
67 BEGIN
68     PERFORM oils_i18n_update_apply( OLD.code::TEXT, NEW.code::TEXT, TG_ARGV[0]::TEXT );
69     RETURN NEW;
70 END;
71 $_$ LANGUAGE PLPGSQL;
72
73
74 CREATE TRIGGER maintain_perm_i18n_tgr
75     AFTER UPDATE ON permission.perm_list
76     FOR EACH ROW EXECUTE PROCEDURE oils_i18n_id_tracking('ppl');
77
78 -- Next, create a new table as a convenience for sloshing data back and forth,
79 -- and for recording which permission went where.  It looks just like
80 -- permission.perm_list, but with two extra columns: one for the old id, and one to
81 -- distinguish between predefined permissions and non-predefined permissions.
82
83 -- This table is, in effect, a temporary table, because we can drop it once the
84 -- upgrade is complete.  It is not technically temporary as far as PostgreSQL is
85 -- concerned, because we don't want it to disappear at the end of the session.
86 -- We keep it around so that we have a map showing the old id and the new id for
87 -- each permission.  However there is no IDL entry for it, nor is it defined
88 -- in the base sql files.
89
90 CREATE TABLE permission.temp_perm (
91         id          INT        PRIMARY KEY,
92         code        TEXT       UNIQUE,
93         description TEXT,
94         old_id      INT,
95         predefined  BOOL       NOT NULL DEFAULT TRUE
96 );
97
98 -- Populate the temp table with a definitive set of predefined permissions,
99 -- hard-coding the ids.
100
101 -- The first set of permissions is derived from the database, as loaded in a
102 -- loaded 1.6.1 database, plus a few changes previously applied in this upgrade
103 -- script.  The second set is derived from the IDL -- permissions that are referenced
104 -- in <permacrud> elements but not defined in the database.
105
106 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( -1, 'EVERYTHING',
107      '' );
108 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 1, 'OPAC_LOGIN',
109      'Allow a user to log in to the OPAC' );
110 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 2, 'STAFF_LOGIN',
111      'Allow a user to log in to the staff client' );
112 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 3, 'MR_HOLDS',
113      'Allow a user to create a metarecord holds' );
114 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 4, 'TITLE_HOLDS',
115      'Allow a user to place a hold at the title level' );
116 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 5, 'VOLUME_HOLDS',
117      'Allow a user to place a volume level hold' );
118 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 6, 'COPY_HOLDS',
119      'Allow a user to place a hold on a specific copy' );
120 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 7, 'REQUEST_HOLDS',
121      '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)' );
122 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 8, 'REQUEST_HOLDS_OVERRIDE',
123      '* no longer applicable' );
124 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 9, 'VIEW_HOLD',
125      'Allow a user to view another user''s holds' );
126 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 10, 'DELETE_HOLDS',
127      '* no longer applicable' );
128 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 11, 'UPDATE_HOLD',
129      'Allow a user to update another user''s hold' );
130 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 12, 'RENEW_CIRC',
131      'Allow a user to renew items' );
132 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 13, 'VIEW_USER_FINES_SUMMARY',
133      'Allow a user to view bill details' );
134 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 14, 'VIEW_USER_TRANSACTIONS',
135      'Allow a user to see another user''s grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION' );
136 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 15, 'UPDATE_MARC',
137      'Allow a user to edit a MARC record' );
138 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 16, 'CREATE_MARC',
139      'Allow a user to create new MARC records' );
140 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 17, 'IMPORT_MARC',
141      'Allow a user to import a MARC record via the Z39.50 interface' );
142 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 18, 'CREATE_VOLUME',
143      'Allow a user to create a volume' );
144 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 19, 'UPDATE_VOLUME',
145      '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.' );
146 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 20, 'DELETE_VOLUME',
147      'Allow a user to delete a volume' );
148 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 21, 'CREATE_COPY',
149      'Allow a user to create a new copy object' );
150 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 22, 'UPDATE_COPY',
151      'Allow a user to edit a copy' );
152 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 23, 'DELETE_COPY',
153      'Allow a user to delete a copy' );
154 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 24, 'RENEW_HOLD_OVERRIDE',
155      'Allow a user to continue to renew an item even if it is required for a hold' );
156 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 25, 'CREATE_USER',
157      'Allow a user to create another user' );
158 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 26, 'UPDATE_USER',
159      'Allow a user to edit a user''s record' );
160 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 27, 'DELETE_USER',
161      'Allow a user to mark a user as deleted' );
162 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 28, 'VIEW_USER',
163      'Allow a user to view another user''s Patron Record' );
164 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 29, 'COPY_CHECKIN',
165      'Allow a user to check in a copy' );
166 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 30, 'CREATE_TRANSIT',
167      'Allow a user to place an item in transit' );
168 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 31, 'VIEW_PERMISSION',
169      'Allow a user to view user permissions within the user permissions editor' );
170 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 32, 'CHECKIN_BYPASS_HOLD_FULFILL',
171      '* no longer applicable' );
172 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 33, 'CREATE_PAYMENT',
173      'Allow a user to record payments in the Billing Interface' );
174 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 34, 'SET_CIRC_LOST',
175      'Allow a user to mark an item as ''lost''' );
176 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 35, 'SET_CIRC_MISSING',
177      'Allow a user to mark an item as ''missing''' );
178 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 36, 'SET_CIRC_CLAIMS_RETURNED',
179      'Allow a user to mark an item as ''claims returned''' );
180 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 37, 'CREATE_TRANSACTION',
181      'Allow a user to create a new billable transaction' );
182 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 38, 'VIEW_TRANSACTION',
183      'Allow a user may view another user''s transactions' );
184 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 39, 'CREATE_BILL',
185      'Allow a user to create a new bill on a transaction' );
186 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 40, 'VIEW_CONTAINER',
187      'Allow a user to view another user''s containers (buckets)' );
188 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 41, 'CREATE_CONTAINER',
189      'Allow a user to create a new container for another user' );
190 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 42, 'UPDATE_ORG_UNIT',
191      'Allow a user to change the settings for an organization unit' );
192 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 43, 'VIEW_CIRCULATIONS',
193      'Allow a user to see what another user has checked out' );
194 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 44, 'DELETE_CONTAINER',
195      'Allow a user to delete another user''s container' );
196 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 45, 'CREATE_CONTAINER_ITEM',
197      'Allow a user to create a container item for another user' );
198 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 46, 'CREATE_USER_GROUP_LINK',
199      'Allow a user to add other users to permission groups' );
200 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 47, 'REMOVE_USER_GROUP_LINK',
201      'Allow a user to remove other users from permission groups' );
202 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 48, 'VIEW_PERM_GROUPS',
203      'Allow a user to view other users'' permission groups' );
204 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 49, 'VIEW_PERMIT_CHECKOUT',
205      'Allow a user to determine whether another user can check out an item' );
206 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 50, 'UPDATE_BATCH_COPY',
207      'Allow a user to edit copies in batch' );
208 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 51, 'CREATE_PATRON_STAT_CAT',
209      'User may create a new patron statistical category' );
210 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 52, 'CREATE_COPY_STAT_CAT',
211      'User may create a copy statistical category' );
212 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 53, 'CREATE_PATRON_STAT_CAT_ENTRY',
213      'User may create an entry in a patron statistical category' );
214 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 54, 'CREATE_COPY_STAT_CAT_ENTRY',
215      'User may create an entry in a copy statistical category' );
216 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 55, 'UPDATE_PATRON_STAT_CAT',
217      'User may update a patron statistical category' );
218 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 56, 'UPDATE_COPY_STAT_CAT',
219      'User may update a copy statistical category' );
220 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 57, 'UPDATE_PATRON_STAT_CAT_ENTRY',
221      'User may update an entry in a patron statistical category' );
222 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 58, 'UPDATE_COPY_STAT_CAT_ENTRY',
223      'User may update an entry in a copy statistical category' );
224 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 59, 'CREATE_PATRON_STAT_CAT_ENTRY_MAP',
225      'User may link another user to an entry in a statistical category' );
226 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 60, 'CREATE_COPY_STAT_CAT_ENTRY_MAP',
227      'User may link a copy to an entry in a statistical category' );
228 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 61, 'DELETE_PATRON_STAT_CAT',
229      'User may delete a patron statistical category' );
230 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 62, 'DELETE_COPY_STAT_CAT',
231      'User may delete a copy statistical category' );
232 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 63, 'DELETE_PATRON_STAT_CAT_ENTRY',
233      'User may delete an entry from a patron statistical category' );
234 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 64, 'DELETE_COPY_STAT_CAT_ENTRY',
235      'User may delete an entry from a copy statistical category' );
236 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 65, 'DELETE_PATRON_STAT_CAT_ENTRY_MAP',
237      'User may delete a patron statistical category entry map' );
238 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 66, 'DELETE_COPY_STAT_CAT_ENTRY_MAP',
239      'User may delete a copy statistical category entry map' );
240 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 67, 'CREATE_NON_CAT_TYPE',
241      'Allow a user to create a new non-cataloged item type' );
242 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 68, 'UPDATE_NON_CAT_TYPE',
243      'Allow a user to update a non-cataloged item type' );
244 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 69, 'CREATE_IN_HOUSE_USE',
245      'Allow a user to create a new in-house-use ' );
246 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 70, 'COPY_CHECKOUT',
247      'Allow a user to check out a copy' );
248 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 71, 'CREATE_COPY_LOCATION',
249      'Allow a user to create a new copy location' );
250 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 72, 'UPDATE_COPY_LOCATION',
251      'Allow a user to update a copy location' );
252 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 73, 'DELETE_COPY_LOCATION',
253      'Allow a user to delete a copy location' );
254 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 74, 'CREATE_COPY_TRANSIT',
255      'Allow a user to create a transit_copy object for transiting a copy' );
256 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 75, 'COPY_TRANSIT_RECEIVE',
257      'Allow a user to close out a transit on a copy' );
258 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 76, 'VIEW_HOLD_PERMIT',
259      'Allow a user to see if another user has permission to place a hold on a given copy' );
260 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 77, 'VIEW_COPY_CHECKOUT_HISTORY',
261      'Allow a user to view which users have checked out a given copy' );
262 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 78, 'REMOTE_Z3950_QUERY',
263      'Allow a user to perform Z39.50 queries against remote servers' );
264 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 79, 'REGISTER_WORKSTATION',
265      'Allow a user to register a new workstation' );
266 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 80, 'VIEW_COPY_NOTES',
267      'Allow a user to view all notes attached to a copy' );
268 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 81, 'VIEW_VOLUME_NOTES',
269      'Allow a user to view all notes attached to a volume' );
270 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 82, 'VIEW_TITLE_NOTES',
271      'Allow a user to view all notes attached to a title' );
272 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 83, 'CREATE_COPY_NOTE',
273      'Allow a user to create a new copy note' );
274 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 84, 'CREATE_VOLUME_NOTE',
275      'Allow a user to create a new volume note' );
276 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 85, 'CREATE_TITLE_NOTE',
277      'Allow a user to create a new title note' );
278 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 86, 'DELETE_COPY_NOTE',
279      'Allow a user to delete another user''s copy notes' );
280 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 87, 'DELETE_VOLUME_NOTE',
281      'Allow a user to delete another user''s volume note' );
282 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 88, 'DELETE_TITLE_NOTE',
283      'Allow a user to delete another user''s title note' );
284 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 89, 'UPDATE_CONTAINER',
285      'Allow a user to update another user''s container' );
286 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 90, 'CREATE_MY_CONTAINER',
287      'Allow a user to create a container for themselves' );
288 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 91, 'VIEW_HOLD_NOTIFICATION',
289      'Allow a user to view notifications attached to a hold' );
290 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 92, 'CREATE_HOLD_NOTIFICATION',
291      'Allow a user to create new hold notifications' );
292 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 93, 'UPDATE_ORG_SETTING',
293      'Allow a user to update an organization unit setting' );
294 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 94, 'OFFLINE_UPLOAD',
295      'Allow a user to upload an offline script' );
296 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 95, 'OFFLINE_VIEW',
297      'Allow a user to view uploaded offline script information' );
298 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 96, 'OFFLINE_EXECUTE',
299      'Allow a user to execute an offline script batch' );
300 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 97, 'CIRC_OVERRIDE_DUE_DATE',
301      'Allow a user to change the due date on an item to any date' );
302 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 98, 'CIRC_PERMIT_OVERRIDE',
303      'Allow a user to bypass the circulation permit call for check out' );
304 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 99, 'COPY_IS_REFERENCE.override',
305      'Allow a user to override the copy_is_reference event' );
306 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 100, 'VOID_BILLING',
307      'Allow a user to void a bill' );
308 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 101, 'CIRC_CLAIMS_RETURNED.override',
309      'Allow a user to check in or check out an item that has a status of ''claims returned''' );
310 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 102, 'COPY_BAD_STATUS.override',
311      'Allow a user to check out an item in a non-circulatable status' );
312 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 103, 'COPY_ALERT_MESSAGE.override',
313      'Allow a user to check in/out an item that has an alert message' );
314 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 104, 'COPY_STATUS_LOST.override',
315      'Allow a user to remove the lost status from a copy' );
316 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 105, 'COPY_STATUS_MISSING.override',
317      'Allow a user to change the missing status on a copy' );
318 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 106, 'ABORT_TRANSIT',
319      'Allow a user to abort a copy transit if the user is at the transit destination or source' );
320 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 107, 'ABORT_REMOTE_TRANSIT',
321      'Allow a user to abort a copy transit if the user is not at the transit source or dest' );
322 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 108, 'VIEW_ZIP_DATA',
323      'Allow a user to query the ZIP code data method' );
324 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 109, 'CANCEL_HOLDS',
325      'Allow a user to cancel holds' );
326 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 110, 'CREATE_DUPLICATE_HOLDS',
327      'Allow a user to create duplicate holds (two or more holds on the same title)' );
328 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 111, 'actor.org_unit.closed_date.delete',
329      'Allow a user to remove a closed date interval for a given location' );
330 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 112, 'actor.org_unit.closed_date.update',
331      'Allow a user to update a closed date interval for a given location' );
332 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 113, 'actor.org_unit.closed_date.create',
333      'Allow a user to create a new closed date for a location' );
334 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 114, 'DELETE_NON_CAT_TYPE',
335      'Allow a user to delete a non cataloged type' );
336 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 115, 'money.collections_tracker.create',
337      'Allow a user to put someone into collections' );
338 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 116, 'money.collections_tracker.delete',
339      'Allow a user to remove someone from collections' );
340 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 117, 'BAR_PATRON',
341      'Allow a user to bar a patron' );
342 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 118, 'UNBAR_PATRON',
343      'Allow a user to un-bar a patron' );
344 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 119, 'DELETE_WORKSTATION',
345      'Allow a user to remove an existing workstation so a new one can replace it' );
346 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 120, 'group_application.user',
347      'Allow a user to add/remove users to/from the "User" group' );
348 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 121, 'group_application.user.patron',
349      'Allow a user to add/remove users to/from the "Patron" group' );
350 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 122, 'group_application.user.staff',
351      'Allow a user to add/remove users to/from the "Staff" group' );
352 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 123, 'group_application.user.staff.circ',
353      'Allow a user to add/remove users to/from the "Circulator" group' );
354 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 124, 'group_application.user.staff.cat',
355      'Allow a user to add/remove users to/from the "Cataloger" group' );
356 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 125, 'group_application.user.staff.admin.global_admin',
357      'Allow a user to add/remove users to/from the "GlobalAdmin" group' );
358 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 126, 'group_application.user.staff.admin.local_admin',
359      'Allow a user to add/remove users to/from the "LocalAdmin" group' );
360 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 127, 'group_application.user.staff.admin.lib_manager',
361      'Allow a user to add/remove users to/from the "LibraryManager" group' );
362 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 128, 'group_application.user.staff.cat.cat1',
363      'Allow a user to add/remove users to/from the "Cat1" group' );
364 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 129, 'group_application.user.staff.supercat',
365      'Allow a user to add/remove users to/from the "Supercat" group' );
366 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 130, 'group_application.user.sip_client',
367      'Allow a user to add/remove users to/from the "SIP-Client" group' );
368 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 131, 'group_application.user.vendor',
369      'Allow a user to add/remove users to/from the "Vendor" group' );
370 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 132, 'ITEM_AGE_PROTECTED.override',
371      'Allow a user to place a hold on an age-protected item' );
372 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 133, 'MAX_RENEWALS_REACHED.override',
373      'Allow a user to renew an item past the maximum renewal count' );
374 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 134, 'PATRON_EXCEEDS_CHECKOUT_COUNT.override',
375      'Allow staff to override checkout count failure' );
376 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 135, 'PATRON_EXCEEDS_OVERDUE_COUNT.override',
377      'Allow staff to override overdue count failure' );
378 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 136, 'PATRON_EXCEEDS_FINES.override',
379      'Allow staff to override fine amount checkout failure' );
380 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 137, 'CIRC_EXCEEDS_COPY_RANGE.override',
381      'Allow staff to override circulation copy range failure' );
382 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 138, 'ITEM_ON_HOLDS_SHELF.override',
383      'Allow staff to override item on holds shelf failure' );
384 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 139, 'COPY_NOT_AVAILABLE.override',
385      'Allow staff to force checkout of Missing/Lost type items' );
386 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 140, 'HOLD_EXISTS.override',
387      'Allow a user to place multiple holds on a single title' );
388 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 141, 'RUN_REPORTS',
389      'Allow a user to run reports' );
390 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 142, 'SHARE_REPORT_FOLDER',
391      'Allow a user to share report his own folders' );
392 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 143, 'VIEW_REPORT_OUTPUT',
393      'Allow a user to view report output' );
394 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 144, 'COPY_CIRC_NOT_ALLOWED.override',
395      'Allow a user to checkout an item that is marked as non-circ' );
396 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 145, 'DELETE_CONTAINER_ITEM',
397      'Allow a user to delete an item out of another user''s container' );
398 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 146, 'ASSIGN_WORK_ORG_UNIT',
399      'Allow a staff member to define where another staff member has their permissions' );
400 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 147, 'CREATE_FUNDING_SOURCE',
401      'Allow a user to create a new funding source' );
402 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 148, 'DELETE_FUNDING_SOURCE',
403      'Allow a user to delete a funding source' );
404 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 149, 'VIEW_FUNDING_SOURCE',
405      'Allow a user to view a funding source' );
406 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 150, 'UPDATE_FUNDING_SOURCE',
407      'Allow a user to update a funding source' );
408 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 151, 'CREATE_FUND',
409      'Allow a user to create a new fund' );
410 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 152, 'DELETE_FUND',
411      'Allow a user to delete a fund' );
412 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 153, 'VIEW_FUND',
413      'Allow a user to view a fund' );
414 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 154, 'UPDATE_FUND',
415      'Allow a user to update a fund' );
416 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 155, 'CREATE_FUND_ALLOCATION',
417      'Allow a user to create a new fund allocation' );
418 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 156, 'DELETE_FUND_ALLOCATION',
419      'Allow a user to delete a fund allocation' );
420 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 157, 'VIEW_FUND_ALLOCATION',
421      'Allow a user to view a fund allocation' );
422 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 158, 'UPDATE_FUND_ALLOCATION',
423      'Allow a user to update a fund allocation' );
424 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 159, 'GENERAL_ACQ',
425      'Lowest level permission required to access the ACQ interface' );
426 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 160, 'CREATE_PROVIDER',
427      'Allow a user to create a new provider' );
428 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 161, 'DELETE_PROVIDER',
429      'Allow a user to delate a provider' );
430 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 162, 'VIEW_PROVIDER',
431      'Allow a user to view a provider' );
432 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 163, 'UPDATE_PROVIDER',
433      'Allow a user to update a provider' );
434 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 164, 'ADMIN_FUNDING_SOURCE',
435      'Allow a user to create/view/update/delete a funding source' );
436 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 165, 'ADMIN_FUND',
437      '(Deprecated) Allow a user to create/view/update/delete a fund' );
438 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 166, 'MANAGE_FUNDING_SOURCE',
439      'Allow a user to view/credit/debit a funding source' );
440 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 167, 'MANAGE_FUND',
441      'Allow a user to view/credit/debit a fund' );
442 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 168, 'CREATE_PICKLIST',
443      'Allows a user to create a picklist' );
444 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 169, 'ADMIN_PROVIDER',
445      'Allow a user to create/view/update/delete a provider' );
446 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 170, 'MANAGE_PROVIDER',
447      'Allow a user to view and purchase from a provider' );
448 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 171, 'VIEW_PICKLIST',
449      'Allow a user to view another users picklist' );
450 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 172, 'DELETE_RECORD',
451      'Allow a staff member to directly remove a bibliographic record' );
452 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 173, 'ADMIN_CURRENCY_TYPE',
453      'Allow a user to create/view/update/delete a currency_type' );
454 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 174, 'MARK_BAD_DEBT',
455      'Allow a user to mark a transaction as bad (unrecoverable) debt' );
456 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 175, 'VIEW_BILLING_TYPE',
457      'Allow a user to view billing types' );
458 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 176, 'MARK_ITEM_AVAILABLE',
459      'Allow a user to mark an item status as ''available''' );
460 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 177, 'MARK_ITEM_CHECKED_OUT',
461      'Allow a user to mark an item status as ''checked out''' );
462 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 178, 'MARK_ITEM_BINDERY',
463      'Allow a user to mark an item status as ''bindery''' );
464 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 179, 'MARK_ITEM_LOST',
465      'Allow a user to mark an item status as ''lost''' );
466 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 180, 'MARK_ITEM_MISSING',
467      'Allow a user to mark an item status as ''missing''' );
468 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 181, 'MARK_ITEM_IN_PROCESS',
469      'Allow a user to mark an item status as ''in process''' );
470 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 182, 'MARK_ITEM_IN_TRANSIT',
471      'Allow a user to mark an item status as ''in transit''' );
472 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 183, 'MARK_ITEM_RESHELVING',
473      'Allow a user to mark an item status as ''reshelving''' );
474 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 184, 'MARK_ITEM_ON_HOLDS_SHELF',
475      'Allow a user to mark an item status as ''on holds shelf''' );
476 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 185, 'MARK_ITEM_ON_ORDER',
477      'Allow a user to mark an item status as ''on order''' );
478 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 186, 'MARK_ITEM_ILL',
479      'Allow a user to mark an item status as ''inter-library loan''' );
480 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 187, 'group_application.user.staff.acq',
481      'Allows a user to add/remove/edit users in the "ACQ" group' );
482 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 188, 'CREATE_PURCHASE_ORDER',
483      'Allows a user to create a purchase order' );
484 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 189, 'VIEW_PURCHASE_ORDER',
485      'Allows a user to view a purchase order' );
486 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 190, 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
487      'Allows a user to import a bib record from the acq staging area (on-order record) into the ILS bib data set' );
488 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 191, 'RECEIVE_PURCHASE_ORDER',
489      'Allows a user to mark a purchase order, lineitem, or individual copy as received' );
490 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 192, 'VIEW_ORG_SETTINGS',
491      'Allows a user to view all org settings at the specified level' );
492 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 193, 'CREATE_MFHD_RECORD',
493      'Allows a user to create a new MFHD record' );
494 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 194, 'UPDATE_MFHD_RECORD',
495      'Allows a user to update an MFHD record' );
496 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 195, 'DELETE_MFHD_RECORD',
497      'Allows a user to delete an MFHD record' );
498 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 196, 'ADMIN_ACQ_FUND',
499      'Allow a user to create/view/update/delete a fund' );
500 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 197, 'group_application.user.staff.acq_admin',
501      'Allows a user to add/remove/edit users in the "Acquisitions Administrators" group' );
502 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 198, 'SET_CIRC_CLAIMS_RETURNED.override',
503      'Allows staff to override the max claims returned value for a patron' );
504 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 199, 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
505      'Allows staff to manually change a patron''s claims returned count' );
506 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 200, 'UPDATE_BILL_NOTE',
507      'Allows staff to edit the note for a bill on a transaction' );
508 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 201, 'UPDATE_PAYMENT_NOTE',
509      'Allows staff to edit the note for a payment on a transaction' );
510 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
511      'Allows staff to manually change a patron''s claims never checkout out count' );
512 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 203, 'ADMIN_COPY_LOCATION_ORDER',
513      'Allow a user to create/view/update/delete a copy location order' );
514 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 204, 'ASSIGN_GROUP_PERM',
515      '' );
516 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 205, 'CREATE_AUDIENCE',
517      '' );
518 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 206, 'CREATE_BIB_LEVEL',
519      '' );
520 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 207, 'CREATE_CIRC_DURATION',
521      '' );
522 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 208, 'CREATE_CIRC_MOD',
523      '' );
524 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 209, 'CREATE_COPY_STATUS',
525      '' );
526 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 210, 'CREATE_HOURS_OF_OPERATION',
527      '' );
528 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 211, 'CREATE_ITEM_FORM',
529      '' );
530 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 212, 'CREATE_ITEM_TYPE',
531      '' );
532 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 213, 'CREATE_LANGUAGE',
533      '' );
534 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 214, 'CREATE_LASSO',
535      '' );
536 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 215, 'CREATE_LASSO_MAP',
537      '' );
538 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 216, 'CREATE_LIT_FORM',
539      '' );
540 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 217, 'CREATE_METABIB_FIELD',
541      '' );
542 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 218, 'CREATE_NET_ACCESS_LEVEL',
543      '' );
544 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 219, 'CREATE_ORG_ADDRESS',
545      '' );
546 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 220, 'CREATE_ORG_TYPE',
547      '' );
548 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 221, 'CREATE_ORG_UNIT',
549      '' );
550 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 222, 'CREATE_ORG_UNIT_CLOSING',
551      '' );
552 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 223, 'CREATE_PERM',
553      '' );
554 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 224, 'CREATE_RELEVANCE_ADJUSTMENT',
555      '' );
556 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 225, 'CREATE_SURVEY',
557      '' );
558 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 226, 'CREATE_VR_FORMAT',
559      '' );
560 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 227, 'CREATE_XML_TRANSFORM',
561      '' );
562 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 228, 'DELETE_AUDIENCE',
563      '' );
564 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 229, 'DELETE_BIB_LEVEL',
565      '' );
566 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 230, 'DELETE_CIRC_DURATION',
567      '' );
568 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 231, 'DELETE_CIRC_MOD',
569      '' );
570 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 232, 'DELETE_COPY_STATUS',
571      '' );
572 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 233, 'DELETE_HOURS_OF_OPERATION',
573      '' );
574 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 234, 'DELETE_ITEM_FORM',
575      '' );
576 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 235, 'DELETE_ITEM_TYPE',
577      '' );
578 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 236, 'DELETE_LANGUAGE',
579      '' );
580 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 237, 'DELETE_LASSO',
581      '' );
582 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 238, 'DELETE_LASSO_MAP',
583      '' );
584 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 239, 'DELETE_LIT_FORM',
585      '' );
586 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 240, 'DELETE_METABIB_FIELD',
587      '' );
588 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 241, 'DELETE_NET_ACCESS_LEVEL',
589      '' );
590 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 242, 'DELETE_ORG_ADDRESS',
591      '' );
592 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 243, 'DELETE_ORG_TYPE',
593      '' );
594 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 244, 'DELETE_ORG_UNIT',
595      '' );
596 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 245, 'DELETE_ORG_UNIT_CLOSING',
597      '' );
598 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 246, 'DELETE_PERM',
599      '' );
600 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 247, 'DELETE_RELEVANCE_ADJUSTMENT',
601      '' );
602 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 248, 'DELETE_SURVEY',
603      '' );
604 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 249, 'DELETE_TRANSIT',
605      '' );
606 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 250, 'DELETE_VR_FORMAT',
607      '' );
608 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 251, 'DELETE_XML_TRANSFORM',
609      '' );
610 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 252, 'REMOVE_GROUP_PERM',
611      '' );
612 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 253, 'TRANSIT_COPY',
613      '' );
614 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 254, 'UPDATE_AUDIENCE',
615      '' );
616 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 255, 'UPDATE_BIB_LEVEL',
617      '' );
618 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 256, 'UPDATE_CIRC_DURATION',
619      '' );
620 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 257, 'UPDATE_CIRC_MOD',
621      '' );
622 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 258, 'UPDATE_COPY_NOTE',
623      '' );
624 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 259, 'UPDATE_COPY_STATUS',
625      '' );
626 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 260, 'UPDATE_GROUP_PERM',
627      '' );
628 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 261, 'UPDATE_HOURS_OF_OPERATION',
629      '' );
630 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 262, 'UPDATE_ITEM_FORM',
631      '' );
632 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 263, 'UPDATE_ITEM_TYPE',
633      '' );
634 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 264, 'UPDATE_LANGUAGE',
635      '' );
636 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 265, 'UPDATE_LASSO',
637      '' );
638 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 266, 'UPDATE_LASSO_MAP',
639      '' );
640 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 267, 'UPDATE_LIT_FORM',
641      '' );
642 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 268, 'UPDATE_METABIB_FIELD',
643      '' );
644 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 269, 'UPDATE_NET_ACCESS_LEVEL',
645      '' );
646 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 270, 'UPDATE_ORG_ADDRESS',
647      '' );
648 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 271, 'UPDATE_ORG_TYPE',
649      '' );
650 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 272, 'UPDATE_ORG_UNIT_CLOSING',
651      '' );
652 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 273, 'UPDATE_PERM',
653      '' );
654 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 274, 'UPDATE_RELEVANCE_ADJUSTMENT',
655      '' );
656 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 275, 'UPDATE_SURVEY',
657      '' );
658 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 276, 'UPDATE_TRANSIT',
659      '' );
660 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 277, 'UPDATE_VOLUME_NOTE',
661      '' );
662 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 278, 'UPDATE_VR_FORMAT',
663      '' );
664 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 279, 'UPDATE_XML_TRANSFORM',
665      '' );
666 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 280, 'MERGE_BIB_RECORDS',
667      '' );
668 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 281, 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
669      '' );
670 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 282, 'CREATE_ACQ_FUNDING_SOURCE',
671      '' );
672 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 283, 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
673      '' );
674 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 284, 'CREATE_AUTHORITY_IMPORT_QUEUE',
675      '' );
676 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 285, 'CREATE_AUTHORITY_RECORD_NOTE',
677      '' );
678 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 286, 'CREATE_BIB_IMPORT_FIELD_DEF',
679      '' );
680 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 287, 'CREATE_BIB_IMPORT_QUEUE',
681      '' );
682 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 288, 'CREATE_LOCALE',
683      '' );
684 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 289, 'CREATE_MARC_CODE',
685      '' );
686 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 290, 'CREATE_TRANSLATION',
687      '' );
688 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 291, 'DELETE_ACQ_FUNDING_SOURCE',
689      '' );
690 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 292, 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
691      '' );
692 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 293, 'DELETE_AUTHORITY_IMPORT_QUEUE',
693      '' );
694 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 294, 'DELETE_AUTHORITY_RECORD_NOTE',
695      '' );
696 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 295, 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF',
697      '' );
698 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 296, 'DELETE_BIB_IMPORT_QUEUE',
699      '' );
700 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 297, 'DELETE_LOCALE',
701      '' );
702 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 298, 'DELETE_MARC_CODE',
703      '' );
704 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 299, 'DELETE_TRANSLATION',
705      '' );
706 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 300, 'UPDATE_ACQ_FUNDING_SOURCE',
707      '' );
708 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 301, 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
709      '' );
710 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 302, 'UPDATE_AUTHORITY_IMPORT_QUEUE',
711      '' );
712 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 303, 'UPDATE_AUTHORITY_RECORD_NOTE',
713      '' );
714 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 304, 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF',
715      '' );
716 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 305, 'UPDATE_BIB_IMPORT_QUEUE',
717      '' );
718 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 306, 'UPDATE_LOCALE',
719      '' );
720 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 307, 'UPDATE_MARC_CODE',
721      '' );
722 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 308, 'UPDATE_TRANSLATION',
723      '' );
724 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 309, 'VIEW_ACQ_FUNDING_SOURCE',
725      '' );
726 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 310, 'VIEW_AUTHORITY_RECORD_NOTES',
727      '' );
728 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 311, 'CREATE_IMPORT_ITEM',
729      '' );
730 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 312, 'CREATE_IMPORT_ITEM_ATTR_DEF',
731      '' );
732 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 313, 'CREATE_IMPORT_TRASH_FIELD',
733      '' );
734 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 314, 'DELETE_IMPORT_ITEM',
735      '' );
736 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 315, 'DELETE_IMPORT_ITEM_ATTR_DEF',
737      '' );
738 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 316, 'DELETE_IMPORT_TRASH_FIELD',
739      '' );
740 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 317, 'UPDATE_IMPORT_ITEM',
741      '' );
742 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 318, 'UPDATE_IMPORT_ITEM_ATTR_DEF',
743      '' );
744 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 319, 'UPDATE_IMPORT_TRASH_FIELD',
745      '' );
746 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 320, 'UPDATE_ORG_UNIT_SETTING_ALL',
747      '' );
748 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 321, 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee',
749      '' );
750 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 322, 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price',
751      '' );
752 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 323, 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout',
753      '' );
754 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 324, 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout',
755      '' );
756 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 325, 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails',
757      '' );
758 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 326, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval',
759      '' );
760 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 327, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval',
761      '' );
762 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 328, 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow',
763      '' );
764 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 329, 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost',
765      '' );
766 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 330, 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft',
767      '' );
768 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 331, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard',
769      '' );
770 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 332, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft',
771      '' );
772 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 333, 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex',
773      '' );
774 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 334, 'UPDATE_ORG_UNIT_SETTING.global.password_regex',
775      '' );
776 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 335, 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max',
777      '' );
778 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 336, 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval',
779      '' );
780 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 337, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout',
781      '' );
782 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 338, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event',
783      '' );
784 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 339, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password',
785      '' );
786 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 340, 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold',
787      '' );
788 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 341, 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty',
789      '' );
790 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 342, 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty',
791      '' );
792 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 343, 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone',
793      '' );
794 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 344, 'HOLD_ITEM_CHECKED_OUT.override',
795      'Allows a user to place a hold on an item that they already have checked out' );
796 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 345, 'ADMIN_ACQ_CANCEL_CAUSE',
797      'Allow a user to create/update/delete reasons for order cancellations' );
798 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 346, 'ACQ_XFER_MANUAL_DFUND_AMOUNT',
799      'Allow a user to transfer different amounts of money out of one fund and into another' );
800 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 347, 'OVERRIDE_HOLD_HAS_LOCAL_COPY',
801      'Allow a user to override the circ.holds.hold_has_copy_at.block setting' );
802 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 348, 'UPDATE_PICKUP_LIB_FROM_TRANSIT',
803      'Allow a user to change the pickup and transit destination for a captured hold item already in transit' );
804 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 349, 'COPY_NEEDED_FOR_HOLD.override',
805      'Allow a user to force renewal of an item that could fulfill a hold request' );
806 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 350, 'MERGE_AUTH_RECORDS',
807      'Allow a user to merge authority records together' );
808 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 351, 'ALLOW_ALT_TCN',
809      'Allows staff to import a record using an alternate TCN to avoid conflicts' );
810 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 352, 'ADMIN_TRIGGER_EVENT_DEF',
811      'Allow a user to administer trigger event definitions' );
812 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 353, 'ADMIN_TRIGGER_CLEANUP',
813      'Allow a user to create, delete, and update trigger cleanup entries' );
814 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 354, 'CREATE_TRIGGER_CLEANUP',
815      'Allow a user to create trigger cleanup entries' );
816 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 355, 'DELETE_TRIGGER_CLEANUP',
817      'Allow a user to delete trigger cleanup entries' );
818 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 356, 'UPDATE_TRIGGER_CLEANUP',
819      'Allow a user to update trigger cleanup entries' );
820 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 357, 'CREATE_TRIGGER_EVENT_DEF',
821      'Allow a user to create trigger event definitions' );
822 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 358, 'DELETE_TRIGGER_EVENT_DEF',
823      'Allow a user to delete trigger event definitions' );
824 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 359, 'UPDATE_TRIGGER_EVENT_DEF',
825      'Allow a user to update trigger event definitions' );
826 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 360, 'VIEW_TRIGGER_EVENT_DEF',
827      'Allow a user to view trigger event definitions' );
828 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 361, 'ADMIN_TRIGGER_HOOK',
829      'Allow a user to create, update, and delete trigger hooks' );
830 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 362, 'CREATE_TRIGGER_HOOK',
831      'Allow a user to create trigger hooks' );
832 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 363, 'DELETE_TRIGGER_HOOK',
833      'Allow a user to delete trigger hooks' );
834 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 364, 'UPDATE_TRIGGER_HOOK',
835      'Allow a user to update trigger hooks' );
836 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 365, 'ADMIN_TRIGGER_REACTOR',
837      'Allow a user to create, update, and delete trigger reactors' );
838 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 366, 'CREATE_TRIGGER_REACTOR',
839      'Allow a user to create trigger reactors' );
840 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 367, 'DELETE_TRIGGER_REACTOR',
841      'Allow a user to delete trigger reactors' );
842 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 368, 'UPDATE_TRIGGER_REACTOR',
843      'Allow a user to update trigger reactors' );
844 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 369, 'ADMIN_TRIGGER_TEMPLATE_OUTPUT',
845      'Allow a user to delete trigger template output' );
846 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 370, 'DELETE_TRIGGER_TEMPLATE_OUTPUT',
847      'Allow a user to delete trigger template output' );
848 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 371, 'ADMIN_TRIGGER_VALIDATOR',
849      'Allow a user to create, update, and delete trigger validators' );
850 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 372, 'CREATE_TRIGGER_VALIDATOR',
851      'Allow a user to create trigger validators' );
852 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 373, 'DELETE_TRIGGER_VALIDATOR',
853      'Allow a user to delete trigger validators' );
854 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 374, 'UPDATE_TRIGGER_VALIDATOR',
855      'Allow a user to update trigger validators' );
856 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 375, 'HOLD_LOCAL_AVAIL_OVERRIDE',
857      'Allow a user to place a hold despite the availability of a local copy' );
858 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 376, 'ADMIN_BOOKING_RESOURCE',
859      'Enables the user to create/update/delete booking resources' );
860 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 377, 'ADMIN_BOOKING_RESOURCE_TYPE',
861      'Enables the user to create/update/delete booking resource types' );
862 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 378, 'ADMIN_BOOKING_RESOURCE_ATTR',
863      'Enables the user to create/update/delete booking resource attributes' );
864 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 379, 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
865      'Enables the user to create/update/delete booking resource attribute maps' );
866 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 380, 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
867      'Enables the user to create/update/delete booking resource attribute values' );
868 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 381, 'ADMIN_BOOKING_RESERVATION',
869      'Enables the user to create/update/delete booking reservations' );
870 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 382, 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP',
871      'Enables the user to create/update/delete booking reservation attribute value maps' );
872 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 383, 'RETRIEVE_RESERVATION_PULL_LIST',
873      'Allows a user to retrieve a booking reservation pull list' );
874 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 384, 'CAPTURE_RESERVATION',
875      'Allows a user to capture booking reservations' );
876 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 385, 'UPDATE_RECORD',
877      '' );
878 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 386, 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds',
879      '' );
880 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 387, 'MERGE_USERS',
881      'Allows user records to be merged' );
882 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 388, 'ISSUANCE_HOLDS',
883      'Allow a user to place holds on serials issuances' );
884 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 389, 'VIEW_CREDIT_CARD_PROCESSING',
885      'View org unit settings related to credit card processing' );
886 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 390, 'ADMIN_CREDIT_CARD_PROCESSING',
887      'Update org unit settings related to credit card processing' );
888
889 -- Now for the permissions from the IDL.  We don't have descriptions for them.
890
891 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 391, 'ADMIN_ACQ_CLAIM' );
892 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 392, 'ADMIN_ACQ_CLAIM_EVENT_TYPE' );
893 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 393, 'ADMIN_ACQ_CLAIM_TYPE' );
894 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 394, 'ADMIN_ACQ_DISTRIB_FORMULA' );
895 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 395, 'ADMIN_ACQ_FISCAL_YEAR' );
896 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 396, 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT' );
897 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 397, 'ADMIN_ACQ_FUND_TAG' );
898 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 398, 'ADMIN_ACQ_LINEITEM_ALERT_TEXT' );
899 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 399, 'ADMIN_AGE_PROTECT_RULE' );
900 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 400, 'ADMIN_ASSET_COPY_TEMPLATE' );
901 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 401, 'ADMIN_BOOKING_RESERVATION_ATTR_MAP' );
902 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 402, 'ADMIN_CIRC_MATRIX_MATCHPOINT' );
903 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 403, 'ADMIN_CIRC_MOD' );
904 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 404, 'ADMIN_CLAIM_POLICY' );
905 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 405, 'ADMIN_CONFIG_REMOTE_ACCOUNT' );
906 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 406, 'ADMIN_FIELD_DOC' );
907 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 407, 'ADMIN_GLOBAL_FLAG' );
908 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 408, 'ADMIN_GROUP_PENALTY_THRESHOLD' );
909 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 409, 'ADMIN_HOLD_CANCEL_CAUSE' );
910 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 410, 'ADMIN_HOLD_MATRIX_MATCHPOINT' );
911 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 411, 'ADMIN_IDENT_TYPE' );
912 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 412, 'ADMIN_IMPORT_ITEM_ATTR_DEF' );
913 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 413, 'ADMIN_INDEX_NORMALIZER' );
914 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 414, 'ADMIN_INVOICE' );
915 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 415, 'ADMIN_INVOICE_METHOD' );
916 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 416, 'ADMIN_INVOICE_PAYMENT_METHOD' );
917 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 417, 'ADMIN_LINEITEM_MARC_ATTR_DEF' );
918 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 418, 'ADMIN_MARC_CODE' );
919 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 419, 'ADMIN_MAX_FINE_RULE' );
920 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 420, 'ADMIN_MERGE_PROFILE' );
921 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 421, 'ADMIN_ORG_UNIT_SETTING_TYPE' );
922 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 422, 'ADMIN_RECURRING_FINE_RULE' );
923 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 423, 'ADMIN_SERIAL_SUBSCRIPTION' );
924 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 424, 'ADMIN_STANDING_PENALTY' );
925 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 425, 'ADMIN_SURVEY' );
926 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 426, 'ADMIN_USER_REQUEST_TYPE' );
927 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 427, 'ADMIN_USER_SETTING_GROUP' );
928 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 428, 'ADMIN_USER_SETTING_TYPE' );
929 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 429, 'ADMIN_Z3950_SOURCE' );
930 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 430, 'CREATE_BIB_BTYPE' );
931 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 431, 'CREATE_BIBLIO_FINGERPRINT' );
932 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 432, 'CREATE_BIB_SOURCE' );
933 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 433, 'CREATE_BILLING_TYPE' );
934 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 434, 'CREATE_CN_BTYPE' );
935 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 435, 'CREATE_COPY_BTYPE' );
936 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 436, 'CREATE_INVOICE' );
937 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 437, 'CREATE_INVOICE_ITEM_TYPE' );
938 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 438, 'CREATE_INVOICE_METHOD' );
939 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 439, 'CREATE_MERGE_PROFILE' );
940 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 440, 'CREATE_METABIB_CLASS' );
941 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 441, 'CREATE_METABIB_SEARCH_ALIAS' );
942 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 442, 'CREATE_USER_BTYPE' );
943 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 443, 'DELETE_BIB_BTYPE' );
944 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 444, 'DELETE_BIBLIO_FINGERPRINT' );
945 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 445, 'DELETE_BIB_SOURCE' );
946 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 446, 'DELETE_BILLING_TYPE' );
947 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 447, 'DELETE_CN_BTYPE' );
948 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 448, 'DELETE_COPY_BTYPE' );
949 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 449, 'DELETE_INVOICE_ITEM_TYPE' );
950 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 450, 'DELETE_INVOICE_METHOD' );
951 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 451, 'DELETE_MERGE_PROFILE' );
952 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 452, 'DELETE_METABIB_CLASS' );
953 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 453, 'DELETE_METABIB_SEARCH_ALIAS' );
954 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 454, 'DELETE_USER_BTYPE' );
955 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 455, 'MANAGE_CLAIM' );
956 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 456, 'UPDATE_BIB_BTYPE' );
957 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 457, 'UPDATE_BIBLIO_FINGERPRINT' );
958 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 458, 'UPDATE_BIB_SOURCE' );
959 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 459, 'UPDATE_BILLING_TYPE' );
960 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 460, 'UPDATE_CN_BTYPE' );
961 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 461, 'UPDATE_COPY_BTYPE' );
962 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 462, 'UPDATE_INVOICE_ITEM_TYPE' );
963 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 463, 'UPDATE_INVOICE_METHOD' );
964 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 464, 'UPDATE_MERGE_PROFILE' );
965 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 465, 'UPDATE_METABIB_CLASS' );
966 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 466, 'UPDATE_METABIB_SEARCH_ALIAS' );
967 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 467, 'UPDATE_USER_BTYPE' );
968 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 468, 'user_request.create' );
969 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 469, 'user_request.delete' );
970 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 470, 'user_request.update' );
971 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 471, 'user_request.view' );
972 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 472, 'VIEW_ACQ_FUND_ALLOCATION_PERCENT' );
973 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 473, 'VIEW_CIRC_MATRIX_MATCHPOINT' );
974 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 474, 'VIEW_CLAIM' );
975 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 475, 'VIEW_GROUP_PENALTY_THRESHOLD' );
976 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 476, 'VIEW_HOLD_MATRIX_MATCHPOINT' );
977 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 477, 'VIEW_INVOICE' );
978 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 478, 'VIEW_MERGE_PROFILE' );
979 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 479, 'VIEW_SERIAL_SUBSCRIPTION' );
980 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 480, 'VIEW_STANDING_PENALTY' );
981
982 -- For every permission in the temp_perm table that has a matching
983 -- permission in the real table: record the original id.
984
985 UPDATE permission.temp_perm AS tp
986 SET old_id =
987         (
988                 SELECT id
989                 FROM permission.perm_list AS ppl
990                 WHERE ppl.code = tp.code
991         )
992 WHERE code IN ( SELECT code FROM permission.perm_list );
993
994 -- Start juggling ids.
995
996 -- If any permissions have negative ids (with the special exception of -1),
997 -- we need to move them into the positive range in order to avoid duplicate
998 -- key problems (since we are going to use the negative range as a temporary
999 -- staging area).
1000
1001 -- First, move any predefined permissions that have negative ids (again with
1002 -- the special exception of -1).  Temporarily give them positive ids based on
1003 -- the sequence.
1004
1005 UPDATE permission.perm_list
1006 SET id = NEXTVAL('permission.perm_list_id_seq'::regclass)
1007 WHERE id < -1
1008   AND code IN (SELECT code FROM permission.temp_perm);
1009
1010 -- Identify any non-predefined permissions whose ids are either negative
1011 -- or within the range (0-1000) reserved for predefined permissions.
1012 -- Assign them ids above 1000, based on the sequence.  Record the new
1013 -- ids in the temp_perm table.
1014
1015 INSERT INTO permission.temp_perm ( id, code, description, old_id, predefined )
1016 (
1017         SELECT NEXTVAL('permission.perm_list_id_seq'::regclass),
1018                 code, description, id, false
1019         FROM permission.perm_list
1020         WHERE  ( id < -1 OR id BETWEEN 0 AND 1000 )
1021         AND code NOT IN (SELECT code FROM permission.temp_perm)
1022 );
1023
1024 -- Now update the ids of those non-predefined permissions, using the
1025 -- values assigned in the previous step.
1026
1027 UPDATE permission.perm_list AS ppl
1028 SET id = (
1029                 SELECT id
1030                 FROM permission.temp_perm AS tp
1031                 WHERE tp.code = ppl.code
1032         )
1033 WHERE id IN ( SELECT old_id FROM permission.temp_perm WHERE NOT predefined );
1034
1035 -- Now the negative ids have been eliminated, except for -1.  Move all the
1036 -- predefined permissions temporarily into the negative range.
1037
1038 UPDATE permission.perm_list
1039 SET id = -1 - id
1040 WHERE id <> -1
1041 AND code IN ( SELECT code from permission.temp_perm WHERE predefined );
1042
1043 -- Apply the final ids to the existing predefined permissions.
1044
1045 UPDATE permission.perm_list AS ppl
1046 SET id =
1047         (
1048                 SELECT id
1049                 FROM permission.temp_perm AS tp
1050                 WHERE tp.code = ppl.code
1051         )
1052 WHERE
1053         id <> -1
1054         AND ppl.code IN
1055         (
1056                 SELECT code from permission.temp_perm
1057                 WHERE predefined
1058                 AND old_id IS NOT NULL
1059         );
1060
1061 -- If there are any predefined permissions that don't exist yet in
1062 -- permission.perm_list, insert them now.
1063
1064 INSERT INTO permission.perm_list ( id, code, description )
1065 (
1066         SELECT id, code, description
1067         FROM permission.temp_perm
1068         WHERE old_id IS NULL
1069 );
1070
1071 -- Reset the sequence to the lowest feasible value.  This may or may not
1072 -- accomplish anything, but it will do no harm.
1073
1074 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, GREATEST( 
1075         (SELECT MAX(id) FROM permission.perm_list), 1000 ));
1076
1077 -- If any permission lacks a description, use the code as a description.
1078 -- It's better than nothing.
1079
1080 UPDATE permission.perm_list
1081 SET description = code
1082 WHERE description IS NULL
1083    OR description = '';
1084
1085 -- Thus endeth the Great Renumbering.
1086
1087 -- Having massaged the permissions, massage the way they are assigned, by inserting
1088 -- rows into permission.grp_perm_map.  Some of these permissions may have already
1089 -- been assigned, so we insert the rows only if they aren't already there.
1090
1091 -- for backwards compat, give everyone the permission
1092 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1093     SELECT 1, id, 0, false FROM permission.perm_list AS perm
1094         WHERE code = 'HOLD_ITEM_CHECKED_OUT.override'
1095                 AND NOT EXISTS (
1096                         SELECT 1
1097                         FROM permission.grp_perm_map AS map
1098                         WHERE
1099                                 grp = 1
1100                                 AND map.perm = perm.id
1101                 );
1102
1103 -- Add trigger administration permissions to the Local System Administrator group.
1104 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1105     SELECT 10, id, 1, false FROM permission.perm_list AS perm
1106     WHERE (
1107                 perm.code LIKE 'ADMIN_TRIGGER%'
1108         OR perm.code LIKE 'CREATE_TRIGGER%'
1109         OR perm.code LIKE 'DELETE_TRIGGER%'
1110         OR perm.code LIKE 'UPDATE_TRIGGER%'
1111         ) AND NOT EXISTS (
1112                 SELECT 1
1113                 FROM permission.grp_perm_map AS map
1114                 WHERE
1115                         grp = 10
1116                         AND map.perm = perm.id
1117         );
1118
1119 -- View trigger permissions are required at a consortial level for initial setup
1120 -- (as before, only if the row doesn't already exist)
1121 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1122     SELECT 10, id, 0, false FROM permission.perm_list AS perm
1123         WHERE code LIKE 'VIEW_TRIGGER%'
1124                 AND NOT EXISTS (
1125                         SELECT 1
1126                         FROM permission.grp_perm_map AS map
1127                         WHERE
1128                                 grp = 10
1129                                 AND map.perm = perm.id
1130                 );
1131
1132 -- Permission for merging auth records may already be defined,
1133 -- so add it only if it isn't there.
1134 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1135     SELECT 4, id, 1, false FROM permission.perm_list AS perm
1136         WHERE code = 'MERGE_AUTH_RECORDS'
1137                 AND NOT EXISTS (
1138                         SELECT 1
1139                         FROM permission.grp_perm_map AS map
1140                         WHERE
1141                                 grp = 4
1142                                 AND map.perm = perm.id
1143                 );
1144
1145 -- Create a reference table as parent to both
1146 -- config.org_unit_setting_type and config_usr_setting_type
1147
1148 CREATE TABLE config.settings_group (
1149     name    TEXT PRIMARY KEY,
1150     label   TEXT UNIQUE NOT NULL -- I18N
1151 );
1152
1153 -- org_unit setting types
1154 CREATE TABLE config.org_unit_setting_type (
1155     name            TEXT    PRIMARY KEY,
1156     label           TEXT    UNIQUE NOT NULL,
1157     grp             TEXT    REFERENCES config.settings_group (name),
1158     description     TEXT,
1159     datatype        TEXT    NOT NULL DEFAULT 'string',
1160     fm_class        TEXT,
1161     view_perm       INT,
1162     update_perm     INT,
1163     --
1164     -- define valid datatypes
1165     --
1166     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1167     ( 'bool', 'integer', 'float', 'currency', 'interval',
1168       'date', 'string', 'object', 'array', 'link' ) ),
1169     --
1170     -- fm_class is meaningful only for 'link' datatype
1171     --
1172     CONSTRAINT coust_no_empty_link CHECK
1173     ( ( datatype =  'link' AND fm_class IS NOT NULL ) OR
1174       ( datatype <> 'link' AND fm_class IS NULL ) ),
1175         CONSTRAINT view_perm_fkey FOREIGN KEY (view_perm) REFERENCES permission.perm_list (id)
1176                 ON UPDATE CASCADE
1177                 ON DELETE RESTRICT
1178                 DEFERRABLE INITIALLY DEFERRED,
1179         CONSTRAINT update_perm_fkey FOREIGN KEY (update_perm) REFERENCES permission.perm_list (id)
1180                 ON UPDATE CASCADE
1181                 DEFERRABLE INITIALLY DEFERRED
1182 );
1183
1184 CREATE TABLE config.usr_setting_type (
1185
1186     name TEXT PRIMARY KEY,
1187     opac_visible BOOL NOT NULL DEFAULT FALSE,
1188     label TEXT UNIQUE NOT NULL,
1189     description TEXT,
1190     grp             TEXT    REFERENCES config.settings_group (name),
1191     datatype TEXT NOT NULL DEFAULT 'string',
1192     fm_class TEXT,
1193
1194     --
1195     -- define valid datatypes
1196     --
1197     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1198     ( 'bool', 'integer', 'float', 'currency', 'interval',
1199         'date', 'string', 'object', 'array', 'link' ) ),
1200
1201     --
1202     -- fm_class is meaningful only for 'link' datatype
1203     --
1204     CONSTRAINT coust_no_empty_link CHECK
1205     ( ( datatype = 'link' AND fm_class IS NOT NULL ) OR
1206         ( datatype <> 'link' AND fm_class IS NULL ) )
1207
1208 );
1209
1210 --------------------------------------
1211 -- Seed data for org_unit_setting_type
1212 --------------------------------------
1213
1214 INSERT into config.org_unit_setting_type
1215 ( name, label, description, datatype ) VALUES
1216
1217 ( 'auth.opac_timeout',
1218   'OPAC Inactivity Timeout (in seconds)',
1219   null,
1220   'integer' ),
1221
1222 ( 'auth.staff_timeout',
1223   'Staff Login Inactivity Timeout (in seconds)',
1224   null,
1225   'integer' ),
1226
1227 ( 'circ.lost_materials_processing_fee',
1228   'Lost Materials Processing Fee',
1229   null,
1230   'currency' ),
1231
1232 ( 'cat.default_item_price',
1233   'Default Item Price',
1234   null,
1235   'currency' ),
1236
1237 ( 'org.bounced_emails',
1238   'Sending email address for patron notices',
1239   null,
1240   'string' ),
1241
1242 ( 'circ.hold_expire_alert_interval',
1243   'Holds: Expire Alert Interval',
1244   'Amount of time before a hold expires at which point the patron should be alerted',
1245   'interval' ),
1246
1247 ( 'circ.hold_expire_interval',
1248   'Holds: Expire Interval',
1249   'Amount of time after a hold is placed before the hold expires.  Example "100 days"',
1250   'interval' ),
1251
1252 ( 'credit.payments.allow',
1253   'Allow Credit Card Payments',
1254   'If enabled, patrons will be able to pay fines accrued at this location via credit card',
1255   'bool' ),
1256
1257 ( 'global.default_locale',
1258   'Global Default Locale',
1259   null,
1260   'string' ),
1261
1262 ( 'circ.void_overdue_on_lost',
1263   'Void overdue fines when items are marked lost',
1264   null,
1265   'bool' ),
1266
1267 ( 'circ.hold_stalling.soft',
1268   'Holds: Soft stalling interval',
1269   'How long to wait before allowing remote items to be opportunisticaly captured for a hold.  Example "5 days"',
1270   'interval' ),
1271
1272 ( 'circ.hold_stalling_hard',
1273   'Holds: Hard stalling interval',
1274   '',
1275   'interval' ),
1276
1277 ( 'circ.hold_boundary.hard',
1278   'Holds: Hard boundary',
1279   null,
1280   'integer' ),
1281
1282 ( 'circ.hold_boundary.soft',
1283   'Holds: Soft boundary',
1284   null,
1285   'integer' ),
1286
1287 ( 'opac.barcode_regex',
1288   'Patron barcode format',
1289   'Regular expression defining the patron barcode format',
1290   'string' ),
1291
1292 ( 'global.password_regex',
1293   'Password format',
1294   'Regular expression defining the password format',
1295   'string' ),
1296
1297 ( 'circ.item_checkout_history.max',
1298   'Maximum previous checkouts displayed',
1299   'This is maximum number of previous circulations the staff client will display when investigating item details',
1300   'integer' ),
1301
1302 ( 'circ.reshelving_complete.interval',
1303   'Change reshelving status interval',
1304   'Amount of time to wait before changing an item from "reshelving" status to "available".  Examples "1 day", "6 hours"',
1305   'interval' ),
1306
1307 ( 'circ.holds.default_estimated_wait_interval',
1308   'Holds: Default Estimated Wait',
1309   '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.',
1310   'interval' ),
1311
1312 ( 'circ.holds.min_estimated_wait_interval',
1313   'Holds: Minimum Estimated Wait',
1314   '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.',
1315   'interval' ),
1316
1317 ( 'circ.selfcheck.patron_login_timeout',
1318   'Selfcheck: Patron Login Timeout (in seconds)',
1319   'Number of seconds of inactivity before the patron is logged out of the selfcheck interfacer',
1320   'integer' ),
1321
1322 ( 'circ.selfcheck.alert.popup',
1323   'Selfcheck: Pop-up alert for errors',
1324   'If true, checkout/renewal errors will cause a pop-up window in addition to the on-screen message',
1325   'bool' ),
1326
1327 ( 'circ.selfcheck.require_patron_password',
1328   'Selfcheck: Require patron password',
1329   'If true, patrons will be required to enter their password in addition to their username/barcode to log into the selfcheck interface',
1330   'bool' ),
1331
1332 ( 'global.juvenile_age_threshold',
1333   'Juvenile Age Threshold',
1334   'The age at which a user is no long considered a juvenile.  For example, "18 years".',
1335   'interval' ),
1336
1337 ( 'cat.bib.keep_on_empty',
1338   'Retain empty bib records',
1339   'Retain a bib record even when all attached copies are deleted',
1340   'bool' ),
1341
1342 ( 'cat.bib.alert_on_empty',
1343   'Alert on empty bib records',
1344   'Alert staff when the last copy for a record is being deleted',
1345   'bool' ),
1346
1347 ( 'patron.password.use_phone',
1348   'Patron: password from phone #',
1349   'Use the last 4 digits of the patrons phone number as the default password when creating new users',
1350   'bool' ),
1351
1352 ( 'circ.charge_on_damaged',
1353   'Charge item price when marked damaged',
1354   'Charge item price when marked damaged',
1355   'bool' ),
1356
1357 ( 'circ.charge_lost_on_zero',
1358   'Charge lost on zero',
1359   '',
1360   'bool' ),
1361
1362 ( 'circ.damaged_item_processing_fee',
1363   'Charge processing fee for damaged items',
1364   'Charge processing fee for damaged items',
1365   'currency' ),
1366
1367 ( 'circ.void_lost_on_checkin',
1368   'Circ: Void lost item billing when returned',
1369   'Void lost item billing when returned',
1370   'bool' ),
1371
1372 ( 'circ.max_accept_return_of_lost',
1373   'Circ: Void lost max interval',
1374   'Items that have been lost this long will not result in voided billings when returned.  E.g. ''6 months''',
1375   'interval' ),
1376
1377 ( 'circ.void_lost_proc_fee_on_checkin',
1378   'Circ: Void processing fee on lost item return',
1379   'Void processing fee when lost item returned',
1380   'bool' ),
1381
1382 ( 'circ.restore_overdue_on_lost_return',
1383   'Circ: Restore overdues on lost item return',
1384   'Restore overdue fines on lost item return',
1385   'bool' ),
1386
1387 ( 'circ.lost_immediately_available',
1388   'Circ: Lost items usable on checkin',
1389   'Lost items are usable on checkin instead of going ''home'' first',
1390   'bool' ),
1391
1392 ( 'circ.holds_fifo',
1393   'Holds: FIFO',
1394   'Force holds to a more strict First-In, First-Out capture',
1395   'bool' ),
1396
1397 ( 'opac.allow_pending_address',
1398   'OPAC: Allow pending addresses',
1399   'If enabled, patrons can create and edit existing addresses.  Addresses are kept in a pending state until staff approves the changes',
1400   'bool' ),
1401
1402 ( 'ui.circ.show_billing_tab_on_bills',
1403   'Show billing tab first when bills are present',
1404   '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',
1405   'bool' ),
1406
1407 ( 'ui.general.idle_timeout',
1408     'GUI: Idle timeout',
1409     '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).',
1410     'integer' ),
1411
1412 ( 'ui.circ.in_house_use.entry_cap',
1413   'GUI: Record In-House Use: Maximum # of uses allowed per entry.',
1414   'The # of uses entry in the Record In-House Use interface may not exceed the value of this setting.',
1415   'integer' ),
1416
1417 ( 'ui.circ.in_house_use.entry_warn',
1418   'GUI: Record In-House Use: # of uses threshold for Are You Sure? dialog.',
1419   'In the Record In-House Use interface, a submission attempt will warn if the # of uses field exceeds the value of this setting.',
1420   'integer' ),
1421
1422 ( 'acq.default_circ_modifier',
1423   'Default circulation modifier',
1424   null,
1425   'string' ),
1426
1427 ( 'acq.tmp_barcode_prefix',
1428   'Temporary barcode prefix',
1429   null,
1430   'string' ),
1431
1432 ( 'acq.tmp_callnumber_prefix',
1433   'Temporary call number prefix',
1434   null,
1435   'string' ),
1436
1437 ( 'ui.circ.patron_summary.horizontal',
1438   'Patron circulation summary is horizontal',
1439   null,
1440   'bool' ),
1441
1442 ( 'ui.staff.require_initials',
1443   oils_i18n_gettext('ui.staff.require_initials', 'GUI: Require staff initials for entry/edit of item/patron/penalty notes/messages.', 'coust', 'label'),
1444   oils_i18n_gettext('ui.staff.require_initials', 'Appends staff initials and edit date into note content.', 'coust', 'description'),
1445   'bool' ),
1446
1447 ( 'ui.general.button_bar',
1448   'Button bar',
1449   null,
1450   'bool' ),
1451
1452 ( 'circ.hold_shelf_status_delay',
1453   'Hold Shelf Status Delay',
1454   '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.',
1455   'interval' ),
1456
1457 ( 'circ.patron_invalid_address_apply_penalty',
1458   'Invalid patron address penalty',
1459   'When set, if a patron address is set to invalid, a penalty is applied.',
1460   'bool' ),
1461
1462 ( 'circ.checkout_fills_related_hold',
1463   'Checkout Fills Related Hold',
1464   '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',
1465   'bool'),
1466
1467 ( 'circ.selfcheck.auto_override_checkout_events',
1468   'Selfcheck override events list',
1469   'List of checkout/renewal events that the selfcheck interface should automatically override instead instead of alerting and stopping the transaction',
1470   'array' ),
1471
1472 ( 'circ.staff_client.do_not_auto_attempt_print',
1473   'Disable Automatic Print Attempt Type List',
1474   '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).',
1475   'array' ),
1476
1477 ( 'ui.patron.default_inet_access_level',
1478   'Default level of patrons'' internet access',
1479   null,
1480   'integer' ),
1481
1482 ( 'circ.max_patron_claim_return_count',
1483     'Max Patron Claims Returned Count',
1484     'When this count is exceeded, a staff override is required to mark the item as claims returned',
1485     'integer' ),
1486
1487 ( 'circ.obscure_dob',
1488     'Obscure the Date of Birth field',
1489     '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.',
1490     'bool' ),
1491
1492 ( 'circ.auto_hide_patron_summary',
1493     'GUI: Toggle off the patron summary sidebar after first view.',
1494     'When true, the patron summary sidebar will collapse after a new patron sub-interface is selected.',
1495     'bool' ),
1496
1497 ( 'credit.processor.default',
1498     'Credit card processing: Name default credit processor',
1499     'This can be "AuthorizeNet", "PayPal" (for the Website Payment Pro API), or "PayflowPro".',
1500     'string' ),
1501
1502 ( 'credit.processor.authorizenet.enabled',
1503     'Credit card processing: AuthorizeNet enabled',
1504     '',
1505     'bool' ),
1506
1507 ( 'credit.processor.authorizenet.login',
1508     'Credit card processing: AuthorizeNet login',
1509     '',
1510     'string' ),
1511
1512 ( 'credit.processor.authorizenet.password',
1513     'Credit card processing: AuthorizeNet password',
1514     '',
1515     'string' ),
1516
1517 ( 'credit.processor.authorizenet.server',
1518     'Credit card processing: AuthorizeNet server',
1519     'Required if using a developer/test account with AuthorizeNet',
1520     'string' ),
1521
1522 ( 'credit.processor.authorizenet.testmode',
1523     'Credit card processing: AuthorizeNet test mode',
1524     '',
1525     'bool' ),
1526
1527 ( 'credit.processor.paypal.enabled',
1528     'Credit card processing: PayPal enabled',
1529     '',
1530     'bool' ),
1531 ( 'credit.processor.paypal.login',
1532     'Credit card processing: PayPal login',
1533     '',
1534     'string' ),
1535 ( 'credit.processor.paypal.password',
1536     'Credit card processing: PayPal password',
1537     '',
1538     'string' ),
1539 ( 'credit.processor.paypal.signature',
1540     'Credit card processing: PayPal signature',
1541     '',
1542     'string' ),
1543 ( 'credit.processor.paypal.testmode',
1544     'Credit card processing: PayPal test mode',
1545     '',
1546     'bool' ),
1547
1548 ( 'ui.admin.work_log.max_entries',
1549     oils_i18n_gettext('ui.admin.work_log.max_entries', 'GUI: Work Log: Maximum Actions Logged', 'coust', 'label'),
1550     oils_i18n_gettext('ui.admin.work_log.max_entries', 'Maximum entries for "Most Recent Staff Actions" section of the Work Log interface.', 'coust', 'description'),
1551   'interval' ),
1552
1553 ( 'ui.admin.patron_log.max_entries',
1554     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'GUI: Work Log: Maximum Patrons Logged', 'coust', 'label'),
1555     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'Maximum entries for "Most Recently Affected Patrons..." section of the Work Log interface.', 'coust', 'description'),
1556   'interval' ),
1557
1558 ( 'lib.courier_code',
1559     oils_i18n_gettext('lib.courier_code', 'Courier Code', 'coust', 'label'),
1560     oils_i18n_gettext('lib.courier_code', 'Courier Code for the library.  Available in transit slip templates as the %courier_code% macro.', 'coust', 'description'),
1561     'string'),
1562
1563 ( 'circ.block_renews_for_holds',
1564     oils_i18n_gettext('circ.block_renews_for_holds', 'Holds: Block Renewal of Items Needed for Holds', 'coust', 'label'),
1565     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'),
1566     'bool' ),
1567
1568 ( 'circ.password_reset_request_per_user_limit',
1569     oils_i18n_gettext('circ.password_reset_request_per_user_limit', 'Circulation: Maximum concurrently active self-serve password reset requests per user', 'coust', 'label'),
1570     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'),
1571     'string'),
1572
1573 ( 'circ.password_reset_request_time_to_live',
1574     oils_i18n_gettext('circ.password_reset_request_time_to_live', 'Circulation: Self-serve password reset request time-to-live', 'coust', 'label'),
1575     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'),
1576     'string'),
1577
1578 ( 'circ.password_reset_request_throttle',
1579     oils_i18n_gettext('circ.password_reset_request_throttle', 'Circulation: Maximum concurrently active self-serve password reset requests', 'coust', 'label'),
1580     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'),
1581     'string')
1582 ;
1583
1584 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1585         'ui.circ.suppress_checkin_popups',
1586         oils_i18n_gettext(
1587             'ui.circ.suppress_checkin_popups', 
1588             'Circ: Suppress popup-dialogs during check-in.', 
1589             'coust', 
1590             'label'),
1591         oils_i18n_gettext(
1592             'ui.circ.suppress_checkin_popups', 
1593             'Circ: Suppress popup-dialogs during check-in.', 
1594             'coust', 
1595             'description'),
1596         'bool'
1597 );
1598
1599 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1600         'format.date',
1601         oils_i18n_gettext(
1602             'format.date',
1603             'GUI: Format Dates with this pattern.', 
1604             'coust', 
1605             'label'),
1606         oils_i18n_gettext(
1607             'format.date',
1608             'GUI: Format Dates with this pattern (examples: "yyyy-MM-dd" for "2010-04-26", "MMM d, yyyy" for "Apr 26, 2010")', 
1609             'coust', 
1610             'description'),
1611         'string'
1612 ), (
1613         'format.time',
1614         oils_i18n_gettext(
1615             'format.time',
1616             'GUI: Format Times with this pattern.', 
1617             'coust', 
1618             'label'),
1619         oils_i18n_gettext(
1620             'format.time',
1621             '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")', 
1622             'coust', 
1623             'description'),
1624         'string'
1625 );
1626
1627 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1628         'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1629         oils_i18n_gettext(
1630             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1631             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1632             'coust', 
1633             'label'),
1634         oils_i18n_gettext(
1635             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1636             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1637             'coust', 
1638             'description'),
1639         'bool'
1640 );
1641
1642 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1643         'url.remote_column_settings',
1644         oils_i18n_gettext(
1645             'url.remote_column_settings',
1646             'GUI: URL for remote directory containing list column settings.', 
1647             'coust', 
1648             'label'),
1649         oils_i18n_gettext(
1650             'url.remote_column_settings',
1651             '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.', 
1652             'coust', 
1653             'description'),
1654         'string'
1655 );
1656
1657 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1658         'gui.disable_local_save_columns',
1659         oils_i18n_gettext(
1660             'gui.disable_local_save_columns',
1661             'GUI: Disable the ability to save list column configurations locally.', 
1662             'coust', 
1663             'label'),
1664         oils_i18n_gettext(
1665             'gui.disable_local_save_columns',
1666             '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.', 
1667             'coust', 
1668             'description'),
1669         'bool'
1670 );
1671
1672 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1673         'circ.password_reset_request_requires_matching_email',
1674         oils_i18n_gettext(
1675             'circ.password_reset_request_requires_matching_email',
1676             'Circulation: Require matching email address for password reset requests', 
1677             'coust', 
1678             'label'),
1679         oils_i18n_gettext(
1680             'circ.password_reset_request_requires_matching_email',
1681             'Circulation: Require matching email address for password reset requests', 
1682             'coust', 
1683             'description'),
1684         'bool'
1685 );
1686
1687 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1688         'circ.holds.expired_patron_block',
1689         oils_i18n_gettext(
1690             'circ.holds.expired_patron_block',
1691             'Circulation: Block hold request if hold recipient privileges have expired', 
1692             'coust', 
1693             'label'),
1694         oils_i18n_gettext(
1695             'circ.holds.expired_patron_block',
1696             'Circulation: Block hold request if hold recipient privileges have expired', 
1697             'coust', 
1698             'description'),
1699         'bool'
1700 );
1701
1702 INSERT INTO config.org_unit_setting_type
1703     (name, label, description, datatype) VALUES (
1704         'circ.booking_reservation.default_elbow_room',
1705         oils_i18n_gettext(
1706             'circ.booking_reservation.default_elbow_room',
1707             'Booking: Elbow room',
1708             'coust',
1709             'label'
1710         ),
1711         oils_i18n_gettext(
1712             'circ.booking_reservation.default_elbow_room',
1713             '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.',
1714             'coust',
1715             'label'
1716         ),
1717         'interval'
1718     );
1719
1720 -- Org_unit_setting_type(s) that need an fm_class:
1721 INSERT into config.org_unit_setting_type
1722 ( name, label, description, datatype, fm_class ) VALUES
1723 ( 'acq.default_copy_location',
1724   'Default copy location',
1725   null,
1726   'link',
1727   'acpl' );
1728
1729 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1730     'circ.holds.org_unit_target_weight',
1731     'Holds: Org Unit Target Weight',
1732     '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.',
1733     'integer'
1734 );
1735
1736 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1737     'circ.holds.target_holds_by_org_unit_weight',
1738     'Holds: Use weight-based hold targeting',
1739     'Use library weight based hold targeting',
1740     'bool'
1741 );
1742
1743 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1744     'circ.holds.max_org_unit_target_loops',
1745     'Holds: Maximum library target attempts',
1746     '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',
1747     'integer'
1748 );
1749
1750
1751 -- Org setting for overriding the circ lib of a precat copy
1752 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1753     'circ.pre_cat_copy_circ_lib',
1754     'Pre-cat Item Circ Lib',
1755     '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',
1756     'string'
1757 );
1758
1759 -- Circ auto-renew interval setting
1760 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1761     'circ.checkout_auto_renew_age',
1762     'Checkout auto renew age',
1763     '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',
1764     'interval'
1765 );
1766
1767 -- Setting for behind the desk hold pickups
1768 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1769     'circ.holds.behind_desk_pickup_supported',
1770     'Holds: Behind Desk Pickup Supported',
1771     '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',
1772     'bool'
1773 );
1774
1775 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1776         'acq.holds.allow_holds_from_purchase_request',
1777         oils_i18n_gettext(
1778             'acq.holds.allow_holds_from_purchase_request', 
1779             'Allows patrons to create automatic holds from purchase requests.', 
1780             'coust', 
1781             'label'),
1782         oils_i18n_gettext(
1783             'acq.holds.allow_holds_from_purchase_request', 
1784             'Allows patrons to create automatic holds from purchase requests.', 
1785             'coust', 
1786             'description'),
1787         'bool'
1788 );
1789
1790 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1791     'circ.holds.target_skip_me',
1792     'Skip For Hold Targeting',
1793     'When true, don''t target any copies at this org unit for holds',
1794     'bool'
1795 );
1796
1797 -- claims returned mark item missing 
1798 INSERT INTO
1799     config.org_unit_setting_type ( name, label, description, datatype )
1800     VALUES (
1801         'circ.claim_return.mark_missing',
1802         'Claim Return: Mark copy as missing', 
1803         'When a circ is marked as claims-returned, also mark the copy as missing',
1804         'bool'
1805     );
1806
1807 -- claims never checked out mark item missing 
1808 INSERT INTO
1809     config.org_unit_setting_type ( name, label, description, datatype )
1810     VALUES (
1811         'circ.claim_never_checked_out.mark_missing',
1812         'Claim Never Checked Out: Mark copy as missing', 
1813         'When a circ is marked as claims-never-checked-out, mark the copy as missing',
1814         'bool'
1815     );
1816
1817 -- mark damaged void overdue setting
1818 INSERT INTO
1819     config.org_unit_setting_type ( name, label, description, datatype )
1820     VALUES (
1821         'circ.damaged.void_ovedue',
1822         'Mark item damaged voids overdues',
1823         'When an item is marked damaged, overdue fines on the most recent circulation are voided.',
1824         'bool'
1825     );
1826
1827 -- hold cancel display limits
1828 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1829     VALUES (
1830         'circ.holds.canceled.display_count',
1831         'Holds: Canceled holds display count',
1832         'How many canceled holds to show in patron holds interfaces',
1833         'integer'
1834     );
1835
1836 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1837     VALUES (
1838         'circ.holds.canceled.display_age',
1839         'Holds: Canceled holds display age',
1840         'Show all canceled holds that were canceled within this amount of time',
1841         'interval'
1842     );
1843
1844 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1845     VALUES (
1846         'circ.holds.uncancel.reset_request_time',
1847         'Holds: Reset request time on un-cancel',
1848         'When a holds is uncanceled, reset the request time to push it to the end of the queue',
1849         'bool'
1850     );
1851
1852 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
1853     VALUES (
1854         'circ.holds.default_shelf_expire_interval',
1855         'Default hold shelf expire interval',
1856         '',
1857         'interval'
1858 );
1859
1860 INSERT INTO config.org_unit_setting_type (name, label, description, datatype, fm_class)
1861     VALUES (
1862         'circ.claim_return.copy_status', 
1863         'Claim Return Copy Status', 
1864         'Claims returned copies are put into this status.  Default is to leave the copy in the Checked Out status',
1865         'link', 
1866         'ccs' 
1867     );
1868
1869 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
1870     VALUES ( 
1871         'circ.max_fine.cap_at_price',
1872         oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
1873         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'),
1874         'bool' 
1875     );
1876
1877 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) 
1878     VALUES ( 
1879         'circ.holds.clear_shelf.copy_status',
1880         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Holds: Clear shelf copy status', 'coust', 'label'),
1881         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'),
1882         'link',
1883         'ccs'
1884     );
1885
1886 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1887     VALUES ( 
1888         'circ.selfcheck.workstation_required',
1889         oils_i18n_gettext('circ.selfcheck.workstation_required', 'Selfcheck: Workstation Required', 'coust', 'label'),
1890         oils_i18n_gettext('circ.selfcheck.workstation_required', 'All selfcheck stations must use a workstation', 'coust', 'description'),
1891         'bool'
1892     ), (
1893         'circ.selfcheck.patron_password_required',
1894         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Selfcheck: Require Patron Password', 'coust', 'label'),
1895         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Patron must log in with barcode and password at selfcheck station', 'coust', 'description'),
1896         'bool'
1897     );
1898
1899 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1900     VALUES ( 
1901         'circ.selfcheck.alert.sound',
1902         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Selfcheck: Audio Alerts', 'coust', 'label'),
1903         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Use audio alerts for selfcheck events', 'coust', 'description'),
1904         'bool'
1905     );
1906
1907 INSERT INTO
1908     config.org_unit_setting_type (name, label, description, datatype)
1909     VALUES (
1910         'notice.telephony.callfile_lines',
1911         'Telephony: Arbitrary line(s) to include in each notice callfile',
1912         $$
1913         This overrides lines from opensrf.xml.
1914         Line(s) must be valid for your target server and platform
1915         (e.g. Asterisk 1.4).
1916         $$,
1917         'string'
1918     );
1919
1920 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1921     VALUES ( 
1922         'circ.offline.username_allowed',
1923         oils_i18n_gettext('circ.offline.username_allowed', 'Offline: Patron Usernames Allowed', 'coust', 'label'),
1924         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'),
1925         'bool'
1926     );
1927
1928 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1929 VALUES (
1930     'acq.fund.balance_limit.warn',
1931     oils_i18n_gettext('acq.fund.balance_limit.warn', 'Fund Spending Limit for Warning', 'coust', 'label'),
1932     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'),
1933     'integer'
1934 );
1935
1936 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1937 VALUES (
1938     'acq.fund.balance_limit.block',
1939     oils_i18n_gettext('acq.fund.balance_limit.block', 'Fund Spending Limit for Block', 'coust', 'label'),
1940     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'),
1941     'integer'
1942 );
1943
1944 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1945     VALUES (
1946         'circ.holds.hold_has_copy_at.alert',
1947         oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', 'Holds: Has Local Copy Alert', 'coust', 'label'),
1948         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'),
1949         'bool'
1950     ),(
1951         'circ.holds.hold_has_copy_at.block',
1952         oils_i18n_gettext('circ.holds.hold_has_copy_at.block', 'Holds: Has Local Copy Block', 'coust', 'label'),
1953         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'),
1954         'bool'
1955     );
1956
1957 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1958 VALUES (
1959     'auth.persistent_login_interval',
1960     oils_i18n_gettext('auth.persistent_login_interval', 'Persistent Login Duration', 'coust', 'label'),
1961     oils_i18n_gettext('auth.persistent_login_interval', 'How long a persistent login lasts.  E.g. ''2 weeks''', 'coust', 'description'),
1962     'interval'
1963 );
1964
1965 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1966         'cat.marc_control_number_identifier',
1967         oils_i18n_gettext(
1968             'cat.marc_control_number_identifier', 
1969             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
1970             'coust', 
1971             'label'),
1972         oils_i18n_gettext(
1973             'cat.marc_control_number_identifier', 
1974             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
1975             'coust', 
1976             'description'),
1977         'string'
1978 );
1979
1980 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) 
1981     VALUES (
1982         'circ.selfcheck.block_checkout_on_copy_status',
1983         oils_i18n_gettext(
1984             'circ.selfcheck.block_checkout_on_copy_status',
1985             'Selfcheck: Block copy checkout status',
1986             'coust',
1987             'label'
1988         ),
1989         oils_i18n_gettext(
1990             'circ.selfcheck.block_checkout_on_copy_status',
1991             'List of copy status IDs that will block checkout even if the generic COPY_NOT_AVAILABLE event is overridden',
1992             'coust',
1993             'description'
1994         ),
1995         'array'
1996     );
1997
1998 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
1999 VALUES (
2000     'serial.prev_issuance_copy_location',
2001     oils_i18n_gettext(
2002         'serial.prev_issuance_copy_location',
2003         'Serials: Previous Issuance Copy Location',
2004         'coust',
2005         'label'
2006     ),
2007     oils_i18n_gettext(
2008         'serial.prev_issuance_copy_location',
2009         'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
2010         'coust',
2011         'descripton'
2012         ),
2013     'link',
2014     'acpl'
2015 );
2016
2017 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
2018 VALUES (
2019     'cat.default_classification_scheme',
2020     oils_i18n_gettext(
2021         'cat.default_classification_scheme',
2022         'Cataloging: Default Classification Scheme',
2023         'coust',
2024         'label'
2025     ),
2026     oils_i18n_gettext(
2027         'cat.default_classification_scheme',
2028         'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
2029         'coust',
2030         'descripton'
2031         ),
2032     'link',
2033     'acnc'
2034 );
2035
2036 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2037         'opac.org_unit_hiding.depth',
2038         oils_i18n_gettext(
2039             'opac.org_unit_hiding.depth',
2040             'OPAC: Org Unit Hiding Depth', 
2041             'coust', 
2042             'label'),
2043         oils_i18n_gettext(
2044             'opac.org_unit_hiding.depth',
2045             '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.', 
2046             'coust', 
2047             'description'),
2048         'integer'
2049 );
2050
2051 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2052     VALUES 
2053         ('circ.holds.alert_if_local_avail',
2054          'Holds: Local available alert',
2055          'If local copy is available, alert the person making the hold',
2056          'bool'),
2057
2058         ('circ.holds.deny_if_local_avail',
2059          'Holds: Local available block',
2060          'If local copy is available, deny the creation of the hold',
2061          'bool')
2062     ;
2063
2064 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2065     VALUES ( 
2066         'circ.holds.clear_shelf.no_capture_holds',
2067         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'Holds: Bypass hold capture during clear shelf process', 'coust', 'label'),
2068         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'During the clear shelf process, avoid capturing new holds on cleared items.', 'coust', 'description'),
2069         'bool'
2070     );
2071
2072 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
2073     'circ.booking_reservation.stop_circ',
2074     'Disallow circulation of items when they are on booking reserve and that reserve overlaps with the checkout period',
2075     'When true, items on booking reserve during the proposed checkout period will not be allowed to circulate unless overridden with the COPY_RESERVED.override permission.',
2076     'bool'
2077 );
2078
2079 ---------------------------------
2080 -- Seed data for usr_setting_type
2081 ----------------------------------
2082
2083 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2084     VALUES ('opac.default_font', TRUE, 'OPAC Font Size', 'OPAC Font Size', 'string');
2085
2086 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2087     VALUES ('opac.default_search_depth', TRUE, 'OPAC Search Depth', 'OPAC Search Depth', 'integer');
2088
2089 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2090     VALUES ('opac.default_search_location', TRUE, 'OPAC Search Location', 'OPAC Search Location', 'integer');
2091
2092 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2093     VALUES ('opac.hits_per_page', TRUE, 'Hits per Page', 'Hits per Page', 'string');
2094
2095 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2096     VALUES ('opac.hold_notify', TRUE, 'Hold Notification Format', 'Hold Notification Format', 'string');
2097
2098 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2099     VALUES ('staff_client.catalog.record_view.default', TRUE, 'Default Record View', 'Default Record View', 'string');
2100
2101 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2102     VALUES ('staff_client.copy_editor.templates', TRUE, 'Copy Editor Template', 'Copy Editor Template', 'object');
2103
2104 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2105     VALUES ('circ.holds_behind_desk', FALSE, 'Hold is behind Circ Desk', 'Hold is behind Circ Desk', 'bool');
2106
2107 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2108     VALUES (
2109         'history.circ.retention_age',
2110         TRUE,
2111         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','label'),
2112         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','description'),
2113         'interval'
2114     ),(
2115         'history.circ.retention_start',
2116         FALSE,
2117         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','label'),
2118         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','description'),
2119         'date'
2120     );
2121
2122 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2123     VALUES (
2124         'history.hold.retention_age',
2125         TRUE,
2126         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','label'),
2127         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','description'),
2128         'interval'
2129     ),(
2130         'history.hold.retention_start',
2131         TRUE,
2132         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','label'),
2133         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','description'),
2134         'interval'
2135     ),(
2136         'history.hold.retention_count',
2137         TRUE,
2138         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','label'),
2139         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','description'),
2140         'integer'
2141     );
2142
2143 INSERT INTO config.usr_setting_type (name, opac_visible, label, description, datatype)
2144     VALUES (
2145         'opac.default_sort',
2146         TRUE,
2147         oils_i18n_gettext(
2148             'opac.default_sort',
2149             'OPAC Default Search Sort',
2150             'cust',
2151             'label'
2152         ),
2153         oils_i18n_gettext(
2154             'opac.default_sort',
2155             'OPAC Default Search Sort',
2156             'cust',
2157             'description'
2158         ),
2159         'string'
2160     );
2161
2162 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
2163         'circ.missing_pieces.copy_status',
2164         oils_i18n_gettext(
2165             'circ.missing_pieces.copy_status',
2166             'Circulation: Item Status for Missing Pieces',
2167             'coust',
2168             'label'),
2169         oils_i18n_gettext(
2170             'circ.missing_pieces.copy_status',
2171             'This is the Item Status to use for items that have been marked or scanned as having Missing Pieces.  In absense of this setting, the Damaged status is used.',
2172             'coust',
2173             'description'),
2174         'link',
2175         'ccs'
2176 );
2177
2178 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2179         'circ.do_not_tally_claims_returned',
2180         oils_i18n_gettext(
2181             'circ.do_not_tally_claims_returned',
2182             'Circulation: Do not include outstanding Claims Returned circulations in lump sum tallies in Patron Display.',
2183             'coust',
2184             'label'),
2185         oils_i18n_gettext(
2186             'circ.do_not_tally_claims_returned',
2187             '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.',
2188             'coust',
2189             'description'),
2190         'bool'
2191 );
2192
2193 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2194     VALUES
2195         ('cat.label.font.size',
2196             oils_i18n_gettext('cat.label.font.size',
2197                 'Cataloging: Spine and pocket label font size', 'coust', 'label'),
2198             oils_i18n_gettext('cat.label.font.size',
2199                 'Set the default font size for spine and pocket labels', 'coust', 'description'),
2200             'integer'
2201         )
2202         ,('cat.label.font.family',
2203             oils_i18n_gettext('cat.label.font.family',
2204                 'Cataloging: Spine and pocket label font family', 'coust', 'label'),
2205             oils_i18n_gettext('cat.label.font.family',
2206                 '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".',
2207                 'coust', 'description'),
2208             'string'
2209         )
2210         ,('cat.spine.line.width',
2211             oils_i18n_gettext('cat.spine.line.width',
2212                 'Cataloging: Spine label line width', 'coust', 'label'),
2213             oils_i18n_gettext('cat.spine.line.width',
2214                 'Set the default line width for spine labels in number of characters. This specifies the boundary at which lines must be wrapped.',
2215                 'coust', 'description'),
2216             'integer'
2217         )
2218         ,('cat.spine.line.height',
2219             oils_i18n_gettext('cat.spine.line.height',
2220                 'Cataloging: Spine label maximum lines', 'coust', 'label'),
2221             oils_i18n_gettext('cat.spine.line.height',
2222                 'Set the default maximum number of lines for spine labels.',
2223                 'coust', 'description'),
2224             'integer'
2225         )
2226         ,('cat.spine.line.margin',
2227             oils_i18n_gettext('cat.spine.line.margin',
2228                 'Cataloging: Spine label left margin', 'coust', 'label'),
2229             oils_i18n_gettext('cat.spine.line.margin',
2230                 'Set the left margin for spine labels in number of characters.',
2231                 'coust', 'description'),
2232             'integer'
2233         )
2234 ;
2235
2236 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2237     VALUES
2238         ('cat.label.font.weight',
2239             oils_i18n_gettext('cat.label.font.weight',
2240                 'Cataloging: Spine and pocket label font weight', 'coust', 'label'),
2241             oils_i18n_gettext('cat.label.font.weight',
2242                 'Set the preferred font weight for spine and pocket labels. You can specify "normal", "bold", "bolder", or "lighter".',
2243                 'coust', 'description'),
2244             'string'
2245         )
2246 ;
2247
2248 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2249         'circ.patron_edit.clone.copy_address',
2250         oils_i18n_gettext(
2251             'circ.patron_edit.clone.copy_address',
2252             'Patron Registration: Cloned patrons get address copy',
2253             'coust',
2254             'label'
2255         ),
2256         oils_i18n_gettext(
2257             'circ.patron_edit.clone.copy_address',
2258             'In the Patron editor, copy addresses from the cloned user instead of linking directly to the address',
2259             'coust',
2260             'description'
2261         ),
2262         'bool'
2263 );
2264
2265 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
2266         'ui.patron.default_ident_type',
2267         oils_i18n_gettext(
2268             'ui.patron.default_ident_type',
2269             'GUI: Default Ident Type for Patron Registration',
2270             'coust',
2271             'label'),
2272         oils_i18n_gettext(
2273             'ui.patron.default_ident_type',
2274             'This is the default Ident Type for new users in the patron editor.',
2275             'coust',
2276             'description'),
2277         'link',
2278         'cit'
2279 );
2280
2281 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2282         'ui.patron.default_country',
2283         oils_i18n_gettext(
2284             'ui.patron.default_country',
2285             'GUI: Default Country for New Addresses in Patron Editor',
2286             'coust',
2287             'label'),
2288         oils_i18n_gettext(
2289             'ui.patron.default_country',
2290             'This is the default Country for new addresses in the patron editor.',
2291             'coust',
2292             'description'),
2293         'string'
2294 );
2295
2296 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2297         'ui.patron.registration.require_address',
2298         oils_i18n_gettext(
2299             'ui.patron.registration.require_address',
2300             'GUI: Require at least one address for Patron Registration',
2301             'coust',
2302             'label'),
2303         oils_i18n_gettext(
2304             'ui.patron.registration.require_address',
2305             'Enforces a requirement for having at least one address for a patron during registration.',
2306             'coust',
2307             'description'),
2308         'bool'
2309 );
2310
2311 INSERT INTO config.org_unit_setting_type (
2312     name, label, description, datatype
2313 ) VALUES
2314     ('credit.processor.payflowpro.enabled',
2315         'Credit card processing: Enable PayflowPro payments',
2316         'This is NOT the same thing as the settings labeled with just "PayPal."',
2317         'bool'
2318     ),
2319     ('credit.processor.payflowpro.login',
2320         'Credit card processing: PayflowPro login/merchant ID',
2321         'Often the same thing as the PayPal manager login',
2322         'string'
2323     ),
2324     ('credit.processor.payflowpro.password',
2325         'Credit card processing: PayflowPro password',
2326         'PayflowPro password',
2327         'string'
2328     ),
2329     ('credit.processor.payflowpro.testmode',
2330         'Credit card processing: PayflowPro test mode',
2331         'Do not really process transactions, but stay in test mode - uses pilot-payflowpro.paypal.com instead of the usual host',
2332         'bool'
2333     ),
2334     ('credit.processor.payflowpro.vendor',
2335         'Credit card processing: PayflowPro vendor',
2336         'Often the same thing as the login',
2337         'string'
2338     ),
2339     ('credit.processor.payflowpro.partner',
2340         'Credit card processing: PayflowPro partner',
2341         'Often "PayPal" or "VeriSign", sometimes others',
2342         'string'
2343     );
2344
2345 -- Patch the name of an old selfcheck setting
2346 UPDATE actor.org_unit_setting
2347     SET name = 'circ.selfcheck.alert.popup'
2348     WHERE name = 'circ.selfcheck.alert_on_checkout_event';
2349
2350 -- Rename certain existing org_unit settings, if present,
2351 -- and make sure their values are JSON
2352 UPDATE actor.org_unit_setting SET
2353     name = 'circ.holds.default_estimated_wait_interval',
2354     --
2355     -- The value column should be JSON.  The old value should be a number,
2356     -- but it may or may not be quoted.  The following CASE behaves
2357     -- differently depending on whether value is quoted.  It is simplistic,
2358     -- and will be defeated by leading or trailing white space, or various
2359     -- malformations.
2360     --
2361     value = CASE WHEN SUBSTR( value, 1, 1 ) = '"'
2362                 THEN '"' || SUBSTR( value, 2, LENGTH(value) - 2 ) || ' days"'
2363                 ELSE '"' || value || ' days"'
2364             END
2365 WHERE name = 'circ.hold_estimate_wait_interval';
2366
2367 -- Create types for existing org unit settings
2368 -- not otherwise accounted for
2369
2370 INSERT INTO config.org_unit_setting_type(
2371  name,
2372  label,
2373  description
2374 )
2375 SELECT DISTINCT
2376         name,
2377         name,
2378         'FIXME'
2379 FROM
2380         actor.org_unit_setting
2381 WHERE
2382         name NOT IN (
2383                 SELECT name
2384                 FROM config.org_unit_setting_type
2385         );
2386
2387 -- Add foreign key to org_unit_setting
2388
2389 ALTER TABLE actor.org_unit_setting
2390         ADD FOREIGN KEY (name) REFERENCES config.org_unit_setting_type (name)
2391                 DEFERRABLE INITIALLY DEFERRED;
2392
2393 -- Create types for existing user settings
2394 -- not otherwise accounted for
2395
2396 INSERT INTO config.usr_setting_type (
2397         name,
2398         label,
2399         description
2400 )
2401 SELECT DISTINCT
2402         name,
2403         name,
2404         'FIXME'
2405 FROM
2406         actor.usr_setting
2407 WHERE
2408         name NOT IN (
2409                 SELECT name
2410                 FROM config.usr_setting_type
2411         );
2412
2413 -- Add foreign key to user_setting_type
2414
2415 ALTER TABLE actor.usr_setting
2416         ADD FOREIGN KEY (name) REFERENCES config.usr_setting_type (name)
2417                 ON DELETE CASCADE ON UPDATE CASCADE
2418                 DEFERRABLE INITIALLY DEFERRED;
2419
2420 INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES
2421     (1, 'cat.spine.line.margin', 0)
2422     ,(1, 'cat.spine.line.height', 9)
2423     ,(1, 'cat.spine.line.width', 8)
2424     ,(1, 'cat.label.font.family', '"monospace"')
2425     ,(1, 'cat.label.font.size', 10)
2426     ,(1, 'cat.label.font.weight', '"normal"')
2427 ;
2428
2429 ALTER TABLE action_trigger.event_definition ADD COLUMN granularity TEXT;
2430 ALTER TABLE action_trigger.event ADD COLUMN async_output BIGINT REFERENCES action_trigger.event_output (id);
2431 ALTER TABLE action_trigger.event_definition ADD COLUMN usr_field TEXT;
2432 ALTER TABLE action_trigger.event_definition ADD COLUMN opt_in_setting TEXT REFERENCES config.usr_setting_type (name) DEFERRABLE INITIALLY DEFERRED;
2433
2434 CREATE OR REPLACE FUNCTION is_json( TEXT ) RETURNS BOOL AS $f$
2435     use JSON::XS;
2436     my $json = shift();
2437     eval { JSON::XS->new->allow_nonref->decode( $json ) };
2438     return $@ ? 0 : 1;
2439 $f$ LANGUAGE PLPERLU;
2440
2441 ALTER TABLE action_trigger.event ADD COLUMN user_data TEXT CHECK (user_data IS NULL OR is_json( user_data ));
2442
2443 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2444     'hold_request.cancel.expire_no_target',
2445     'ahr',
2446     'A hold is cancelled because no copies were found'
2447 );
2448
2449 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2450     'hold_request.cancel.expire_holds_shelf',
2451     'ahr',
2452     'A hold is cancelled becuase it was on the holds shelf too long'
2453 );
2454
2455 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2456     'hold_request.cancel.staff',
2457     'ahr',
2458     'A hold is cancelled becuase it was cancelled by staff'
2459 );
2460
2461 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2462     'hold_request.cancel.patron',
2463     'ahr',
2464     'A hold is cancelled by the patron'
2465 );
2466
2467 -- Fix typos in descriptions
2468 UPDATE action_trigger.hook SET description = 'A hold is successfully placed' WHERE key = 'hold_request.success';
2469 UPDATE action_trigger.hook SET description = 'A hold is attempted but not successfully placed' WHERE key = 'hold_request.failure';
2470
2471 -- Add a hook for renewals
2472 INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('renewal','circ','Item renewed to user');
2473
2474 INSERT INTO action_trigger.validator (module,description) VALUES ('MaxPassiveDelayAge','Check that the event is not too far past the delay_field time -- requires a max_delay_age interval parameter');
2475
2476 -- Sample Pre-due Notice --
2477
2478 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, template) 
2479     VALUES (6, 'f', 1, '3 Day Courtesy Notice', 'checkout.due', 'CircIsOpen', 'SendEmail', '-3 days', 'due_date', 'usr', 
2480 $$
2481 [%- USE date -%]
2482 [%- user = target.0.usr -%]
2483 To: [%- params.recipient_email || user.email %]
2484 From: [%- params.sender_email || default_sender %]
2485 Subject: Courtesy Notice
2486
2487 Dear [% user.family_name %], [% user.first_given_name %]
2488 As a reminder, the following items are due in 3 days.
2489
2490 [% FOR circ IN target %]
2491     Title: [% circ.target_copy.call_number.record.simple_record.title %] 
2492     Barcode: [% circ.target_copy.barcode %] 
2493     Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
2494     Item Cost: [% helpers.get_copy_price(circ.target_copy) %]
2495     Library: [% circ.circ_lib.name %]
2496     Library Phone: [% circ.circ_lib.phone %]
2497 [% END %]
2498
2499 $$);
2500
2501 INSERT INTO action_trigger.environment (event_def, path) VALUES 
2502     (6, 'target_copy.call_number.record.simple_record'),
2503     (6, 'usr'),
2504     (6, 'circ_lib.billing_address');
2505
2506 INSERT INTO action_trigger.event_params (event_def, param, value) VALUES
2507     (6, 'max_delay_age', '"1 day"');
2508
2509 -- also add the max delay age to the default overdue notice event def
2510 INSERT INTO action_trigger.event_params (event_def, param, value) VALUES
2511     (1, 'max_delay_age', '"1 day"');
2512   
2513 INSERT INTO action_trigger.validator (module,description) VALUES ('MinPassiveTargetAge','Check that the target is old enough to be used by this event -- requires a min_target_age interval parameter, and accepts an optional target_age_field to specify what time to use for offsetting');
2514
2515 INSERT INTO action_trigger.reactor (module,description) VALUES ('ApplyPatronPenalty','Applies the conifigured 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.');
2516
2517 INSERT INTO action_trigger.hook (
2518         key,
2519         core_type,
2520         description,
2521         passive
2522     ) VALUES (
2523         'hold_request.shelf_expires_soon',
2524         'ahr',
2525         'A hold on the shelf will expire there soon.',
2526         TRUE
2527     );
2528
2529 INSERT INTO action_trigger.event_definition (
2530         id,
2531         active,
2532         owner,
2533         name,
2534         hook,
2535         validator,
2536         reactor,
2537         delay,
2538         delay_field,
2539         group_field,
2540         template
2541     ) VALUES (
2542         7,
2543         FALSE,
2544         1,
2545         'Hold Expires from Shelf Soon',
2546         'hold_request.shelf_expires_soon',
2547         'HoldIsAvailable',
2548         'SendEmail',
2549         '- 1 DAY',
2550         'shelf_expire_time',
2551         'usr',
2552 $$
2553 [%- USE date -%]
2554 [%- user = target.0.usr -%]
2555 To: [%- params.recipient_email || user.email %]
2556 From: [%- params.sender_email || default_sender %]
2557 Subject: Hold Available Notification
2558
2559 Dear [% user.family_name %], [% user.first_given_name %]
2560 You requested holds on the following item(s), which are available for
2561 pickup, but these holds will soon expire.
2562
2563 [% FOR hold IN target %]
2564     [%- data = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
2565     Title: [% data.title %]
2566     Author: [% data.author %]
2567     Library: [% hold.pickup_lib.name %]
2568 [% END %]
2569 $$
2570     );
2571
2572 INSERT INTO action_trigger.environment (
2573         event_def,
2574         path
2575     ) VALUES
2576     ( 7, 'current_copy'),
2577     ( 7, 'pickup_lib.billing_address'),
2578     ( 7, 'usr');
2579
2580 INSERT INTO action_trigger.hook (
2581         key,
2582         core_type,
2583         description,
2584         passive
2585     ) VALUES (
2586         'hold_request.long_wait',
2587         'ahr',
2588         'A patron has been waiting on a hold to be fulfilled for a long time.',
2589         TRUE
2590     );
2591
2592 INSERT INTO action_trigger.event_definition (
2593         id,
2594         active,
2595         owner,
2596         name,
2597         hook,
2598         validator,
2599         reactor,
2600         delay,
2601         delay_field,
2602         group_field,
2603         template
2604     ) VALUES (
2605         9,
2606         FALSE,
2607         1,
2608         'Hold waiting for pickup for long time',
2609         'hold_request.long_wait',
2610         'NOOP_True',
2611         'SendEmail',
2612         '6 MONTHS',
2613         'request_time',
2614         'usr',
2615 $$
2616 [%- USE date -%]
2617 [%- user = target.0.usr -%]
2618 To: [%- params.recipient_email || user.email %]
2619 From: [%- params.sender_email || default_sender %]
2620 Subject: Long Wait Hold Notification
2621
2622 Dear [% user.family_name %], [% user.first_given_name %]
2623
2624 You requested hold(s) on the following item(s), but unfortunately
2625 we have not been able to fulfill your request after a considerable
2626 length of time.  If you would still like to recieve these items,
2627 no action is required.
2628
2629 [% FOR hold IN target %]
2630     Title: [% hold.bib_rec.bib_record.simple_record.title %]
2631     Author: [% hold.bib_rec.bib_record.simple_record.author %]
2632 [% END %]
2633 $$
2634 );
2635
2636 INSERT INTO action_trigger.environment (
2637         event_def,
2638         path
2639     ) VALUES
2640     (9, 'pickup_lib'),
2641     (9, 'usr'),
2642     (9, 'bib_rec.bib_record.simple_record');
2643
2644 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2645     VALUES (
2646         'format.selfcheck.checkout',
2647         'circ',
2648         'Formats circ objects for self-checkout receipt',
2649         TRUE
2650     );
2651
2652 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2653     VALUES (
2654         10,
2655         TRUE,
2656         1,
2657         'Self-Checkout Receipt',
2658         'format.selfcheck.checkout',
2659         'NOOP_True',
2660         'ProcessTemplate',
2661         'usr',
2662         'print-on-demand',
2663 $$
2664 [%- USE date -%]
2665 [%- SET user = target.0.usr -%]
2666 [%- SET lib = target.0.circ_lib -%]
2667 [%- SET lib_addr = target.0.circ_lib.billing_address -%]
2668 [%- SET hours = lib.hours_of_operation -%]
2669 <div>
2670     <style> li { padding: 8px; margin 5px; }</style>
2671     <div>[% date.format %]</div>
2672     <div>[% lib.name %]</div>
2673     <div>[% lib_addr.street1 %] [% lib_addr.street2 %]</div>
2674     <div>[% lib_addr.city %], [% lib_addr.state %] [% lb_addr.post_code %]</div>
2675     <div>[% lib.phone %]</div>
2676     <br/>
2677
2678     [% user.family_name %], [% user.first_given_name %]
2679     <ol>
2680     [% FOR circ IN target %]
2681         [%-
2682             SET idx = loop.count - 1;
2683             SET udata =  user_data.$idx
2684         -%]
2685         <li>
2686             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
2687             <div>Barcode: [% circ.target_copy.barcode %]</div>
2688             [% IF udata.renewal_failure %]
2689                 <div style='color:red;'>Renewal Failed</div>
2690             [% ELSE %]
2691                 <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
2692             [% END %]
2693         </li>
2694     [% END %]
2695     </ol>
2696     
2697     <div>
2698         Library Hours
2699         [%- BLOCK format_time; date.format(time _ ' 1/1/1000', format='%I:%M %p'); END -%]
2700         <div>
2701             Monday 
2702             [% PROCESS format_time time = hours.dow_0_open %] 
2703             [% PROCESS format_time time = hours.dow_0_close %] 
2704         </div>
2705         <div>
2706             Tuesday 
2707             [% PROCESS format_time time = hours.dow_1_open %] 
2708             [% PROCESS format_time time = hours.dow_1_close %] 
2709         </div>
2710         <div>
2711             Wednesday 
2712             [% PROCESS format_time time = hours.dow_2_open %] 
2713             [% PROCESS format_time time = hours.dow_2_close %] 
2714         </div>
2715         <div>
2716             Thursday
2717             [% PROCESS format_time time = hours.dow_3_open %] 
2718             [% PROCESS format_time time = hours.dow_3_close %] 
2719         </div>
2720         <div>
2721             Friday
2722             [% PROCESS format_time time = hours.dow_4_open %] 
2723             [% PROCESS format_time time = hours.dow_4_close %] 
2724         </div>
2725         <div>
2726             Saturday
2727             [% PROCESS format_time time = hours.dow_5_open %] 
2728             [% PROCESS format_time time = hours.dow_5_close %] 
2729         </div>
2730         <div>
2731             Sunday 
2732             [% PROCESS format_time time = hours.dow_6_open %] 
2733             [% PROCESS format_time time = hours.dow_6_close %] 
2734         </div>
2735     </div>
2736 </div>
2737 $$
2738 );
2739
2740 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2741     ( 10, 'target_copy'),
2742     ( 10, 'circ_lib.billing_address'),
2743     ( 10, 'circ_lib.hours_of_operation'),
2744     ( 10, 'usr');
2745
2746 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2747     VALUES (
2748         'format.selfcheck.items_out',
2749         'circ',
2750         'Formats items out for self-checkout receipt',
2751         TRUE
2752     );
2753
2754 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2755     VALUES (
2756         11,
2757         TRUE,
2758         1,
2759         'Self-Checkout Items Out Receipt',
2760         'format.selfcheck.items_out',
2761         'NOOP_True',
2762         'ProcessTemplate',
2763         'usr',
2764         'print-on-demand',
2765 $$
2766 [%- USE date -%]
2767 [%- SET user = target.0.usr -%]
2768 <div>
2769     <style> li { padding: 8px; margin 5px; }</style>
2770     <div>[% date.format %]</div>
2771     <br/>
2772
2773     [% user.family_name %], [% user.first_given_name %]
2774     <ol>
2775     [% FOR circ IN target %]
2776         <li>
2777             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
2778             <div>Barcode: [% circ.target_copy.barcode %]</div>
2779             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
2780         </li>
2781     [% END %]
2782     </ol>
2783 </div>
2784 $$
2785 );
2786
2787
2788 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2789     ( 11, 'target_copy'),
2790     ( 11, 'circ_lib.billing_address'),
2791     ( 11, 'circ_lib.hours_of_operation'),
2792     ( 11, 'usr');
2793
2794 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2795     VALUES (
2796         'format.selfcheck.holds',
2797         'ahr',
2798         'Formats holds for self-checkout receipt',
2799         TRUE
2800     );
2801
2802 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2803     VALUES (
2804         12,
2805         TRUE,
2806         1,
2807         'Self-Checkout Holds Receipt',
2808         'format.selfcheck.holds',
2809         'NOOP_True',
2810         'ProcessTemplate',
2811         'usr',
2812         'print-on-demand',
2813 $$
2814 [%- USE date -%]
2815 [%- SET user = target.0.usr -%]
2816 <div>
2817     <style> li { padding: 8px; margin 5px; }</style>
2818     <div>[% date.format %]</div>
2819     <br/>
2820
2821     [% user.family_name %], [% user.first_given_name %]
2822     <ol>
2823     [% FOR hold IN target %]
2824         [%-
2825             SET idx = loop.count - 1;
2826             SET udata =  user_data.$idx
2827         -%]
2828         <li>
2829             <div>Title: [% hold.bib_rec.bib_record.simple_record.title %]</div>
2830             <div>Author: [% hold.bib_rec.bib_record.simple_record.author %]</div>
2831             <div>Pickup Location: [% hold.pickup_lib.name %]</div>
2832             <div>Status: 
2833                 [%- IF udata.ready -%]
2834                     Ready for pickup
2835                 [% ELSE %]
2836                     #[% udata.queue_position %] of [% udata.potential_copies %] copies.
2837                 [% END %]
2838             </div>
2839         </li>
2840     [% END %]
2841     </ol>
2842 </div>
2843 $$
2844 );
2845
2846
2847 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2848     ( 12, 'bib_rec.bib_record.simple_record'),
2849     ( 12, 'pickup_lib'),
2850     ( 12, 'usr');
2851
2852 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2853     VALUES (
2854         'format.selfcheck.fines',
2855         'au',
2856         'Formats fines for self-checkout receipt',
2857         TRUE
2858     );
2859
2860 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template )
2861     VALUES (
2862         13,
2863         TRUE,
2864         1,
2865         'Self-Checkout Fines Receipt',
2866         'format.selfcheck.fines',
2867         'NOOP_True',
2868         'ProcessTemplate',
2869         'print-on-demand',
2870 $$
2871 [%- USE date -%]
2872 [%- SET user = target -%]
2873 <div>
2874     <style> li { padding: 8px; margin 5px; }</style>
2875     <div>[% date.format %]</div>
2876     <br/>
2877
2878     [% user.family_name %], [% user.first_given_name %]
2879     <ol>
2880     [% FOR xact IN user.open_billable_transactions_summary %]
2881         <li>
2882             <div>Details: 
2883                 [% IF xact.xact_type == 'circulation' %]
2884                     [%- helpers.get_copy_bib_basics(xact.circulation.target_copy).title -%]
2885                 [% ELSE %]
2886                     [%- xact.last_billing_type -%]
2887                 [% END %]
2888             </div>
2889             <div>Total Billed: [% xact.total_owed %]</div>
2890             <div>Total Paid: [% xact.total_paid %]</div>
2891             <div>Balance Owed : [% xact.balance_owed %]</div>
2892         </li>
2893     [% END %]
2894     </ol>
2895 </div>
2896 $$
2897 );
2898
2899 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2900     ( 13, 'open_billable_transactions_summary.circulation' );
2901
2902 INSERT INTO action_trigger.reactor (module,description) VALUES
2903 (   'SendFile',
2904     oils_i18n_gettext(
2905         'SendFile',
2906         '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.',
2907         'atreact',
2908         'description'
2909     )
2910 );
2911
2912 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2913     VALUES (
2914         'format.acqli.html',
2915         'jub',
2916         'Formats lineitem worksheet for titles received',
2917         TRUE
2918     );
2919
2920 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template)
2921     VALUES (
2922         14,
2923         TRUE,
2924         1,
2925         'Lineitem Worksheet',
2926         'format.acqli.html',
2927         'NOOP_True',
2928         'ProcessTemplate',
2929         'print-on-demand',
2930 $$
2931 [%- USE date -%]
2932 [%- SET li = target; -%]
2933 <div class="wrapper">
2934     <div class="summary" style='font-size:110%; font-weight:bold;'>
2935
2936         <div>Title: [% helpers.get_li_attr("title", "", li.attributes) %]</div>
2937         <div>Author: [% helpers.get_li_attr("author", "", li.attributes) %]</div>
2938         <div class="count">Item Count: [% li.lineitem_details.size %]</div>
2939         <div class="lineid">Lineitem ID: [% li.id %]</div>
2940
2941         [% IF li.distribution_formulas.size > 0 %]
2942             [% SET forms = [] %]
2943             [% FOREACH form IN li.distribution_formulas; forms.push(form.formula.name); END %]
2944             <div>Distribution Formulas: [% forms.join(',') %]</div>
2945         [% END %]
2946
2947         [% IF li.lineitem_notes.size > 0 %]
2948             Lineitem Notes:
2949             <ul>
2950                 [%- FOR note IN li.lineitem_notes -%]
2951                     <li>
2952                     [% IF note.alert_text %]
2953                         [% note.alert_text.code -%] 
2954                         [% IF note.value -%]
2955                             : [% note.value %]
2956                         [% END %]
2957                     [% ELSE %]
2958                         [% note.value -%] 
2959                     [% END %]
2960                     </li>
2961                 [% END %]
2962             </ul>
2963         [% END %]
2964     </div>
2965     <br/>
2966     <table>
2967         <thead>
2968             <tr>
2969                 <th>Branch</th>
2970                 <th>Barcode</th>
2971                 <th>Call Number</th>
2972                 <th>Fund</th>
2973                 <th>Recd.</th>
2974                 <th>Notes</th>
2975             </tr>
2976         </thead>
2977         <tbody>
2978         [% FOREACH detail IN li.lineitem_details.sort('owning_lib') %]
2979             [% 
2980                 IF copy.eg_copy_id;
2981                     SET copy = copy.eg_copy_id;
2982                     SET cn_label = copy.call_number.label;
2983                 ELSE; 
2984                     SET copy = detail; 
2985                     SET cn_label = detail.cn_label;
2986                 END 
2987             %]
2988             <tr>
2989                 <!-- acq.lineitem_detail.id = [%- detail.id -%] -->
2990                 <td style='padding:5px;'>[% detail.owning_lib.shortname %]</td>
2991                 <td style='padding:5px;'>[% IF copy.barcode   %]<span class="barcode"  >[% detail.barcode   %]</span>[% END %]</td>
2992                 <td style='padding:5px;'>[% IF cn_label %]<span class="cn_label" >[% cn_label  %]</span>[% END %]</td>
2993                 <td style='padding:5px;'>[% IF detail.fund %]<span class="fund">[% detail.fund.code %] ([% detail.fund.year %])</span>[% END %]</td>
2994                 <td style='padding:5px;'>[% IF detail.recv_time %]<span class="recv_time">[% detail.recv_time %]</span>[% END %]</td>
2995                 <td style='padding:5px;'>[% detail.note %]</td>
2996             </tr>
2997         [% END %]
2998         </tbody>
2999     </table>
3000 </div>
3001 $$
3002 );
3003
3004
3005 INSERT INTO action_trigger.environment (event_def, path) VALUES
3006     ( 14, 'attributes' ),
3007     ( 14, 'lineitem_details' ),
3008     ( 14, 'lineitem_details.owning_lib' ),
3009     ( 14, 'lineitem_notes' )
3010 ;
3011
3012 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3013         'aur.ordered',
3014         'aur', 
3015         oils_i18n_gettext(
3016             'aur.ordered',
3017             'A patron acquisition request has been marked On-Order.',
3018             'ath',
3019             'description'
3020         ), 
3021         TRUE
3022     ), (
3023         'aur.received', 
3024         'aur', 
3025         oils_i18n_gettext(
3026             'aur.received', 
3027             'A patron acquisition request has been marked Received.',
3028             'ath',
3029             'description'
3030         ),
3031         TRUE
3032     ), (
3033         'aur.cancelled',
3034         'aur',
3035         oils_i18n_gettext(
3036             'aur.cancelled',
3037             'A patron acquisition request has been marked Cancelled.',
3038             'ath',
3039             'description'
3040         ),
3041         TRUE
3042     )
3043 ;
3044
3045 INSERT INTO action_trigger.validator (module,description) VALUES (
3046         'Acq::UserRequestOrdered',
3047         oils_i18n_gettext(
3048             'Acq::UserRequestOrdered',
3049             'Tests to see if the corresponding Line Item has a state of "on-order".',
3050             'atval',
3051             'description'
3052         )
3053     ), (
3054         'Acq::UserRequestReceived',
3055         oils_i18n_gettext(
3056             'Acq::UserRequestReceived',
3057             'Tests to see if the corresponding Line Item has a state of "received".',
3058             'atval',
3059             'description'
3060         )
3061     ), (
3062         'Acq::UserRequestCancelled',
3063         oils_i18n_gettext(
3064             'Acq::UserRequestCancelled',
3065             'Tests to see if the corresponding Line Item has a state of "cancelled".',
3066             'atval',
3067             'description'
3068         )
3069     )
3070 ;
3071
3072 -- What was event_definition #15 in v1.6.1 will be recreated as #20.  This
3073 -- renumbering requires some juggling:
3074 --
3075 -- 1. Update any child rows to point to #20.  These updates will temporarily
3076 -- violate foreign key constraints, but that's okay as long as we create
3077 -- #20 before committing.
3078 --
3079 -- 2. Delete the old #15.
3080 --
3081 -- 3. Insert the new #15.
3082 --
3083 -- 4. Insert #20.
3084 --
3085 -- We could combine steps 2 and 3 into a single update, but that would create
3086 -- additional opportunities for typos, since we already have the insert from
3087 -- an upgrade script.
3088
3089 UPDATE action_trigger.environment
3090 SET event_def = 20
3091 WHERE event_def = 15;
3092
3093 UPDATE action_trigger.event
3094 SET event_def = 20
3095 WHERE event_def = 15;
3096
3097 UPDATE action_trigger.event_params
3098 SET event_def = 20
3099 WHERE event_def = 15;
3100
3101 DELETE FROM action_trigger.event_definition
3102 WHERE id = 15;
3103
3104 INSERT INTO action_trigger.event_definition (
3105         id,
3106         active,
3107         owner,
3108         name,
3109         hook,
3110         validator,
3111         reactor,
3112         template
3113     ) VALUES (
3114         15,
3115         FALSE,
3116         1,
3117         'Email Notice: Patron Acquisition Request marked On-Order.',
3118         'aur.ordered',
3119         'Acq::UserRequestOrdered',
3120         'SendEmail',
3121 $$
3122 [%- USE date -%]
3123 [%- SET li = target.lineitem; -%]
3124 [%- SET user = target.usr -%]
3125 [%- SET title = helpers.get_li_attr("title", "", li.attributes) -%]
3126 [%- SET author = helpers.get_li_attr("author", "", li.attributes) -%]
3127 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) -%]
3128 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) -%]
3129 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3130 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3131
3132 To: [%- params.recipient_email || user.email %]
3133 From: [%- params.sender_email || default_sender %]
3134 Subject: Acquisition Request Notification
3135
3136 Dear [% user.family_name %], [% user.first_given_name %]
3137 Our records indicate the following acquisition request has been placed on order.
3138
3139 Title: [% title %]
3140 [% IF author %]Author: [% author %][% END %]
3141 [% IF edition %]Edition: [% edition %][% END %]
3142 [% IF isbn %]ISBN: [% isbn %][% END %]
3143 [% IF publisher %]Publisher: [% publisher %][% END %]
3144 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3145 Lineitem ID: [% li.id %]
3146 $$
3147     ), (
3148         16,
3149         FALSE,
3150         1,
3151         'Email Notice: Patron Acquisition Request marked Received.',
3152         'aur.received',
3153         'Acq::UserRequestReceived',
3154         'SendEmail',
3155 $$
3156 [%- USE date -%]
3157 [%- SET li = target.lineitem; -%]
3158 [%- SET user = target.usr -%]
3159 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3160 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3161 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3162 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3163 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3164 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3165
3166 To: [%- params.recipient_email || user.email %]
3167 From: [%- params.sender_email || default_sender %]
3168 Subject: Acquisition Request Notification
3169
3170 Dear [% user.family_name %], [% user.first_given_name %]
3171 Our records indicate the materials for the following acquisition request have been received.
3172
3173 Title: [% title %]
3174 [% IF author %]Author: [% author %][% END %]
3175 [% IF edition %]Edition: [% edition %][% END %]
3176 [% IF isbn %]ISBN: [% isbn %][% END %]
3177 [% IF publisher %]Publisher: [% publisher %][% END %]
3178 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3179 Lineitem ID: [% li.id %]
3180 $$
3181     ), (
3182         17,
3183         FALSE,
3184         1,
3185         'Email Notice: Patron Acquisition Request marked Cancelled.',
3186         'aur.cancelled',
3187         'Acq::UserRequestCancelled',
3188         'SendEmail',
3189 $$
3190 [%- USE date -%]
3191 [%- SET li = target.lineitem; -%]
3192 [%- SET user = target.usr -%]
3193 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3194 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3195 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3196 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3197 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3198 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3199
3200 To: [%- params.recipient_email || user.email %]
3201 From: [%- params.sender_email || default_sender %]
3202 Subject: Acquisition Request Notification
3203
3204 Dear [% user.family_name %], [% user.first_given_name %]
3205 Our records indicate the following acquisition request has been cancelled.
3206
3207 Title: [% title %]
3208 [% IF author %]Author: [% author %][% END %]
3209 [% IF edition %]Edition: [% edition %][% END %]
3210 [% IF isbn %]ISBN: [% isbn %][% END %]
3211 [% IF publisher %]Publisher: [% publisher %][% END %]
3212 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3213 Lineitem ID: [% li.id %]
3214 $$
3215     );
3216
3217 INSERT INTO action_trigger.environment (
3218         event_def,
3219         path
3220     ) VALUES 
3221         ( 15, 'lineitem' ),
3222         ( 15, 'lineitem.attributes' ),
3223         ( 15, 'usr' ),
3224
3225         ( 16, 'lineitem' ),
3226         ( 16, 'lineitem.attributes' ),
3227         ( 16, 'usr' ),
3228
3229         ( 17, 'lineitem' ),
3230         ( 17, 'lineitem.attributes' ),
3231         ( 17, 'usr' )
3232     ;
3233
3234 INSERT INTO action_trigger.event_definition
3235 (id, active, owner, name, hook, validator, reactor, cleanup_success, cleanup_failure, delay, delay_field, group_field, template) VALUES
3236 (23, true, 1, 'PO JEDI', 'acqpo.activated', 'Acq::PurchaseOrderEDIRequired', 'GeneratePurchaseOrderJEDI', NULL, NULL, '00:05:00', NULL, NULL,
3237 $$[%- USE date -%]
3238 [%# start JEDI document -%]
3239 [%- BLOCK big_block -%]
3240 {
3241    "recipient":"[% target.provider.san %]",
3242    "sender":"[% target.ordering_agency.mailing_address.san %]",
3243    "body": [{
3244      "ORDERS":[ "order", {
3245         "po_number":[% target.id %],
3246         "date":"[% date.format(date.now, '%Y%m%d') %]",
3247         "buyer":[{
3248             [%- IF target.provider.edi_default.vendcode -%]
3249                 "id":"[% target.ordering_agency.mailing_address.san _ ' ' _ target.provider.edi_default.vendcode %]", 
3250                 "id-qualifier": 91
3251             [%- ELSE -%]
3252                 "id":"[% target.ordering_agency.mailing_address.san %]"
3253             [%- END  -%]
3254         }],
3255         "vendor":[ 
3256             [%- # target.provider.name (target.provider.id) -%]
3257             "[% target.provider.san %]",
3258             {"id-qualifier": 92, "id":"[% target.provider.id %]"}
3259         ],
3260         "currency":"[% target.provider.currency_type %]",
3261         "items":[
3262         [% FOR li IN target.lineitems %]
3263         {
3264             "identifiers":[   [%-# li.isbns = helpers.get_li_isbns(li.attributes) %]
3265             [% FOR isbn IN helpers.get_li_isbns(li.attributes) -%]
3266                 [% IF isbn.length == 13 -%]
3267                 {"id-qualifier":"EN","id":"[% isbn %]"},
3268                 [% ELSE -%]
3269                 {"id-qualifier":"IB","id":"[% isbn %]"},
3270                 [%- END %]
3271             [% END %]
3272                 {"id-qualifier":"SA","id":"[% li.id %]"}
3273             ],
3274             "price":[% li.estimated_unit_price || '0.00' %],
3275             "desc":[
3276                 {"BTI":"[% helpers.get_li_attr('title',     '', li.attributes) %]"}, 
3277                 {"BPU":"[% helpers.get_li_attr('publisher', '', li.attributes) %]"},
3278                 {"BPD":"[% helpers.get_li_attr('pubdate',   '', li.attributes) %]"},
3279                 {"BPH":"[% helpers.get_li_attr('pagination','', li.attributes) %]"}
3280             ],
3281             "quantity":[% li.lineitem_details.size %]
3282         }[% UNLESS loop.last %],[% END %]
3283         [%-# TODO: lineitem details (later) -%]
3284         [% END %]
3285         ],
3286         "line_items":[% target.lineitems.size %]
3287      }]  [% # close ORDERS array %]
3288    }]    [% # close  body  array %]
3289 }
3290 [% END %]
3291 [% tempo = PROCESS big_block; helpers.escape_json(tempo) %]
3292 $$
3293 );
3294
3295 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3296   (23, 'lineitems.attributes'), 
3297   (23, 'lineitems.lineitem_details'), 
3298   (23, 'lineitems.lineitem_notes'), 
3299   (23, 'ordering_agency.mailing_address'), 
3300   (23, 'provider');
3301
3302 UPDATE action_trigger.event_definition SET template = 
3303 $$
3304 [%- USE date -%]
3305 [%-
3306     # find a lineitem attribute by name and optional type
3307     BLOCK get_li_attr;
3308         FOR attr IN li.attributes;
3309             IF attr.attr_name == attr_name;
3310                 IF !attr_type OR attr_type == attr.attr_type;
3311                     attr.attr_value;
3312                     LAST;
3313                 END;
3314             END;
3315         END;
3316     END
3317 -%]
3318
3319 <h2>Purchase Order [% target.id %]</h2>
3320 <br/>
3321 date <b>[% date.format(date.now, '%Y%m%d') %]</b>
3322 <br/>
3323
3324 <style>
3325     table td { padding:5px; border:1px solid #aaa;}
3326     table { width:95%; border-collapse:collapse; }
3327     #vendor-notes { padding:5px; border:1px solid #aaa; }
3328 </style>
3329 <table id='vendor-table'>
3330   <tr>
3331     <td valign='top'>Vendor</td>
3332     <td>
3333       <div>[% target.provider.name %]</div>
3334       <div>[% target.provider.addresses.0.street1 %]</div>
3335       <div>[% target.provider.addresses.0.street2 %]</div>
3336       <div>[% target.provider.addresses.0.city %]</div>
3337       <div>[% target.provider.addresses.0.state %]</div>
3338       <div>[% target.provider.addresses.0.country %]</div>
3339       <div>[% target.provider.addresses.0.post_code %]</div>
3340     </td>
3341     <td valign='top'>Ship to / Bill to</td>
3342     <td>
3343       <div>[% target.ordering_agency.name %]</div>
3344       <div>[% target.ordering_agency.billing_address.street1 %]</div>
3345       <div>[% target.ordering_agency.billing_address.street2 %]</div>
3346       <div>[% target.ordering_agency.billing_address.city %]</div>
3347       <div>[% target.ordering_agency.billing_address.state %]</div>
3348       <div>[% target.ordering_agency.billing_address.country %]</div>
3349       <div>[% target.ordering_agency.billing_address.post_code %]</div>
3350     </td>
3351   </tr>
3352 </table>
3353
3354 <br/><br/>
3355 <fieldset id='vendor-notes'>
3356     <legend>Notes to the Vendor</legend>
3357     <ul>
3358     [% FOR note IN target.notes %]
3359         [% IF note.vendor_public == 't' %]
3360             <li>[% note.value %]</li>
3361         [% END %]
3362     [% END %]
3363     </ul>
3364 </fieldset>
3365 <br/><br/>
3366
3367 <table>
3368   <thead>
3369     <tr>
3370       <th>PO#</th>
3371       <th>ISBN or Item #</th>
3372       <th>Title</th>
3373       <th>Quantity</th>
3374       <th>Unit Price</th>
3375       <th>Line Total</th>
3376       <th>Notes</th>
3377     </tr>
3378   </thead>
3379   <tbody>
3380
3381   [% subtotal = 0 %]
3382   [% FOR li IN target.lineitems %]
3383
3384   <tr>
3385     [% count = li.lineitem_details.size %]
3386     [% price = li.estimated_unit_price %]
3387     [% litotal = (price * count) %]
3388     [% subtotal = subtotal + litotal %]
3389     [% isbn = PROCESS get_li_attr attr_name = 'isbn' %]
3390     [% ident = PROCESS get_li_attr attr_name = 'identifier' %]
3391
3392     <td>[% target.id %]</td>
3393     <td>[% isbn || ident %]</td>
3394     <td>[% PROCESS get_li_attr attr_name = 'title' %]</td>
3395     <td>[% count %]</td>
3396     <td>[% price %]</td>
3397     <td>[% litotal %]</td>
3398     <td>
3399         <ul>
3400         [% FOR note IN li.lineitem_notes %]
3401             [% IF note.vendor_public == 't' %]
3402                 <li>[% note.value %]</li>
3403             [% END %]
3404         [% END %]
3405         </ul>
3406     </td>
3407   </tr>
3408   [% END %]
3409   <tr>
3410     <td/><td/><td/><td/>
3411     <td>Sub Total</td>
3412     <td>[% subtotal %]</td>
3413   </tr>
3414   </tbody>
3415 </table>
3416
3417 <br/>
3418
3419 Total Line Item Count: [% target.lineitems.size %]
3420 $$
3421 WHERE id = 4;
3422
3423 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3424     (4, 'lineitems.lineitem_notes'),
3425     (4, 'notes');
3426
3427 INSERT INTO action_trigger.environment (event_def, path) VALUES
3428     ( 14, 'lineitem_notes.alert_text' ),
3429     ( 14, 'distribution_formulas.formula' ),
3430     ( 14, 'lineitem_details.fund' ),
3431     ( 14, 'lineitem_details.eg_copy_id' ),
3432     ( 14, 'lineitem_details.eg_copy_id.call_number' )
3433 ;
3434
3435 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3436         'aur.created',
3437         'aur',
3438         oils_i18n_gettext(
3439             'aur.created',
3440             'A patron has made an acquisitions request.',
3441             'ath',
3442             'description'
3443         ),
3444         TRUE
3445     ), (
3446         'aur.rejected',
3447         'aur',
3448         oils_i18n_gettext(
3449             'aur.rejected',
3450             'A patron acquisition request has been rejected.',
3451             'ath',
3452             'description'
3453         ),
3454         TRUE
3455     )
3456 ;
3457
3458 INSERT INTO action_trigger.event_definition (
3459         id,
3460         active,
3461         owner,
3462         name,
3463         hook,
3464         validator,
3465         reactor,
3466         template
3467     ) VALUES (
3468         18,
3469         FALSE,
3470         1,
3471         'Email Notice: Acquisition Request created.',
3472         'aur.created',
3473         'NOOP_True',
3474         'SendEmail',
3475 $$
3476 [%- USE date -%]
3477 [%- SET user = target.usr -%]
3478 [%- SET title = target.title -%]
3479 [%- SET author = target.author -%]
3480 [%- SET isxn = target.isxn -%]
3481 [%- SET publisher = target.publisher -%]
3482 [%- SET pubdate = target.pubdate -%]
3483
3484 To: [%- params.recipient_email || user.email %]
3485 From: [%- params.sender_email || default_sender %]
3486 Subject: Acquisition Request Notification
3487
3488 Dear [% user.family_name %], [% user.first_given_name %]
3489 Our records indicate that you have made the following acquisition request:
3490
3491 Title: [% title %]
3492 [% IF author %]Author: [% author %][% END %]
3493 [% IF edition %]Edition: [% edition %][% END %]
3494 [% IF isbn %]ISXN: [% isxn %][% END %]
3495 [% IF publisher %]Publisher: [% publisher %][% END %]
3496 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3497 $$
3498     ), (
3499         19,
3500         FALSE,
3501         1,
3502         'Email Notice: Acquisition Request Rejected.',
3503         'aur.rejected',
3504         'NOOP_True',
3505         'SendEmail',
3506 $$
3507 [%- USE date -%]
3508 [%- SET user = target.usr -%]
3509 [%- SET title = target.title -%]
3510 [%- SET author = target.author -%]
3511 [%- SET isxn = target.isxn -%]
3512 [%- SET publisher = target.publisher -%]
3513 [%- SET pubdate = target.pubdate -%]
3514 [%- SET cancel_reason = target.cancel_reason.description -%]
3515
3516 To: [%- params.recipient_email || user.email %]
3517 From: [%- params.sender_email || default_sender %]
3518 Subject: Acquisition Request Notification
3519
3520 Dear [% user.family_name %], [% user.first_given_name %]
3521 Our records indicate the following acquisition request has been rejected for this reason: [% cancel_reason %]
3522
3523 Title: [% title %]
3524 [% IF author %]Author: [% author %][% END %]
3525 [% IF edition %]Edition: [% edition %][% END %]
3526 [% IF isbn %]ISBN: [% isbn %][% END %]
3527 [% IF publisher %]Publisher: [% publisher %][% END %]
3528 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3529 $$
3530     );
3531
3532 INSERT INTO action_trigger.environment (
3533         event_def,
3534         path
3535     ) VALUES 
3536         ( 18, 'usr' ),
3537         ( 19, 'usr' ),
3538         ( 19, 'cancel_reason' )
3539     ;
3540
3541 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, template) 
3542     VALUES (20, 'f', 1, 'Password reset request notification', 'password.reset_request', 'NOOP_True', 'SendEmail', '00:00:01',
3543 $$
3544 [%- USE date -%]
3545 [%- user = target.usr -%]
3546 To: [%- params.recipient_email || user.email %]
3547 From: [%- params.sender_email || user.home_ou.email || default_sender %]
3548 Subject: [% user.home_ou.name %]: library account password reset request
3549   
3550 You have received this message because you, or somebody else, requested a reset
3551 of your library system password. If you did not request a reset of your library
3552 system password, just ignore this message and your current password will
3553 continue to work.
3554
3555 If you did request a reset of your library system password, please perform
3556 the following steps to continue the process of resetting your password:
3557
3558 1. Open the following link in a web browser: https://[% params.hostname %]/opac/password/[% params.locale || 'en-US' %]/[% target.uuid %]
3559 The browser displays a password reset form.
3560
3561 2. Enter your new password in the password reset form in the browser. You must
3562 enter the password twice to ensure that you do not make a mistake. If the
3563 passwords match, you will then be able to log in to your library system account
3564 with the new password.
3565
3566 $$);
3567
3568 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3569     VALUES (
3570         'format.acqcle.html',
3571         'acqcle',
3572         'Formats claim events into a voucher',
3573         TRUE
3574     );
3575
3576 INSERT INTO action_trigger.event_definition (
3577         id, active, owner, name, hook, group_field,
3578         validator, reactor, granularity, template
3579     ) VALUES (
3580         21,
3581         TRUE,
3582         1,
3583         'Claim Voucher',
3584         'format.acqcle.html',
3585         'claim',
3586         'NOOP_True',
3587         'ProcessTemplate',
3588         'print-on-demand',
3589 $$
3590 [%- USE date -%]
3591 [%- SET claim = target.0.claim -%]
3592 <!-- This will need refined/prettified. -->
3593 <div class="acq-claim-voucher">
3594     <h2>Claim: [% claim.id %] ([% claim.type.code %])</h2>
3595     <h3>Against: [%- helpers.get_li_attr("title", "", claim.lineitem_detail.lineitem.attributes) -%]</h3>
3596     <ul>
3597         [% FOR event IN target %]
3598         <li>
3599             Event type: [% event.type.code %]
3600             [% IF event.type.library_initiated %](Library initiated)[% END %]
3601             <br />
3602             Event date: [% event.event_date %]<br />
3603             Order date: [% event.claim.lineitem_detail.lineitem.purchase_order.order_date %]<br />
3604             Expected receive date: [% event.claim.lineitem_detail.lineitem.expected_recv_time %]<br />
3605             Initiated by: [% event.creator.family_name %], [% event.creator.first_given_name %] [% event.creator.second_given_name %]<br />
3606             Barcode: [% event.claim.lineitem_detail.barcode %]; Fund:
3607             [% event.claim.lineitem_detail.fund.code %]
3608             ([% event.claim.lineitem_detail.fund.year %])
3609         </li>
3610         [% END %]
3611     </ul>
3612 </div>
3613 $$
3614 );
3615
3616 INSERT INTO action_trigger.environment (event_def, path) VALUES
3617     (21, 'claim'),
3618     (21, 'claim.type'),
3619     (21, 'claim.lineitem_detail'),
3620     (21, 'claim.lineitem_detail.fund'),
3621     (21, 'claim.lineitem_detail.lineitem.attributes'),
3622     (21, 'claim.lineitem_detail.lineitem.purchase_order'),
3623     (21, 'creator'),
3624     (21, 'type')
3625 ;
3626
3627 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3628     VALUES (
3629         'format.acqinv.html',
3630         'acqinv',
3631         'Formats invoices into a voucher',
3632         TRUE
3633     );
3634
3635 INSERT INTO action_trigger.event_definition (
3636         id, active, owner, name, hook,
3637         validator, reactor, granularity, template
3638     ) VALUES (
3639         22,
3640         TRUE,
3641         1,
3642         'Invoice',
3643         'format.acqinv.html',
3644         'NOOP_True',
3645         'ProcessTemplate',
3646         'print-on-demand',
3647 $$
3648 [% FILTER collapse %]
3649 [%- SET invoice = target -%]
3650 <!-- This lacks totals, info about funds (for invoice entries,
3651     funds are per-LID!), and general refinement -->
3652 <div class="acq-invoice-voucher">
3653     <h1>Invoice</h1>
3654     <div>
3655         <strong>No.</strong> [% invoice.inv_ident %]
3656         [% IF invoice.inv_type %]
3657             / <strong>Type:</strong>[% invoice.inv_type %]
3658         [% END %]
3659     </div>
3660     <div>
3661         <dl>
3662             [% BLOCK ent_with_address %]
3663             <dt>[% ent_label %]: [% ent.name %] ([% ent.code %])</dt>
3664             <dd>
3665                 [% IF ent.addresses.0 %]
3666                     [% SET addr = ent.addresses.0 %]
3667                     [% addr.street1 %]<br />
3668                     [% IF addr.street2 %][% addr.street2 %]<br />[% END %]
3669                     [% addr.city %],
3670                     [% IF addr.county %] [% addr.county %], [% END %]
3671                     [% IF addr.state %] [% addr.state %] [% END %]
3672                     [% IF addr.post_code %][% addr.post_code %][% END %]<br />
3673                     [% IF addr.country %] [% addr.country %] [% END %]
3674                 [% END %]
3675                 <p>
3676                     [% IF ent.phone %] Phone: [% ent.phone %]<br />[% END %]
3677                     [% IF ent.fax_phone %] Fax: [% ent.fax_phone %]<br />[% END %]
3678                     [% IF ent.url %] URL: [% ent.url %]<br />[% END %]
3679                     [% IF ent.email %] E-mail: [% ent.email %] [% END %]
3680                 </p>
3681             </dd>
3682             [% END %]
3683             [% INCLUDE ent_with_address
3684                 ent = invoice.provider
3685                 ent_label = "Provider" %]
3686             [% INCLUDE ent_with_address
3687                 ent = invoice.shipper
3688                 ent_label = "Shipper" %]
3689             <dt>Receiver</dt>
3690             <dd>
3691                 [% invoice.receiver.name %] ([% invoice.receiver.shortname %])
3692             </dd>
3693             <dt>Received</dt>
3694             <dd>
3695                 [% helpers.format_date(invoice.recv_date) %] by
3696                 [% invoice.recv_method %]
3697             </dd>
3698             [% IF invoice.note %]
3699                 <dt>Note</dt>
3700                 <dd>
3701                     [% invoice.note %]
3702                 </dd>
3703             [% END %]
3704         </dl>
3705     </div>
3706     <ul>
3707         [% FOR entry IN invoice.entries %]
3708             <li>
3709                 [% IF entry.lineitem %]
3710                     Title: [% helpers.get_li_attr(
3711                         "title", "", entry.lineitem.attributes
3712                     ) %]<br />
3713                     Author: [% helpers.get_li_attr(
3714                         "author", "", entry.lineitem.attributes
3715                     ) %]
3716                 [% END %]
3717                 [% IF entry.purchase_order %]
3718                     (PO: [% entry.purchase_order.name %])
3719                 [% END %]<br />
3720                 Invoice item count: [% entry.inv_item_count %]
3721                 [% IF entry.phys_item_count %]
3722                     / Physical item count: [% entry.phys_item_count %]
3723                 [% END %]
3724                 <br />
3725                 [% IF entry.cost_billed %]
3726                     Cost billed: [% entry.cost_billed %]
3727                     [% IF entry.billed_per_item %](per item)[% END %]
3728                     <br />
3729                 [% END %]
3730                 [% IF entry.actual_cost %]
3731                     Actual cost: [% entry.actual_cost %]<br />
3732                 [% END %]
3733                 [% IF entry.amount_paid %]
3734                     Amount paid: [% entry.amount_paid %]<br />
3735                 [% END %]
3736                 [% IF entry.note %]Note: [% entry.note %][% END %]
3737             </li>
3738         [% END %]
3739         [% FOR item IN invoice.items %]
3740             <li>
3741                 [% IF item.inv_item_type %]
3742                     Item Type: [% item.inv_item_type %]<br />
3743                 [% END %]
3744                 [% IF item.title %]Title/Description:
3745                     [% item.title %]<br />
3746                 [% END %]
3747                 [% IF item.author %]Author: [% item.author %]<br />[% END %]
3748                 [% IF item.purchase_order %]PO: [% item.purchase_order %]<br />[% END %]
3749                 [% IF item.note %]Note: [% item.note %]<br />[% END %]
3750                 [% IF item.cost_billed %]
3751                     Cost billed: [% item.cost_billed %]<br />
3752                 [% END %]
3753                 [% IF item.actual_cost %]
3754                     Actual cost: [% item.actual_cost %]<br />
3755                 [% END %]
3756                 [% IF item.amount_paid %]
3757                     Amount paid: [% item.amount_paid %]<br />
3758                 [% END %]
3759             </li>
3760         [% END %]
3761     </ul>
3762 </div>
3763 [% END %]
3764 $$
3765 );
3766
3767 INSERT INTO action_trigger.environment (event_def, path) VALUES
3768     (22, 'provider'),
3769     (22, 'provider.addresses'),
3770     (22, 'shipper'),
3771     (22, 'shipper.addresses'),
3772     (22, 'receiver'),
3773     (22, 'entries'),
3774     (22, 'entries.purchase_order'),
3775     (22, 'entries.lineitem'),
3776     (22, 'entries.lineitem.attributes'),
3777     (22, 'items')
3778 ;
3779
3780 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3781   (23, 'provider.edi_default');
3782
3783 INSERT INTO action_trigger.validator (module, description) 
3784     VALUES (
3785         'Acq::PurchaseOrderEDIRequired',
3786         oils_i18n_gettext(
3787             'Acq::PurchaseOrderEDIRequired',
3788             'Purchase order is delivered via EDI',
3789             'atval',
3790             'description'
3791         )
3792     );
3793
3794 INSERT INTO action_trigger.reactor (module, description)
3795     VALUES (
3796         'GeneratePurchaseOrderJEDI',
3797         oils_i18n_gettext(
3798             'GeneratePurchaseOrderJEDI',
3799             'Creates purchase order JEDI (JSON EDI) for subsequent EDI processing',
3800             'atreact',
3801             'description'
3802         )
3803     );
3804
3805 UPDATE action_trigger.hook 
3806     SET 
3807         key = 'acqpo.activated', 
3808         passive = FALSE,
3809         description = oils_i18n_gettext(
3810             'acqpo.activated',
3811             'Purchase order was activated',
3812             'ath',
3813             'description'
3814         )
3815     WHERE key = 'format.po.jedi';
3816
3817 -- We just changed a key in action_trigger.hook.  Now redirect any
3818 -- child rows to point to the new key.  (There probably aren't any;
3819 -- this is just a precaution against possible local modifications.)
3820
3821 UPDATE action_trigger.event_definition
3822 SET hook = 'acqpo.activated'
3823 WHERE hook = 'format.po.jedi';
3824
3825 INSERT INTO action_trigger.reactor (module, description) VALUES (
3826     'AstCall', 'Possibly place a phone call with Asterisk'
3827 );
3828
3829 INSERT INTO
3830     action_trigger.event_definition (
3831         id, active, owner, name, hook, validator, reactor,
3832         cleanup_success, cleanup_failure, delay, delay_field, group_field,
3833         max_delay, granularity, usr_field, opt_in_setting, template
3834     ) VALUES (
3835         24,
3836         FALSE,
3837         1,
3838         'Telephone Overdue Notice',
3839         'checkout.due', 'NOOP_True', 'AstCall',
3840         DEFAULT, DEFAULT, '5 seconds', 'due_date', 'usr',
3841         DEFAULT, DEFAULT, DEFAULT, DEFAULT,
3842         $$
3843 [% phone = target.0.usr.day_phone | replace('[\s\-\(\)]', '') -%]
3844 [% IF phone.match('^[2-9]') %][% country = 1 %][% ELSE %][% country = '' %][% END -%]
3845 Channel: [% channel_prefix %]/[% country %][% phone %]
3846 Context: overdue-test
3847 MaxRetries: 1
3848 RetryTime: 60
3849 WaitTime: 30
3850 Extension: 10
3851 Archive: 1
3852 Set: eg_user_id=[% target.0.usr.id %]
3853 Set: items=[% target.size %]
3854 Set: titlestring=[% titles = [] %][% FOR circ IN target %][% titles.push(circ.target_copy.call_number.record.simple_record.title) %][% END %][% titles.join(". ") %]
3855 $$
3856     );
3857
3858 INSERT INTO
3859     action_trigger.environment (id, event_def, path)
3860     VALUES
3861         (DEFAULT, 24, 'target_copy.call_number.record.simple_record'),
3862         (DEFAULT, 24, 'usr')
3863     ;
3864
3865 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3866         'circ.format.history.email',
3867         'circ', 
3868         oils_i18n_gettext(
3869             'circ.format.history.email',
3870             'An email has been requested for a circ history.',
3871             'ath',
3872             'description'
3873         ), 
3874         FALSE
3875     )
3876     ,(
3877         'circ.format.history.print',
3878         'circ', 
3879         oils_i18n_gettext(
3880             'circ.format.history.print',
3881             'A circ history needs to be formatted for printing.',
3882             'ath',
3883             'description'
3884         ), 
3885         FALSE
3886     )
3887     ,(
3888         'ahr.format.history.email',
3889         'ahr', 
3890         oils_i18n_gettext(
3891             'ahr.format.history.email',
3892             'An email has been requested for a hold request history.',
3893             'ath',
3894             'description'
3895         ), 
3896         FALSE
3897     )
3898     ,(
3899         'ahr.format.history.print',
3900         'ahr', 
3901         oils_i18n_gettext(
3902             'ahr.format.history.print',
3903             'A hold request history needs to be formatted for printing.',
3904             'ath',
3905             'description'
3906         ), 
3907         FALSE
3908     )
3909
3910 ;
3911
3912 INSERT INTO action_trigger.event_definition (
3913         id,
3914         active,
3915         owner,
3916         name,
3917         hook,
3918         validator,
3919         reactor,
3920         group_field,
3921         granularity,
3922         template
3923     ) VALUES (
3924         25,
3925         TRUE,
3926         1,
3927         'circ.history.email',
3928         'circ.format.history.email',
3929         'NOOP_True',
3930         'SendEmail',
3931         'usr',
3932         NULL,
3933 $$
3934 [%- USE date -%]
3935 [%- SET user = target.0.usr -%]
3936 To: [%- params.recipient_email || user.email %]
3937 From: [%- params.sender_email || default_sender %]
3938 Subject: Circulation History
3939
3940     [% FOR circ IN target %]
3941             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
3942             Barcode: [% circ.target_copy.barcode %]
3943             Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]
3944             Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
3945             Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]
3946     [% END %]
3947 $$
3948     )
3949     ,(
3950         26,
3951         TRUE,
3952         1,
3953         'circ.history.print',
3954         'circ.format.history.print',
3955         'NOOP_True',
3956         'ProcessTemplate',
3957         'usr',
3958         'print-on-demand',
3959 $$
3960 [%- USE date -%]
3961 <div>
3962     <style> li { padding: 8px; margin 5px; }</style>
3963     <div>[% date.format %]</div>
3964     <br/>
3965
3966     [% user.family_name %], [% user.first_given_name %]
3967     <ol>
3968     [% FOR circ IN target %]
3969         <li>
3970             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
3971             <div>Barcode: [% circ.target_copy.barcode %]</div>
3972             <div>Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]</div>
3973             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
3974             <div>Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]</div>
3975         </li>
3976     [% END %]
3977     </ol>
3978 </div>
3979 $$
3980     )
3981     ,(
3982         27,
3983         TRUE,
3984         1,
3985         'ahr.history.email',
3986         'ahr.format.history.email',
3987         'NOOP_True',
3988         'SendEmail',
3989         'usr',
3990         NULL,
3991 $$
3992 [%- USE date -%]
3993 [%- SET user = target.0.usr -%]
3994 To: [%- params.recipient_email || user.email %]
3995 From: [%- params.sender_email || default_sender %]
3996 Subject: Hold Request History
3997
3998     [% FOR hold IN target %]
3999             [% helpers.get_copy_bib_basics(hold.current_copy.id).title %]
4000             Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]
4001             [% IF hold.fulfillment_time %]Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %][% END %]
4002     [% END %]
4003 $$
4004     )
4005     ,(
4006         28,
4007         TRUE,
4008         1,
4009         'ahr.history.print',
4010         'ahr.format.history.print',
4011         'NOOP_True',
4012         'ProcessTemplate',
4013         'usr',
4014         'print-on-demand',
4015 $$
4016 [%- USE date -%]
4017 <div>
4018     <style> li { padding: 8px; margin 5px; }</style>
4019     <div>[% date.format %]</div>
4020     <br/>
4021
4022     [% user.family_name %], [% user.first_given_name %]
4023     <ol>
4024     [% FOR hold IN target %]
4025         <li>
4026             <div>[% helpers.get_copy_bib_basics(hold.current_copy.id).title %]</div>
4027             <div>Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]</div>
4028             [% IF hold.fulfillment_time %]<div>Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %]</div>[% END %]
4029         </li>
4030     [% END %]
4031     </ol>
4032 </div>
4033 $$
4034     )
4035
4036 ;
4037
4038 INSERT INTO action_trigger.environment (
4039         event_def,
4040         path
4041     ) VALUES 
4042          ( 25, 'target_copy')
4043         ,( 25, 'usr' )
4044         ,( 26, 'target_copy' )
4045         ,( 26, 'usr' )
4046         ,( 27, 'current_copy' )
4047         ,( 27, 'usr' )
4048         ,( 28, 'current_copy' )
4049         ,( 28, 'usr' )
4050 ;
4051
4052 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4053         'money.format.payment_receipt.email',
4054         'mp', 
4055         oils_i18n_gettext(
4056             'money.format.payment_receipt.email',
4057             'An email has been requested for a payment receipt.',
4058             'ath',
4059             'description'
4060         ), 
4061         FALSE
4062     )
4063     ,(
4064         'money.format.payment_receipt.print',
4065         'mp', 
4066         oils_i18n_gettext(
4067             'money.format.payment_receipt.print',
4068             'A payment receipt needs to be formatted for printing.',
4069             'ath',
4070             'description'
4071         ), 
4072         FALSE
4073     )
4074 ;
4075
4076 INSERT INTO action_trigger.event_definition (
4077         id,
4078         active,
4079         owner,
4080         name,
4081         hook,
4082         validator,
4083         reactor,
4084         group_field,
4085         granularity,
4086         template
4087     ) VALUES (
4088         29,
4089         TRUE,
4090         1,
4091         'money.payment_receipt.email',
4092         'money.format.payment_receipt.email',
4093         'NOOP_True',
4094         'SendEmail',
4095         'xact.usr',
4096         NULL,
4097 $$
4098 [%- USE date -%]
4099 [%- SET user = target.0.xact.usr -%]
4100 To: [%- params.recipient_email || user.email %]
4101 From: [%- params.sender_email || default_sender %]
4102 Subject: Payment Receipt
4103
4104 [% date.format -%]
4105 [%- SET xact_mp_hash = {} -%]
4106 [%- FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions -%]
4107     [%- SET xact_id = mp.xact.id -%]
4108     [%- IF ! xact_mp_hash.defined( xact_id ) -%][%- xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } -%][%- END -%]
4109     [%- xact_mp_hash.$xact_id.payments.push(mp) -%]
4110 [%- END -%]
4111 [%- FOR xact_id IN xact_mp_hash.keys.sort -%]
4112     [%- SET xact = xact_mp_hash.$xact_id.xact %]
4113 Transaction ID: [% xact_id %]
4114     [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4115     [% ELSE %]Miscellaneous
4116     [% END %]
4117     Line item billings:
4118         [%- SET mb_type_hash = {} -%]
4119         [%- FOR mb IN xact.billings %][%# Group billings by their btype -%]
4120             [%- IF mb.voided == 'f' -%]
4121                 [%- SET mb_type = mb.btype.id -%]
4122                 [%- IF ! mb_type_hash.defined( mb_type ) -%][%- mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } -%][%- END -%]
4123                 [%- IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) -%][%- mb_type_hash.$mb_type.first_ts = mb.billing_ts -%][%- END -%]
4124                 [%- mb_type_hash.$mb_type.last_ts = mb.billing_ts -%]
4125                 [%- mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount -%]
4126                 [%- mb_type_hash.$mb_type.billings.push( mb ) -%]
4127             [%- END -%]
4128         [%- END -%]
4129         [%- FOR mb_type IN mb_type_hash.keys.sort -%]
4130             [%- IF mb_type == 1 %][%-# Consolidated view of overdue billings -%]
4131                 $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4132                     on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4133             [%- ELSE -%][%# all other billings show individually %]
4134                 [% FOR mb IN mb_type_hash.$mb_type.billings %]
4135                     $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4136                 [% END %]
4137             [% END %]
4138         [% END %]
4139     Line item payments:
4140         [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4141             Payment ID: [% mp.id %]
4142                 Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4143                     [% CASE "cash_payment" %]cash
4144                     [% CASE "check_payment" %]check
4145                     [% CASE "credit_card_payment" %]credit card (
4146                         [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4147                         [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4148                         [% cc_chunks.last -%]
4149                         exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4150                     )
4151                     [% CASE "credit_payment" %]credit
4152                     [% CASE "forgive_payment" %]forgiveness
4153                     [% CASE "goods_payment" %]goods
4154                     [% CASE "work_payment" %]work
4155                 [%- END %] on [% mp.payment_ts %] [% mp.note %]
4156         [% END %]
4157 [% END %]
4158 $$
4159     )
4160     ,(
4161         30,
4162         TRUE,
4163         1,
4164         'money.payment_receipt.print',
4165         'money.format.payment_receipt.print',
4166         'NOOP_True',
4167         'ProcessTemplate',
4168         'xact.usr',
4169         'print-on-demand',
4170 $$
4171 [%- USE date -%][%- SET user = target.0.xact.usr -%]
4172 <div style="li { padding: 8px; margin 5px; }">
4173     <div>[% date.format %]</div><br/>
4174     <ol>
4175     [% SET xact_mp_hash = {} %]
4176     [% FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions %]
4177         [% SET xact_id = mp.xact.id %]
4178         [% IF ! xact_mp_hash.defined( xact_id ) %][% xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } %][% END %]
4179         [% xact_mp_hash.$xact_id.payments.push(mp) %]
4180     [% END %]
4181     [% FOR xact_id IN xact_mp_hash.keys.sort %]
4182         [% SET xact = xact_mp_hash.$xact_id.xact %]
4183         <li>Transaction ID: [% xact_id %]
4184             [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4185             [% ELSE %]Miscellaneous
4186             [% END %]
4187             Line item billings:<ol>
4188                 [% SET mb_type_hash = {} %]
4189                 [% FOR mb IN xact.billings %][%# Group billings by their btype %]
4190                     [% IF mb.voided == 'f' %]
4191                         [% SET mb_type = mb.btype.id %]
4192                         [% IF ! mb_type_hash.defined( mb_type ) %][% mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } %][% END %]
4193                         [% IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) %][% mb_type_hash.$mb_type.first_ts = mb.billing_ts %][% END %]
4194                         [% mb_type_hash.$mb_type.last_ts = mb.billing_ts %]
4195                         [% mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount %]
4196                         [% mb_type_hash.$mb_type.billings.push( mb ) %]
4197                     [% END %]
4198                 [% END %]
4199                 [% FOR mb_type IN mb_type_hash.keys.sort %]
4200                     <li>[% IF mb_type == 1 %][%# Consolidated view of overdue billings %]
4201                         $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4202                             on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4203                     [% ELSE %][%# all other billings show individually %]
4204                         [% FOR mb IN mb_type_hash.$mb_type.billings %]
4205                             $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4206                         [% END %]
4207                     [% END %]</li>
4208                 [% END %]
4209             </ol>
4210             Line item payments:<ol>
4211                 [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4212                     <li>Payment ID: [% mp.id %]
4213                         Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4214                             [% CASE "cash_payment" %]cash
4215                             [% CASE "check_payment" %]check
4216                             [% CASE "credit_card_payment" %]credit card (
4217                                 [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4218                                 [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4219                                 [% cc_chunks.last -%]
4220                                 exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4221                             )
4222                             [% CASE "credit_payment" %]credit
4223                             [% CASE "forgive_payment" %]forgiveness
4224                             [% CASE "goods_payment" %]goods
4225                             [% CASE "work_payment" %]work
4226                         [%- END %] on [% mp.payment_ts %] [% mp.note %]
4227                     </li>
4228                 [% END %]
4229             </ol>
4230         </li>
4231     [% END %]
4232     </ol>
4233 </div>
4234 $$
4235     )
4236 ;
4237
4238 INSERT INTO action_trigger.environment (
4239         event_def,
4240         path
4241     ) VALUES -- for fleshing mp objects
4242          ( 29, 'xact')
4243         ,( 29, 'xact.usr')
4244         ,( 29, 'xact.grocery' )
4245         ,( 29, 'xact.circulation' )
4246         ,( 29, 'xact.summary' )
4247         ,( 30, 'xact')
4248         ,( 30, 'xact.usr')
4249         ,( 30, 'xact.grocery' )
4250         ,( 30, 'xact.circulation' )
4251         ,( 30, 'xact.summary' )
4252 ;
4253
4254 INSERT INTO action_trigger.cleanup ( module, description ) VALUES (
4255     'DeleteTempBiblioBucket',
4256     oils_i18n_gettext(
4257         'DeleteTempBiblioBucket',
4258         'Deletes a cbreb object used as a target if it has a btype of "temp"',
4259         'atclean',
4260         'description'
4261     )
4262 );
4263
4264 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4265         'biblio.format.record_entry.email',
4266         'cbreb', 
4267         oils_i18n_gettext(
4268             'biblio.format.record_entry.email',
4269             'An email has been requested for one or more biblio record entries.',
4270             'ath',
4271             'description'
4272         ), 
4273         FALSE
4274     )
4275     ,(
4276         'biblio.format.record_entry.print',
4277         'cbreb', 
4278         oils_i18n_gettext(
4279             'biblio.format.record_entry.print',
4280             'One or more biblio record entries need to be formatted for printing.',
4281             'ath',
4282             'description'
4283         ), 
4284         FALSE
4285     )
4286 ;
4287
4288 INSERT INTO action_trigger.event_definition (
4289         id,
4290         active,
4291         owner,
4292         name,
4293         hook,
4294         validator,
4295         reactor,
4296         cleanup_success,
4297         cleanup_failure,
4298         group_field,
4299         granularity,
4300         template
4301     ) VALUES (
4302         31,
4303         TRUE,
4304         1,
4305         'biblio.record_entry.email',
4306         'biblio.format.record_entry.email',
4307         'NOOP_True',
4308         'SendEmail',
4309         'DeleteTempBiblioBucket',
4310         'DeleteTempBiblioBucket',
4311         'owner',
4312         NULL,
4313 $$
4314 [%- USE date -%]
4315 [%- SET user = target.0.owner -%]
4316 To: [%- params.recipient_email || user.email %]
4317 From: [%- params.sender_email || default_sender %]
4318 Subject: Bibliographic Records
4319
4320     [% FOR cbreb IN target %]
4321     [% FOR cbrebi IN cbreb.items %]
4322         Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]
4323         Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]
4324         Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]
4325         Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4326
4327     [% END %]
4328     [% END %]
4329 $$
4330     )
4331     ,(
4332         32,
4333         TRUE,
4334         1,
4335         'biblio.record_entry.print',
4336         'biblio.format.record_entry.print',
4337         'NOOP_True',
4338         'ProcessTemplate',
4339         'DeleteTempBiblioBucket',
4340         'DeleteTempBiblioBucket',
4341         'owner',
4342         'print-on-demand',
4343 $$
4344 [%- USE date -%]
4345 <div>
4346     <style> li { padding: 8px; margin 5px; }</style>
4347     <ol>
4348     [% FOR cbreb IN target %]
4349     [% FOR cbrebi IN cbreb.items %]
4350         <li>Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]<br />
4351             Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]<br />
4352             Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]<br />
4353             Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4354         </li>
4355     [% END %]
4356     [% END %]
4357     </ol>
4358 </div>
4359 $$
4360     )
4361 ;
4362
4363 INSERT INTO action_trigger.environment (
4364         event_def,
4365         path
4366     ) VALUES -- for fleshing cbreb objects
4367          ( 31, 'owner' )
4368         ,( 31, 'items' )
4369         ,( 31, 'items.target_biblio_record_entry' )
4370         ,( 31, 'items.target_biblio_record_entry.simple_record' )
4371         ,( 31, 'items.target_biblio_record_entry.call_numbers' )
4372         ,( 31, 'items.target_biblio_record_entry.fixed_fields' )
4373         ,( 31, 'items.target_biblio_record_entry.notes' )
4374         ,( 31, 'items.target_biblio_record_entry.full_record_entries' )
4375         ,( 32, 'owner' )
4376         ,( 32, 'items' )
4377         ,( 32, 'items.target_biblio_record_entry' )
4378         ,( 32, 'items.target_biblio_record_entry.simple_record' )
4379         ,( 32, 'items.target_biblio_record_entry.call_numbers' )
4380         ,( 32, 'items.target_biblio_record_entry.fixed_fields' )
4381         ,( 32, 'items.target_biblio_record_entry.notes' )
4382         ,( 32, 'items.target_biblio_record_entry.full_record_entries' )
4383 ;
4384
4385 INSERT INTO action_trigger.environment (
4386         event_def,
4387         path
4388     ) VALUES -- for fleshing mp objects
4389          ( 29, 'credit_card_payment')
4390         ,( 29, 'xact.billings')
4391         ,( 29, 'xact.billings.btype')
4392         ,( 30, 'credit_card_payment')
4393         ,( 30, 'xact.billings')
4394         ,( 30, 'xact.billings.btype')
4395 ;
4396
4397 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
4398     (   'circ.format.missing_pieces.slip.print',
4399         'circ', 
4400         oils_i18n_gettext(
4401             'circ.format.missing_pieces.slip.print',
4402             'A missing pieces slip needs to be formatted for printing.',
4403             'ath',
4404             'description'
4405         ), 
4406         FALSE
4407     )
4408     ,(  'circ.format.missing_pieces.letter.print',
4409         'circ', 
4410         oils_i18n_gettext(
4411             'circ.format.missing_pieces.letter.print',
4412             'A missing pieces patron letter needs to be formatted for printing.',
4413             'ath',
4414             'description'
4415         ), 
4416         FALSE
4417     )
4418 ;
4419
4420 INSERT INTO action_trigger.event_definition (
4421         id,
4422         active,
4423         owner,
4424         name,
4425         hook,
4426         validator,
4427         reactor,
4428         group_field,
4429         granularity,
4430         template
4431     ) VALUES (
4432         33,
4433         TRUE,
4434         1,
4435         'circ.missing_pieces.slip.print',
4436         'circ.format.missing_pieces.slip.print',
4437         'NOOP_True',
4438         'ProcessTemplate',
4439         'usr',
4440         'print-on-demand',
4441 $$
4442 [%- USE date -%]
4443 [%- SET user = target.0.usr -%]
4444 <div style="li { padding: 8px; margin 5px; }">
4445     <div>[% date.format %]</div><br/>
4446     Missing pieces for:
4447     <ol>
4448     [% FOR circ IN target %]
4449         <li>Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]<br />
4450             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4451         </li>
4452     [% END %]
4453     </ol>
4454 </div>
4455 $$
4456     )
4457     ,(
4458         34,
4459         TRUE,
4460         1,
4461         'circ.missing_pieces.letter.print',
4462         'circ.format.missing_pieces.letter.print',
4463         'NOOP_True',
4464         'ProcessTemplate',
4465         'usr',
4466         'print-on-demand',
4467 $$
4468 [%- USE date -%]
4469 [%- SET user = target.0.usr -%]
4470 [% date.format %]
4471 Dear [% user.prefix %] [% user.first_given_name %] [% user.family_name %],
4472
4473 We are missing pieces for the following returned items:
4474 [% FOR circ IN target %]
4475 Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]
4476 [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4477 [% END %]
4478
4479 Please return these pieces as soon as possible.
4480
4481 Thanks!
4482
4483 Library Staff
4484 $$
4485     )
4486 ;
4487
4488 INSERT INTO action_trigger.environment (
4489         event_def,
4490         path
4491     ) VALUES -- for fleshing circ objects
4492          ( 33, 'usr')
4493         ,( 33, 'target_copy')
4494         ,( 33, 'target_copy.circ_lib')
4495         ,( 33, 'target_copy.circ_lib.mailing_address')
4496         ,( 33, 'target_copy.circ_lib.billing_address')
4497         ,( 33, 'target_copy.call_number')
4498         ,( 33, 'target_copy.call_number.owning_lib')
4499         ,( 33, 'target_copy.call_number.owning_lib.mailing_address')
4500         ,( 33, 'target_copy.call_number.owning_lib.billing_address')
4501         ,( 33, 'circ_lib')
4502         ,( 33, 'circ_lib.mailing_address')
4503         ,( 33, 'circ_lib.billing_address')
4504         ,( 34, 'usr')
4505         ,( 34, 'target_copy')
4506         ,( 34, 'target_copy.circ_lib')
4507         ,( 34, 'target_copy.circ_lib.mailing_address')
4508         ,( 34, 'target_copy.circ_lib.billing_address')
4509         ,( 34, 'target_copy.call_number')
4510         ,( 34, 'target_copy.call_number.owning_lib')
4511         ,( 34, 'target_copy.call_number.owning_lib.mailing_address')
4512         ,( 34, 'target_copy.call_number.owning_lib.billing_address')
4513         ,( 34, 'circ_lib')
4514         ,( 34, 'circ_lib.mailing_address')
4515         ,( 34, 'circ_lib.billing_address')
4516 ;
4517
4518 INSERT INTO action_trigger.hook (key,core_type,description,passive) 
4519     VALUES (   
4520         'ahr.format.pull_list',
4521         'ahr', 
4522         oils_i18n_gettext(
4523             'ahr.format.pull_list',
4524             'Format holds pull list for printing',
4525             'ath',
4526             'description'
4527         ), 
4528         FALSE
4529     );
4530
4531 INSERT INTO action_trigger.event_definition (
4532         id,
4533         active,
4534         owner,
4535         name,
4536         hook,
4537         validator,
4538         reactor,
4539         group_field,
4540         granularity,
4541         template
4542     ) VALUES (
4543         35,
4544         TRUE,
4545         1,
4546         'Holds Pull List',
4547         'ahr.format.pull_list',
4548         'NOOP_True',
4549         'ProcessTemplate',
4550         'pickup_lib',
4551         'print-on-demand',
4552 $$
4553 [%- USE date -%]
4554 <style>
4555     table { border-collapse: collapse; } 
4556     td { padding: 5px; border-bottom: 1px solid #888; } 
4557     th { font-weight: bold; }
4558 </style>
4559 [% 
4560     # Sort the holds into copy-location buckets
4561     # In the main print loop, sort each bucket by callnumber before printing
4562     SET holds_list = [];
4563     SET loc_data = [];
4564     SET current_location = target.0.current_copy.location.id;
4565     FOR hold IN target;
4566         IF current_location != hold.current_copy.location.id;
4567             SET current_location = hold.current_copy.location.id;
4568             holds_list.push(loc_data);
4569             SET loc_data = [];
4570         END;
4571         SET hold_data = {
4572             'hold' => hold,
4573             'callnumber' => hold.current_copy.call_number.label
4574         };
4575         loc_data.push(hold_data);
4576     END;
4577     holds_list.push(loc_data)
4578 %]
4579 <table>
4580     <thead>
4581         <tr>
4582             <th>Title</th>
4583             <th>Author</th>
4584             <th>Shelving Location</th>
4585             <th>Call Number</th>
4586             <th>Barcode</th>
4587             <th>Patron</th>
4588         </tr>
4589     </thead>
4590     <tbody>
4591     [% FOR loc_data IN holds_list  %]
4592         [% FOR hold_data IN loc_data.sort('callnumber') %]
4593             [% 
4594                 SET hold = hold_data.hold;
4595                 SET copy_data = helpers.get_copy_bib_basics(hold.current_copy.id);
4596             %]
4597             <tr>
4598                 <td>[% copy_data.title | truncate %]</td>
4599                 <td>[% copy_data.author | truncate %]</td>
4600                 <td>[% hold.current_copy.location.name %]</td>
4601                 <td>[% hold.current_copy.call_number.label %]</td>
4602                 <td>[% hold.current_copy.barcode %]</td>
4603                 <td>[% hold.usr.card.barcode %]</td>
4604             </tr>
4605         [% END %]
4606     [% END %]
4607     <tbody>
4608 </table>
4609 $$
4610 );
4611
4612 INSERT INTO action_trigger.environment (
4613         event_def,
4614         path
4615     ) VALUES
4616         (35, 'current_copy.location'),
4617         (35, 'current_copy.call_number'),
4618         (35, 'usr.card'),
4619         (35, 'pickup_lib')
4620 ;
4621
4622 -- Create the query schema, and the tables and views therein
4623
4624 DROP SCHEMA IF EXISTS sql CASCADE;
4625 DROP SCHEMA IF EXISTS query CASCADE;
4626
4627 CREATE SCHEMA query;
4628
4629 CREATE TABLE query.datatype (
4630         id              SERIAL            PRIMARY KEY,
4631         datatype_name   TEXT              NOT NULL UNIQUE,
4632         is_numeric      BOOL              NOT NULL DEFAULT FALSE,
4633         is_composite    BOOL              NOT NULL DEFAULT FALSE,
4634         CONSTRAINT qdt_comp_not_num CHECK
4635         ( is_numeric IS FALSE OR is_composite IS FALSE )
4636 );
4637
4638 -- Define the most common datatypes in query.datatype.  Note that none of
4639 -- these stock datatypes specifies a width or precision.
4640
4641 -- Also: set the sequence for query.datatype to 1000, leaving plenty of
4642 -- room for more stock datatypes if we ever want to add them.
4643
4644 SELECT setval( 'query.datatype_id_seq', 1000 );
4645
4646 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4647   VALUES (1, 'SMALLINT', true);
4648  
4649 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4650   VALUES (2, 'INTEGER', true);
4651  
4652 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4653   VALUES (3, 'BIGINT', true);
4654  
4655 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4656   VALUES (4, 'DECIMAL', true);
4657  
4658 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4659   VALUES (5, 'NUMERIC', true);
4660  
4661 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4662   VALUES (6, 'REAL', true);
4663  
4664 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4665   VALUES (7, 'DOUBLE PRECISION', true);
4666  
4667 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4668   VALUES (8, 'SERIAL', true);
4669  
4670 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4671   VALUES (9, 'BIGSERIAL', true);
4672  
4673 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4674   VALUES (10, 'MONEY', false);
4675  
4676 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4677   VALUES (11, 'VARCHAR', false);
4678  
4679 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4680   VALUES (12, 'CHAR', false);
4681  
4682 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4683   VALUES (13, 'TEXT', false);
4684  
4685 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4686   VALUES (14, '"char"', false);
4687  
4688 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4689   VALUES (15, 'NAME', false);
4690  
4691 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4692   VALUES (16, 'BYTEA', false);
4693  
4694 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4695   VALUES (17, 'TIMESTAMP WITHOUT TIME ZONE', false);
4696  
4697 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4698   VALUES (18, 'TIMESTAMP WITH TIME ZONE', false);
4699  
4700 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4701   VALUES (19, 'DATE', false);
4702  
4703 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4704   VALUES (20, 'TIME WITHOUT TIME ZONE', false);
4705  
4706 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4707   VALUES (21, 'TIME WITH TIME ZONE', false);
4708  
4709 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4710   VALUES (22, 'INTERVAL', false);
4711  
4712 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4713   VALUES (23, 'BOOLEAN', false);
4714  
4715 CREATE TABLE query.subfield (
4716         id              SERIAL            PRIMARY KEY,
4717         composite_type  INT               NOT NULL
4718                                           REFERENCES query.datatype(id)
4719                                           ON DELETE CASCADE
4720                                           DEFERRABLE INITIALLY DEFERRED,
4721         seq_no          INT               NOT NULL
4722                                           CONSTRAINT qsf_pos_seq_no
4723                                           CHECK( seq_no > 0 ),
4724         subfield_type   INT               NOT NULL
4725                                           REFERENCES query.datatype(id)
4726                                           DEFERRABLE INITIALLY DEFERRED,
4727         CONSTRAINT qsf_datatype_seq_no UNIQUE (composite_type, seq_no)
4728 );
4729
4730 CREATE TABLE query.function_sig (
4731         id              SERIAL            PRIMARY KEY,
4732         function_name   TEXT              NOT NULL,
4733         return_type     INT               REFERENCES query.datatype(id)
4734                                           DEFERRABLE INITIALLY DEFERRED,
4735         is_aggregate    BOOL              NOT NULL DEFAULT FALSE,
4736         CONSTRAINT qfd_rtn_or_aggr CHECK
4737         ( return_type IS NULL OR is_aggregate = FALSE )
4738 );
4739
4740 CREATE INDEX query_function_sig_name_idx 
4741         ON query.function_sig (function_name);
4742
4743 CREATE TABLE query.function_param_def (
4744         id              SERIAL            PRIMARY KEY,
4745         function_id     INT               NOT NULL
4746                                           REFERENCES query.function_sig( id )
4747                                           ON DELETE CASCADE
4748                                           DEFERRABLE INITIALLY DEFERRED,
4749         seq_no          INT               NOT NULL
4750                                           CONSTRAINT qfpd_pos_seq_no CHECK
4751                                           ( seq_no > 0 ),
4752         datatype        INT               NOT NULL
4753                                           REFERENCES query.datatype( id )
4754                                           DEFERRABLE INITIALLY DEFERRED,
4755         CONSTRAINT qfpd_function_param_seq UNIQUE (function_id, seq_no)
4756 );
4757
4758 CREATE TABLE  query.stored_query (
4759         id            SERIAL         PRIMARY KEY,
4760         type          TEXT           NOT NULL CONSTRAINT query_type CHECK
4761                                      ( type IN ( 'SELECT', 'UNION', 'INTERSECT', 'EXCEPT' ) ),
4762         use_all       BOOLEAN        NOT NULL DEFAULT FALSE,
4763         use_distinct  BOOLEAN        NOT NULL DEFAULT FALSE,
4764         from_clause   INT            , --REFERENCES query.from_clause
4765                                      --DEFERRABLE INITIALLY DEFERRED,
4766         where_clause  INT            , --REFERENCES query.expression
4767                                      --DEFERRABLE INITIALLY DEFERRED,
4768         having_clause INT            , --REFERENCES query.expression
4769                                      --DEFERRABLE INITIALLY DEFERRED
4770         limit_count   INT            , --REFERENCES query.expression( id )
4771                                      --DEFERRABLE INITIALLY DEFERRED,
4772         offset_count  INT            --REFERENCES query.expression( id )
4773                                      --DEFERRABLE INITIALLY DEFERRED
4774 );
4775
4776 -- (Foreign keys to be defined later after other tables are created)
4777
4778 CREATE TABLE query.query_sequence (
4779         id              SERIAL            PRIMARY KEY,
4780         parent_query    INT               NOT NULL
4781                                           REFERENCES query.stored_query
4782                                                                           ON DELETE CASCADE
4783                                                                           DEFERRABLE INITIALLY DEFERRED,
4784         seq_no          INT               NOT NULL,
4785         child_query     INT               NOT NULL
4786                                           REFERENCES query.stored_query
4787                                                                           ON DELETE CASCADE
4788                                                                           DEFERRABLE INITIALLY DEFERRED,
4789         CONSTRAINT query_query_seq UNIQUE( parent_query, seq_no )
4790 );
4791
4792 CREATE TABLE query.bind_variable (
4793         name          TEXT             PRIMARY KEY,
4794         type          TEXT             NOT NULL
4795                                            CONSTRAINT bind_variable_type CHECK
4796                                            ( type in ( 'string', 'number', 'string_list', 'number_list' )),
4797         description   TEXT             NOT NULL,
4798         default_value TEXT,            -- to be encoded in JSON
4799         label         TEXT             NOT NULL
4800 );
4801
4802 CREATE TABLE query.expression (
4803         id            SERIAL        PRIMARY KEY,
4804         type          TEXT          NOT NULL CONSTRAINT expression_type CHECK
4805                                     ( type IN (
4806                                     'xbet',    -- between
4807                                     'xbind',   -- bind variable
4808                                     'xbool',   -- boolean
4809                                     'xcase',   -- case
4810                                     'xcast',   -- cast
4811                                     'xcol',    -- column
4812                                     'xex',     -- exists
4813                                     'xfunc',   -- function
4814                                     'xin',     -- in
4815                                     'xisnull', -- is null
4816                                     'xnull',   -- null
4817                                     'xnum',    -- number
4818                                     'xop',     -- operator
4819                                     'xser',    -- series
4820                                     'xstr',    -- string
4821                                     'xsubq'    -- subquery
4822                                                                 ) ),
4823         parenthesize  BOOL          NOT NULL DEFAULT FALSE,
4824         parent_expr   INT           REFERENCES query.expression
4825                                     ON DELETE CASCADE
4826                                     DEFERRABLE INITIALLY DEFERRED,
4827         seq_no        INT           NOT NULL DEFAULT 1,
4828         literal       TEXT,
4829         table_alias   TEXT,
4830         column_name   TEXT,
4831         left_operand  INT           REFERENCES query.expression
4832                                     DEFERRABLE INITIALLY DEFERRED,
4833         operator      TEXT,
4834         right_operand INT           REFERENCES query.expression
4835                                     DEFERRABLE INITIALLY DEFERRED,
4836         function_id   INT           REFERENCES query.function_sig
4837                                     DEFERRABLE INITIALLY DEFERRED,
4838         subquery      INT           REFERENCES query.stored_query
4839                                     DEFERRABLE INITIALLY DEFERRED,
4840         cast_type     INT           REFERENCES query.datatype
4841                                     DEFERRABLE INITIALLY DEFERRED,
4842         negate        BOOL          NOT NULL DEFAULT FALSE,
4843         bind_variable TEXT          REFERENCES query.bind_variable
4844                                         DEFERRABLE INITIALLY DEFERRED
4845 );
4846
4847 CREATE UNIQUE INDEX query_expr_parent_seq
4848         ON query.expression( parent_expr, seq_no )
4849         WHERE parent_expr IS NOT NULL;
4850
4851 -- Due to some circular references, the following foreign key definitions
4852 -- had to be deferred until query.expression existed:
4853
4854 ALTER TABLE query.stored_query
4855         ADD FOREIGN KEY ( where_clause )
4856         REFERENCES query.expression( id )
4857         DEFERRABLE INITIALLY DEFERRED;
4858
4859 ALTER TABLE query.stored_query
4860         ADD FOREIGN KEY ( having_clause )
4861         REFERENCES query.expression( id )
4862         DEFERRABLE INITIALLY DEFERRED;
4863
4864 ALTER TABLE query.stored_query
4865     ADD FOREIGN KEY ( limit_count )
4866     REFERENCES query.expression( id )
4867     DEFERRABLE INITIALLY DEFERRED;
4868
4869 ALTER TABLE query.stored_query
4870     ADD FOREIGN KEY ( offset_count )
4871     REFERENCES query.expression( id )
4872     DEFERRABLE INITIALLY DEFERRED;
4873
4874 CREATE TABLE query.case_branch (
4875         id            SERIAL        PRIMARY KEY,
4876         parent_expr   INT           NOT NULL REFERENCES query.expression
4877                                     ON DELETE CASCADE
4878                                     DEFERRABLE INITIALLY DEFERRED,
4879         seq_no        INT           NOT NULL,
4880         condition     INT           REFERENCES query.expression
4881                                     DEFERRABLE INITIALLY DEFERRED,
4882         result        INT           NOT NULL REFERENCES query.expression
4883                                     DEFERRABLE INITIALLY DEFERRED,
4884         CONSTRAINT case_branch_parent_seq UNIQUE (parent_expr, seq_no)
4885 );
4886
4887 CREATE TABLE query.from_relation (
4888         id               SERIAL        PRIMARY KEY,
4889         type             TEXT          NOT NULL CONSTRAINT relation_type CHECK (
4890                                            type IN ( 'RELATION', 'SUBQUERY', 'FUNCTION' ) ),
4891         table_name       TEXT,
4892         class_name       TEXT,
4893         subquery         INT           REFERENCES query.stored_query,
4894         function_call    INT           REFERENCES query.expression,
4895         table_alias      TEXT,
4896         parent_relation  INT           REFERENCES query.from_relation
4897                                        ON DELETE CASCADE
4898                                        DEFERRABLE INITIALLY DEFERRED,
4899         seq_no           INT           NOT NULL DEFAULT 1,
4900         join_type        TEXT          CONSTRAINT good_join_type CHECK (
4901                                            join_type IS NULL OR join_type IN
4902                                            ( 'INNER', 'LEFT', 'RIGHT', 'FULL' )
4903                                        ),
4904         on_clause        INT           REFERENCES query.expression
4905                                        DEFERRABLE INITIALLY DEFERRED,
4906         CONSTRAINT join_or_core CHECK (
4907         ( parent_relation IS NULL AND join_type IS NULL
4908           AND on_clause IS NULL )
4909         OR
4910         ( parent_relation IS NOT NULL AND join_type IS NOT NULL
4911           AND on_clause IS NOT NULL )
4912         )
4913 );
4914
4915 CREATE UNIQUE INDEX from_parent_seq
4916         ON query.from_relation( parent_relation, seq_no )
4917         WHERE parent_relation IS NOT NULL;
4918
4919 -- The following foreign key had to be deferred until
4920 -- query.from_relation existed
4921
4922 ALTER TABLE query.stored_query
4923         ADD FOREIGN KEY (from_clause)
4924         REFERENCES query.from_relation
4925         DEFERRABLE INITIALLY DEFERRED;
4926
4927 CREATE TABLE query.record_column (
4928         id            SERIAL            PRIMARY KEY,
4929         from_relation INT               NOT NULL REFERENCES query.from_relation
4930                                         ON DELETE CASCADE
4931                                         DEFERRABLE INITIALLY DEFERRED,
4932         seq_no        INT               NOT NULL,
4933         column_name   TEXT              NOT NULL,
4934         column_type   INT               NOT NULL REFERENCES query.datatype
4935                                         ON DELETE CASCADE
4936                                                                         DEFERRABLE INITIALLY DEFERRED,
4937         CONSTRAINT column_sequence UNIQUE (from_relation, seq_no)
4938 );
4939
4940 CREATE TABLE query.select_item (
4941         id               SERIAL         PRIMARY KEY,
4942         stored_query     INT            NOT NULL REFERENCES query.stored_query
4943                                         ON DELETE CASCADE
4944                                         DEFERRABLE INITIALLY DEFERRED,
4945         seq_no           INT            NOT NULL,
4946         expression       INT            NOT NULL REFERENCES query.expression
4947                                         DEFERRABLE INITIALLY DEFERRED,
4948         column_alias     TEXT,
4949         grouped_by       BOOL           NOT NULL DEFAULT FALSE,
4950         CONSTRAINT select_sequence UNIQUE( stored_query, seq_no )
4951 );
4952
4953 CREATE TABLE query.order_by_item (
4954         id               SERIAL         PRIMARY KEY,
4955         stored_query     INT            NOT NULL REFERENCES query.stored_query
4956                                         ON DELETE CASCADE
4957                                         DEFERRABLE INITIALLY DEFERRED,
4958         seq_no           INT            NOT NULL,
4959         expression       INT            NOT NULL REFERENCES query.expression
4960                                         ON DELETE CASCADE
4961                                         DEFERRABLE INITIALLY DEFERRED,
4962         CONSTRAINT order_by_sequence UNIQUE( stored_query, seq_no )
4963 );
4964
4965 ------------------------------------------------------------
4966 -- Create updatable views for different kinds of expressions
4967 ------------------------------------------------------------
4968
4969 -- Create updatable view for BETWEEN expressions
4970
4971 CREATE OR REPLACE VIEW query.expr_xbet AS
4972     SELECT
4973                 id,
4974                 parenthesize,
4975                 parent_expr,
4976                 seq_no,
4977                 left_operand,
4978                 negate
4979     FROM
4980         query.expression
4981     WHERE
4982         type = 'xbet';
4983
4984 CREATE OR REPLACE RULE query_expr_xbet_insert_rule AS
4985     ON INSERT TO query.expr_xbet
4986     DO INSTEAD
4987     INSERT INTO query.expression (
4988                 id,
4989                 type,
4990                 parenthesize,
4991                 parent_expr,
4992                 seq_no,
4993                 left_operand,
4994                 negate
4995     ) VALUES (
4996         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
4997         'xbet',
4998         COALESCE(NEW.parenthesize, FALSE),
4999         NEW.parent_expr,
5000         COALESCE(NEW.seq_no, 1),
5001                 NEW.left_operand,
5002                 COALESCE(NEW.negate, false)
5003     );
5004
5005 CREATE OR REPLACE RULE query_expr_xbet_update_rule AS
5006     ON UPDATE TO query.expr_xbet
5007     DO INSTEAD
5008     UPDATE query.expression SET
5009         id = NEW.id,
5010         parenthesize = NEW.parenthesize,
5011         parent_expr = NEW.parent_expr,
5012         seq_no = NEW.seq_no,
5013                 left_operand = NEW.left_operand,
5014                 negate = NEW.negate
5015     WHERE
5016         id = OLD.id;
5017
5018 CREATE OR REPLACE RULE query_expr_xbet_delete_rule AS
5019     ON DELETE TO query.expr_xbet
5020     DO INSTEAD
5021     DELETE FROM query.expression WHERE id = OLD.id;
5022
5023 -- Create updatable view for bind variable expressions
5024
5025 CREATE OR REPLACE VIEW query.expr_xbind AS
5026     SELECT
5027                 id,
5028                 parenthesize,
5029                 parent_expr,
5030                 seq_no,
5031                 bind_variable
5032     FROM
5033         query.expression
5034     WHERE
5035         type = 'xbind';
5036
5037 CREATE OR REPLACE RULE query_expr_xbind_insert_rule AS
5038     ON INSERT TO query.expr_xbind
5039     DO INSTEAD
5040     INSERT INTO query.expression (
5041                 id,
5042                 type,
5043                 parenthesize,
5044                 parent_expr,
5045                 seq_no,
5046                 bind_variable
5047     ) VALUES (
5048         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5049         'xbind',
5050         COALESCE(NEW.parenthesize, FALSE),
5051         NEW.parent_expr,
5052         COALESCE(NEW.seq_no, 1),
5053                 NEW.bind_variable
5054     );
5055
5056 CREATE OR REPLACE RULE query_expr_xbind_update_rule AS
5057     ON UPDATE TO query.expr_xbind
5058     DO INSTEAD
5059     UPDATE query.expression SET
5060         id = NEW.id,
5061         parenthesize = NEW.parenthesize,
5062         parent_expr = NEW.parent_expr,
5063         seq_no = NEW.seq_no,
5064                 bind_variable = NEW.bind_variable
5065     WHERE
5066         id = OLD.id;
5067
5068 CREATE OR REPLACE RULE query_expr_xbind_delete_rule AS
5069     ON DELETE TO query.expr_xbind
5070     DO INSTEAD
5071     DELETE FROM query.expression WHERE id = OLD.id;
5072
5073 -- Create updatable view for boolean expressions
5074
5075 CREATE OR REPLACE VIEW query.expr_xbool AS
5076     SELECT
5077                 id,
5078                 parenthesize,
5079                 parent_expr,
5080                 seq_no,
5081                 literal,
5082                 negate
5083     FROM
5084         query.expression
5085     WHERE
5086         type = 'xbool';
5087
5088 CREATE OR REPLACE RULE query_expr_xbool_insert_rule AS
5089     ON INSERT TO query.expr_xbool
5090     DO INSTEAD
5091     INSERT INTO query.expression (
5092                 id,
5093                 type,
5094                 parenthesize,
5095                 parent_expr,
5096                 seq_no,
5097                 literal,
5098                 negate
5099     ) VALUES (
5100         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5101         'xbool',
5102         COALESCE(NEW.parenthesize, FALSE),
5103         NEW.parent_expr,
5104         COALESCE(NEW.seq_no, 1),
5105         NEW.literal,
5106                 COALESCE(NEW.negate, false)
5107     );
5108
5109 CREATE OR REPLACE RULE query_expr_xbool_update_rule AS
5110     ON UPDATE TO query.expr_xbool
5111     DO INSTEAD
5112     UPDATE query.expression SET
5113         id = NEW.id,
5114         parenthesize = NEW.parenthesize,
5115         parent_expr = NEW.parent_expr,
5116         seq_no = NEW.seq_no,
5117         literal = NEW.literal,
5118                 negate = NEW.negate
5119     WHERE
5120         id = OLD.id;
5121
5122 CREATE OR REPLACE RULE query_expr_xbool_delete_rule AS
5123     ON DELETE TO query.expr_xbool
5124     DO INSTEAD
5125     DELETE FROM query.expression WHERE id = OLD.id;
5126
5127 -- Create updatable view for CASE expressions
5128
5129 CREATE OR REPLACE VIEW query.expr_xcase AS
5130     SELECT
5131                 id,
5132                 parenthesize,
5133                 parent_expr,
5134                 seq_no,
5135                 left_operand,
5136                 negate
5137     FROM
5138         query.expression
5139     WHERE
5140         type = 'xcase';
5141
5142 CREATE OR REPLACE RULE query_expr_xcase_insert_rule AS
5143     ON INSERT TO query.expr_xcase
5144     DO INSTEAD
5145     INSERT INTO query.expression (
5146                 id,
5147                 type,
5148                 parenthesize,
5149                 parent_expr,
5150                 seq_no,
5151                 left_operand,
5152                 negate
5153     ) VALUES (
5154         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5155         'xcase',
5156         COALESCE(NEW.parenthesize, FALSE),
5157         NEW.parent_expr,
5158         COALESCE(NEW.seq_no, 1),
5159                 NEW.left_operand,
5160                 COALESCE(NEW.negate, false)
5161     );
5162
5163 CREATE OR REPLACE RULE query_expr_xcase_update_rule AS
5164     ON UPDATE TO query.expr_xcase
5165     DO INSTEAD
5166     UPDATE query.expression SET
5167         id = NEW.id,
5168         parenthesize = NEW.parenthesize,
5169         parent_expr = NEW.parent_expr,
5170         seq_no = NEW.seq_no,
5171                 left_operand = NEW.left_operand,
5172                 negate = NEW.negate
5173     WHERE
5174         id = OLD.id;
5175
5176 CREATE OR REPLACE RULE query_expr_xcase_delete_rule AS
5177     ON DELETE TO query.expr_xcase
5178     DO INSTEAD
5179     DELETE FROM query.expression WHERE id = OLD.id;
5180
5181 -- Create updatable view for cast expressions
5182
5183 CREATE OR REPLACE VIEW query.expr_xcast AS
5184     SELECT
5185                 id,
5186                 parenthesize,
5187                 parent_expr,
5188                 seq_no,
5189                 left_operand,
5190                 cast_type,
5191                 negate
5192     FROM
5193         query.expression
5194     WHERE
5195         type = 'xcast';
5196
5197 CREATE OR REPLACE RULE query_expr_xcast_insert_rule AS
5198     ON INSERT TO query.expr_xcast
5199     DO INSTEAD
5200     INSERT INTO query.expression (
5201         id,
5202         type,
5203         parenthesize,
5204         parent_expr,
5205         seq_no,
5206         left_operand,
5207         cast_type,
5208         negate
5209     ) VALUES (
5210         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5211         'xcast',
5212         COALESCE(NEW.parenthesize, FALSE),
5213         NEW.parent_expr,
5214         COALESCE(NEW.seq_no, 1),
5215         NEW.left_operand,
5216         NEW.cast_type,
5217         COALESCE(NEW.negate, false)
5218     );
5219
5220 CREATE OR REPLACE RULE query_expr_xcast_update_rule AS
5221     ON UPDATE TO query.expr_xcast
5222     DO INSTEAD
5223     UPDATE query.expression SET
5224         id = NEW.id,
5225         parenthesize = NEW.parenthesize,
5226         parent_expr = NEW.parent_expr,
5227         seq_no = NEW.seq_no,
5228                 left_operand = NEW.left_operand,
5229                 cast_type = NEW.cast_type,
5230                 negate = NEW.negate
5231     WHERE
5232         id = OLD.id;
5233
5234 CREATE OR REPLACE RULE query_expr_xcast_delete_rule AS
5235     ON DELETE TO query.expr_xcast
5236     DO INSTEAD
5237     DELETE FROM query.expression WHERE id = OLD.id;
5238
5239 -- Create updatable view for column expressions
5240
5241 CREATE OR REPLACE VIEW query.expr_xcol AS
5242     SELECT
5243                 id,
5244                 parenthesize,
5245                 parent_expr,
5246                 seq_no,
5247                 table_alias,
5248                 column_name,
5249                 negate
5250     FROM
5251         query.expression
5252     WHERE
5253         type = 'xcol';
5254
5255 CREATE OR REPLACE RULE query_expr_xcol_insert_rule AS
5256     ON INSERT TO query.expr_xcol
5257     DO INSTEAD
5258     INSERT INTO query.expression (
5259                 id,
5260                 type,
5261                 parenthesize,
5262                 parent_expr,
5263                 seq_no,
5264                 table_alias,
5265                 column_name,
5266                 negate
5267     ) VALUES (
5268         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5269         'xcol',
5270         COALESCE(NEW.parenthesize, FALSE),
5271         NEW.parent_expr,
5272         COALESCE(NEW.seq_no, 1),
5273                 NEW.table_alias,
5274                 NEW.column_name,
5275                 COALESCE(NEW.negate, false)
5276     );
5277
5278 CREATE OR REPLACE RULE query_expr_xcol_update_rule AS
5279     ON UPDATE TO query.expr_xcol
5280     DO INSTEAD
5281     UPDATE query.expression SET
5282         id = NEW.id,
5283         parenthesize = NEW.parenthesize,
5284         parent_expr = NEW.parent_expr,
5285         seq_no = NEW.seq_no,
5286                 table_alias = NEW.table_alias,
5287                 column_name = NEW.column_name,
5288                 negate = NEW.negate
5289     WHERE
5290         id = OLD.id;
5291
5292 CREATE OR REPLACE RULE query_expr_xcol_delete_rule AS
5293     ON DELETE TO query.expr_xcol
5294     DO INSTEAD
5295     DELETE FROM query.expression WHERE id = OLD.id;
5296
5297 -- Create updatable view for EXISTS expressions
5298
5299 CREATE OR REPLACE VIEW query.expr_xex AS
5300     SELECT
5301                 id,
5302                 parenthesize,
5303                 parent_expr,
5304                 seq_no,
5305                 subquery,
5306                 negate
5307     FROM
5308         query.expression
5309     WHERE
5310         type = 'xex';
5311
5312 CREATE OR REPLACE RULE query_expr_xex_insert_rule AS
5313     ON INSERT TO query.expr_xex
5314     DO INSTEAD
5315     INSERT INTO query.expression (
5316                 id,
5317                 type,
5318                 parenthesize,
5319                 parent_expr,
5320                 seq_no,
5321                 subquery,
5322                 negate
5323     ) VALUES (
5324         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5325         'xex',
5326         COALESCE(NEW.parenthesize, FALSE),
5327         NEW.parent_expr,
5328         COALESCE(NEW.seq_no, 1),
5329                 NEW.subquery,
5330                 COALESCE(NEW.negate, false)
5331     );
5332
5333 CREATE OR REPLACE RULE query_expr_xex_update_rule AS
5334     ON UPDATE TO query.expr_xex
5335     DO INSTEAD
5336     UPDATE query.expression SET
5337         id = NEW.id,
5338         parenthesize = NEW.parenthesize,
5339         parent_expr = NEW.parent_expr,
5340         seq_no = NEW.seq_no,
5341                 subquery = NEW.subquery,
5342                 negate = NEW.negate
5343     WHERE
5344         id = OLD.id;
5345
5346 CREATE OR REPLACE RULE query_expr_xex_delete_rule AS
5347     ON DELETE TO query.expr_xex
5348     DO INSTEAD
5349     DELETE FROM query.expression WHERE id = OLD.id;
5350
5351 -- Create updatable view for function call expressions
5352
5353 CREATE OR REPLACE VIEW query.expr_xfunc AS
5354     SELECT
5355         id,
5356         parenthesize,
5357         parent_expr,
5358         seq_no,
5359         column_name,
5360         function_id,
5361         negate
5362     FROM
5363         query.expression
5364     WHERE
5365         type = 'xfunc';
5366
5367 CREATE OR REPLACE RULE query_expr_xfunc_insert_rule AS
5368     ON INSERT TO query.expr_xfunc
5369     DO INSTEAD
5370     INSERT INTO query.expression (
5371         id,
5372         type,
5373         parenthesize,
5374         parent_expr,
5375         seq_no,
5376         column_name,
5377         function_id,
5378         negate
5379     ) VALUES (
5380         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5381         'xfunc',
5382         COALESCE(NEW.parenthesize, FALSE),
5383         NEW.parent_expr,
5384         COALESCE(NEW.seq_no, 1),
5385         NEW.column_name,
5386         NEW.function_id,
5387         COALESCE(NEW.negate, false)
5388     );
5389
5390 CREATE OR REPLACE RULE query_expr_xfunc_update_rule AS
5391     ON UPDATE TO query.expr_xfunc
5392     DO INSTEAD
5393     UPDATE query.expression SET
5394         id = NEW.id,
5395         parenthesize = NEW.parenthesize,
5396         parent_expr = NEW.parent_expr,
5397         seq_no = NEW.seq_no,
5398         column_name = NEW.column_name,
5399         function_id = NEW.function_id,
5400         negate = NEW.negate
5401     WHERE
5402         id = OLD.id;
5403
5404 CREATE OR REPLACE RULE query_expr_xfunc_delete_rule AS
5405     ON DELETE TO query.expr_xfunc
5406     DO INSTEAD
5407     DELETE FROM query.expression WHERE id = OLD.id;
5408
5409 -- Create updatable view for IN expressions
5410
5411 CREATE OR REPLACE VIEW query.expr_xin AS
5412     SELECT
5413                 id,
5414                 parenthesize,
5415                 parent_expr,
5416                 seq_no,
5417                 left_operand,
5418                 subquery,
5419                 negate
5420     FROM
5421         query.expression
5422     WHERE
5423         type = 'xin';
5424
5425 CREATE OR REPLACE RULE query_expr_xin_insert_rule AS
5426     ON INSERT TO query.expr_xin
5427     DO INSTEAD
5428     INSERT INTO query.expression (
5429                 id,
5430                 type,
5431                 parenthesize,
5432                 parent_expr,
5433                 seq_no,
5434                 left_operand,
5435                 subquery,
5436                 negate
5437     ) VALUES (
5438         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5439         'xin',
5440         COALESCE(NEW.parenthesize, FALSE),
5441         NEW.parent_expr,
5442         COALESCE(NEW.seq_no, 1),
5443                 NEW.left_operand,
5444                 NEW.subquery,
5445                 COALESCE(NEW.negate, false)
5446     );
5447
5448 CREATE OR REPLACE RULE query_expr_xin_update_rule AS
5449     ON UPDATE TO query.expr_xin
5450     DO INSTEAD
5451     UPDATE query.expression SET
5452         id = NEW.id,
5453         parenthesize = NEW.parenthesize,
5454         parent_expr = NEW.parent_expr,
5455         seq_no = NEW.seq_no,
5456                 left_operand = NEW.left_operand,
5457                 subquery = NEW.subquery,
5458                 negate = NEW.negate
5459     WHERE
5460         id = OLD.id;
5461
5462 CREATE OR REPLACE RULE query_expr_xin_delete_rule AS
5463     ON DELETE TO query.expr_xin
5464     DO INSTEAD
5465     DELETE FROM query.expression WHERE id = OLD.id;
5466
5467 -- Create updatable view for IS NULL expressions
5468
5469 CREATE OR REPLACE VIEW query.expr_xisnull AS
5470     SELECT
5471                 id,
5472                 parenthesize,
5473                 parent_expr,
5474                 seq_no,
5475                 left_operand,
5476                 negate
5477     FROM
5478         query.expression
5479     WHERE
5480         type = 'xisnull';
5481
5482 CREATE OR REPLACE RULE query_expr_xisnull_insert_rule AS
5483     ON INSERT TO query.expr_xisnull
5484     DO INSTEAD
5485     INSERT INTO query.expression (
5486                 id,
5487                 type,
5488                 parenthesize,
5489                 parent_expr,
5490                 seq_no,
5491                 left_operand,
5492                 negate
5493     ) VALUES (
5494         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5495         'xisnull',
5496         COALESCE(NEW.parenthesize, FALSE),
5497         NEW.parent_expr,
5498         COALESCE(NEW.seq_no, 1),
5499                 NEW.left_operand,
5500                 COALESCE(NEW.negate, false)
5501     );
5502
5503 CREATE OR REPLACE RULE query_expr_xisnull_update_rule AS
5504     ON UPDATE TO query.expr_xisnull
5505     DO INSTEAD
5506     UPDATE query.expression SET
5507         id = NEW.id,
5508         parenthesize = NEW.parenthesize,
5509         parent_expr = NEW.parent_expr,
5510         seq_no = NEW.seq_no,
5511                 left_operand = NEW.left_operand,
5512                 negate = NEW.negate
5513     WHERE
5514         id = OLD.id;
5515
5516 CREATE OR REPLACE RULE query_expr_xisnull_delete_rule AS
5517     ON DELETE TO query.expr_xisnull
5518     DO INSTEAD
5519     DELETE FROM query.expression WHERE id = OLD.id;
5520
5521 -- Create updatable view for NULL expressions
5522
5523 CREATE OR REPLACE VIEW query.expr_xnull AS
5524     SELECT
5525                 id,
5526                 parenthesize,
5527                 parent_expr,
5528                 seq_no,
5529                 negate
5530     FROM
5531         query.expression
5532     WHERE
5533         type = 'xnull';
5534
5535 CREATE OR REPLACE RULE query_expr_xnull_insert_rule AS
5536     ON INSERT TO query.expr_xnull
5537     DO INSTEAD
5538     INSERT INTO query.expression (
5539                 id,
5540                 type,
5541                 parenthesize,
5542                 parent_expr,
5543                 seq_no,
5544                 negate
5545     ) VALUES (
5546         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5547         'xnull',
5548         COALESCE(NEW.parenthesize, FALSE),
5549         NEW.parent_expr,
5550         COALESCE(NEW.seq_no, 1),
5551                 COALESCE(NEW.negate, false)
5552     );
5553
5554 CREATE OR REPLACE RULE query_expr_xnull_update_rule AS
5555     ON UPDATE TO query.expr_xnull
5556     DO INSTEAD
5557     UPDATE query.expression SET
5558         id = NEW.id,
5559         parenthesize = NEW.parenthesize,
5560         parent_expr = NEW.parent_expr,
5561         seq_no = NEW.seq_no,
5562                 negate = NEW.negate
5563     WHERE
5564         id = OLD.id;
5565
5566 CREATE OR REPLACE RULE query_expr_xnull_delete_rule AS
5567     ON DELETE TO query.expr_xnull
5568     DO INSTEAD
5569     DELETE FROM query.expression WHERE id = OLD.id;
5570
5571 -- Create updatable view for numeric literal expressions
5572
5573 CREATE OR REPLACE VIEW query.expr_xnum AS
5574     SELECT
5575                 id,
5576                 parenthesize,
5577                 parent_expr,
5578                 seq_no,
5579                 literal
5580     FROM
5581         query.expression
5582     WHERE
5583         type = 'xnum';
5584
5585 CREATE OR REPLACE RULE query_expr_xnum_insert_rule AS
5586     ON INSERT TO query.expr_xnum
5587     DO INSTEAD
5588     INSERT INTO query.expression (
5589                 id,
5590                 type,
5591                 parenthesize,
5592                 parent_expr,
5593                 seq_no,
5594                 literal
5595     ) VALUES (
5596         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5597         'xnum',
5598         COALESCE(NEW.parenthesize, FALSE),
5599         NEW.parent_expr,
5600         COALESCE(NEW.seq_no, 1),
5601         NEW.literal
5602     );
5603
5604 CREATE OR REPLACE RULE query_expr_xnum_update_rule AS
5605     ON UPDATE TO query.expr_xnum
5606     DO INSTEAD
5607     UPDATE query.expression SET
5608         id = NEW.id,
5609         parenthesize = NEW.parenthesize,
5610         parent_expr = NEW.parent_expr,
5611         seq_no = NEW.seq_no,
5612         literal = NEW.literal
5613     WHERE
5614         id = OLD.id;
5615
5616 CREATE OR REPLACE RULE query_expr_xnum_delete_rule AS
5617     ON DELETE TO query.expr_xnum
5618     DO INSTEAD
5619     DELETE FROM query.expression WHERE id = OLD.id;
5620
5621 -- Create updatable view for operator expressions
5622
5623 CREATE OR REPLACE VIEW query.expr_xop AS
5624     SELECT
5625                 id,
5626                 parenthesize,
5627                 parent_expr,
5628                 seq_no,
5629                 left_operand,
5630                 operator,
5631                 right_operand,
5632                 negate
5633     FROM
5634         query.expression
5635     WHERE
5636         type = 'xop';
5637
5638 CREATE OR REPLACE RULE query_expr_xop_insert_rule AS
5639     ON INSERT TO query.expr_xop
5640     DO INSTEAD
5641     INSERT INTO query.expression (
5642                 id,
5643                 type,
5644                 parenthesize,
5645                 parent_expr,
5646                 seq_no,
5647                 left_operand,
5648                 operator,
5649                 right_operand,
5650                 negate
5651     ) VALUES (
5652         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5653         'xop',
5654         COALESCE(NEW.parenthesize, FALSE),
5655         NEW.parent_expr,
5656         COALESCE(NEW.seq_no, 1),
5657                 NEW.left_operand,
5658                 NEW.operator,
5659                 NEW.right_operand,
5660                 COALESCE(NEW.negate, false)
5661     );
5662
5663 CREATE OR REPLACE RULE query_expr_xop_update_rule AS
5664     ON UPDATE TO query.expr_xop
5665     DO INSTEAD
5666     UPDATE query.expression SET
5667         id = NEW.id,
5668         parenthesize = NEW.parenthesize,
5669         parent_expr = NEW.parent_expr,
5670         seq_no = NEW.seq_no,
5671                 left_operand = NEW.left_operand,
5672                 operator = NEW.operator,
5673                 right_operand = NEW.right_operand,
5674                 negate = NEW.negate
5675     WHERE
5676         id = OLD.id;
5677
5678 CREATE OR REPLACE RULE query_expr_xop_delete_rule AS
5679     ON DELETE TO query.expr_xop
5680     DO INSTEAD
5681     DELETE FROM query.expression WHERE id = OLD.id;
5682
5683 -- Create updatable view for series expressions
5684 -- i.e. series of expressions separated by operators
5685
5686 CREATE OR REPLACE VIEW query.expr_xser AS
5687     SELECT
5688                 id,
5689                 parenthesize,
5690                 parent_expr,
5691                 seq_no,
5692                 operator,
5693                 negate
5694     FROM
5695         query.expression
5696     WHERE
5697         type = 'xser';
5698
5699 CREATE OR REPLACE RULE query_expr_xser_insert_rule AS
5700     ON INSERT TO query.expr_xser
5701     DO INSTEAD
5702     INSERT INTO query.expression (
5703                 id,
5704                 type,
5705                 parenthesize,
5706                 parent_expr,
5707                 seq_no,
5708                 operator,
5709                 negate
5710     ) VALUES (
5711         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5712         'xser',
5713         COALESCE(NEW.parenthesize, FALSE),
5714         NEW.parent_expr,
5715         COALESCE(NEW.seq_no, 1),
5716                 NEW.operator,
5717                 COALESCE(NEW.negate, false)
5718     );
5719
5720 CREATE OR REPLACE RULE query_expr_xser_update_rule AS
5721     ON UPDATE TO query.expr_xser
5722     DO INSTEAD
5723     UPDATE query.expression SET
5724         id = NEW.id,
5725         parenthesize = NEW.parenthesize,
5726         parent_expr = NEW.parent_expr,
5727         seq_no = NEW.seq_no,
5728                 operator = NEW.operator,
5729                 negate = NEW.negate
5730     WHERE
5731         id = OLD.id;
5732
5733 CREATE OR REPLACE RULE query_expr_xser_delete_rule AS
5734     ON DELETE TO query.expr_xser
5735     DO INSTEAD
5736     DELETE FROM query.expression WHERE id = OLD.id;
5737
5738 -- Create updatable view for string literal expressions
5739
5740 CREATE OR REPLACE VIEW query.expr_xstr AS
5741     SELECT
5742         id,
5743         parenthesize,
5744         parent_expr,
5745         seq_no,
5746         literal
5747     FROM
5748         query.expression
5749     WHERE
5750         type = 'xstr';
5751
5752 CREATE OR REPLACE RULE query_expr_string_insert_rule AS
5753     ON INSERT TO query.expr_xstr
5754     DO INSTEAD
5755     INSERT INTO query.expression (
5756         id,
5757         type,
5758         parenthesize,
5759         parent_expr,
5760         seq_no,
5761         literal
5762     ) VALUES (
5763         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5764         'xstr',
5765         COALESCE(NEW.parenthesize, FALSE),
5766         NEW.parent_expr,
5767         COALESCE(NEW.seq_no, 1),
5768         NEW.literal
5769     );
5770
5771 CREATE OR REPLACE RULE query_expr_string_update_rule AS
5772     ON UPDATE TO query.expr_xstr
5773     DO INSTEAD
5774     UPDATE query.expression SET
5775         id = NEW.id,
5776         parenthesize = NEW.parenthesize,
5777         parent_expr = NEW.parent_expr,
5778         seq_no = NEW.seq_no,
5779         literal = NEW.literal
5780     WHERE
5781         id = OLD.id;
5782
5783 CREATE OR REPLACE RULE query_expr_string_delete_rule AS
5784     ON DELETE TO query.expr_xstr
5785     DO INSTEAD
5786     DELETE FROM query.expression WHERE id = OLD.id;
5787
5788 -- Create updatable view for subquery expressions
5789
5790 CREATE OR REPLACE VIEW query.expr_xsubq AS
5791     SELECT
5792                 id,
5793                 parenthesize,
5794                 parent_expr,
5795                 seq_no,
5796                 subquery,
5797                 negate
5798     FROM
5799         query.expression
5800     WHERE
5801         type = 'xsubq';
5802
5803 CREATE OR REPLACE RULE query_expr_xsubq_insert_rule AS
5804     ON INSERT TO query.expr_xsubq
5805     DO INSTEAD
5806     INSERT INTO query.expression (
5807                 id,
5808                 type,
5809                 parenthesize,
5810                 parent_expr,
5811                 seq_no,
5812                 subquery,
5813                 negate
5814     ) VALUES (
5815         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5816         'xsubq',
5817         COALESCE(NEW.parenthesize, FALSE),
5818         NEW.parent_expr,
5819         COALESCE(NEW.seq_no, 1),
5820                 NEW.subquery,
5821                 COALESCE(NEW.negate, false)
5822     );
5823
5824 CREATE OR REPLACE RULE query_expr_xsubq_update_rule AS
5825     ON UPDATE TO query.expr_xsubq
5826     DO INSTEAD
5827     UPDATE query.expression SET
5828         id = NEW.id,
5829         parenthesize = NEW.parenthesize,
5830         parent_expr = NEW.parent_expr,
5831         seq_no = NEW.seq_no,
5832                 subquery = NEW.subquery,
5833                 negate = NEW.negate
5834     WHERE
5835         id = OLD.id;
5836
5837 CREATE OR REPLACE RULE query_expr_xsubq_delete_rule AS
5838     ON DELETE TO query.expr_xsubq
5839     DO INSTEAD
5840     DELETE FROM query.expression WHERE id = OLD.id;
5841
5842 CREATE TABLE action.fieldset (
5843     id              SERIAL          PRIMARY KEY,
5844     owner           INT             NOT NULL REFERENCES actor.usr (id)
5845                                     DEFERRABLE INITIALLY DEFERRED,
5846     owning_lib      INT             NOT NULL REFERENCES actor.org_unit (id)
5847                                     DEFERRABLE INITIALLY DEFERRED,
5848     status          TEXT            NOT NULL
5849                                     CONSTRAINT valid_status CHECK ( status in
5850                                     ( 'PENDING', 'APPLIED', 'ERROR' )),
5851     creation_time   TIMESTAMPTZ     NOT NULL DEFAULT NOW(),
5852     scheduled_time  TIMESTAMPTZ,
5853     applied_time    TIMESTAMPTZ,
5854     classname       TEXT            NOT NULL, -- an IDL class name
5855     name            TEXT            NOT NULL,
5856     stored_query    INT             REFERENCES query.stored_query (id)
5857                                     DEFERRABLE INITIALLY DEFERRED,
5858     pkey_value      TEXT,
5859     CONSTRAINT lib_name_unique UNIQUE (owning_lib, name),
5860     CONSTRAINT fieldset_one_or_the_other CHECK (
5861         (stored_query IS NOT NULL AND pkey_value IS NULL) OR
5862         (pkey_value IS NOT NULL AND stored_query IS NULL)
5863     )
5864     -- the CHECK constraint means we can update the fields for a single
5865     -- row without all the extra overhead involved in a query
5866 );
5867
5868 CREATE INDEX action_fieldset_sched_time_idx ON action.fieldset( scheduled_time );
5869 CREATE INDEX action_owner_idx               ON action.fieldset( owner );
5870
5871 CREATE TABLE action.fieldset_col_val (
5872     id              SERIAL  PRIMARY KEY,
5873     fieldset        INT     NOT NULL REFERENCES action.fieldset
5874                                          ON DELETE CASCADE
5875                                          DEFERRABLE INITIALLY DEFERRED,
5876     col             TEXT    NOT NULL,  -- "field" from the idl ... the column on the table
5877     val             TEXT,              -- value for the column ... NULL means, well, NULL
5878     CONSTRAINT fieldset_col_once_per_set UNIQUE (fieldset, col)
5879 );
5880
5881 CREATE OR REPLACE FUNCTION action.apply_fieldset(
5882         fieldset_id IN INT,        -- id from action.fieldset
5883         table_name  IN TEXT,       -- table to be updated
5884         pkey_name   IN TEXT,       -- name of primary key column in that table
5885         query       IN TEXT        -- query constructed by qstore (for query-based
5886                                    --    fieldsets only; otherwise null
5887 )
5888 RETURNS TEXT AS $$
5889 DECLARE
5890         statement TEXT;
5891         fs_status TEXT;
5892         fs_pkey_value TEXT;
5893         fs_query TEXT;
5894         sep CHAR;
5895         status_code TEXT;
5896         msg TEXT;
5897         update_count INT;
5898         cv RECORD;
5899 BEGIN
5900         -- Sanity checks
5901         IF fieldset_id IS NULL THEN
5902                 RETURN 'Fieldset ID parameter is NULL';
5903         END IF;
5904         IF table_name IS NULL THEN
5905                 RETURN 'Table name parameter is NULL';
5906         END IF;
5907         IF pkey_name IS NULL THEN
5908                 RETURN 'Primary key name parameter is NULL';
5909         END IF;
5910         --
5911         statement := 'UPDATE ' || table_name || ' SET';
5912         --
5913         SELECT
5914                 status,
5915                 quote_literal( pkey_value )
5916         INTO
5917                 fs_status,
5918                 fs_pkey_value
5919         FROM
5920                 action.fieldset
5921         WHERE
5922                 id = fieldset_id;
5923         --
5924         IF fs_status IS NULL THEN
5925                 RETURN 'No fieldset found for id = ' || fieldset_id;
5926         ELSIF fs_status = 'APPLIED' THEN
5927                 RETURN 'Fieldset ' || fieldset_id || ' has already been applied';
5928         END IF;
5929         --
5930         sep := '';
5931         FOR cv IN
5932                 SELECT  col,
5933                                 val
5934                 FROM    action.fieldset_col_val
5935                 WHERE   fieldset = fieldset_id
5936         LOOP
5937                 statement := statement || sep || ' ' || cv.col
5938                                          || ' = ' || coalesce( quote_literal( cv.val ), 'NULL' );
5939                 sep := ',';
5940         END LOOP;
5941         --
5942         IF sep = '' THEN
5943                 RETURN 'Fieldset ' || fieldset_id || ' has no column values defined';
5944         END IF;
5945         --
5946         -- Add the WHERE clause.  This differs according to whether it's a
5947         -- single-row fieldset or a query-based fieldset.
5948         --
5949         IF query IS NULL        AND fs_pkey_value IS NULL THEN
5950                 RETURN 'Incomplete fieldset: neither a primary key nor a query available';
5951         ELSIF query IS NOT NULL AND fs_pkey_value IS NULL THEN
5952             fs_query := rtrim( query, ';' );
5953             statement := statement || ' WHERE ' || pkey_name || ' IN ( '
5954                          || fs_query || ' );';
5955         ELSIF query IS NULL     AND fs_pkey_value IS NOT NULL THEN
5956                 statement := statement || ' WHERE ' || pkey_name || ' = '
5957                                      || fs_pkey_value || ';';
5958         ELSE  -- both are not null
5959                 RETURN 'Ambiguous fieldset: both a primary key and a query provided';
5960         END IF;
5961         --
5962         -- Execute the update
5963         --
5964         BEGIN
5965                 EXECUTE statement;
5966                 GET DIAGNOSTICS update_count = ROW_COUNT;
5967                 --
5968                 IF UPDATE_COUNT > 0 THEN
5969                         status_code := 'APPLIED';
5970                         msg := NULL;
5971                 ELSE
5972                         status_code := 'ERROR';
5973                         msg := 'No eligible rows found for fieldset ' || fieldset_id;
5974         END IF;
5975         EXCEPTION WHEN OTHERS THEN
5976                 status_code := 'ERROR';
5977                 msg := 'Unable to apply fieldset ' || fieldset_id
5978                            || ': ' || sqlerrm;
5979         END;
5980         --
5981         -- Update fieldset status
5982         --
5983         UPDATE action.fieldset
5984         SET status       = status_code,
5985             applied_time = now()
5986         WHERE id = fieldset_id;
5987         --
5988         RETURN msg;
5989 END;
5990 $$ LANGUAGE plpgsql;
5991
5992 COMMENT ON FUNCTION action.apply_fieldset( INT, TEXT, TEXT, TEXT ) IS $$
5993 /**
5994  * Applies a specified fieldset, using a supplied table name and primary
5995  * key name.  The query parameter should be non-null only for
5996  * query-based fieldsets.
5997  *
5998  * Returns NULL if successful, or an error message if not.
5999  */
6000 $$;
6001
6002 CREATE INDEX uhr_hold_idx ON action.unfulfilled_hold_list (hold);
6003
6004 CREATE OR REPLACE VIEW action.unfulfilled_hold_loops AS
6005     SELECT  u.hold,
6006             c.circ_lib,
6007             count(*)
6008       FROM  action.unfulfilled_hold_list u
6009             JOIN asset.copy c ON (c.id = u.current_copy)
6010       GROUP BY 1,2;
6011
6012 CREATE OR REPLACE VIEW action.unfulfilled_hold_min_loop AS
6013     SELECT  hold,
6014             min(count)
6015       FROM  action.unfulfilled_hold_loops
6016       GROUP BY 1;
6017
6018 CREATE OR REPLACE VIEW action.unfulfilled_hold_innermost_loop AS
6019     SELECT  DISTINCT l.*
6020       FROM  action.unfulfilled_hold_loops l
6021             JOIN action.unfulfilled_hold_min_loop m USING (hold)
6022       WHERE l.count = m.min;
6023
6024 ALTER TABLE asset.copy
6025 ADD COLUMN dummy_isbn TEXT;
6026
6027 ALTER TABLE auditor.asset_copy_history
6028 ADD COLUMN dummy_isbn TEXT;
6029
6030 -- Add new column status_changed_date to asset.copy, with trigger to maintain it
6031 -- Add corresponding new column to auditor.asset_copy_history
6032
6033 ALTER TABLE asset.copy
6034         ADD COLUMN status_changed_time TIMESTAMPTZ;
6035
6036 ALTER TABLE auditor.asset_copy_history
6037         ADD COLUMN status_changed_time TIMESTAMPTZ;
6038
6039 CREATE OR REPLACE FUNCTION asset.acp_status_changed()
6040 RETURNS TRIGGER AS $$
6041 BEGIN
6042         IF NEW.status <> OLD.status THEN
6043                 NEW.status_changed_time := now();
6044         END IF;
6045         RETURN NEW;
6046 END;
6047 $$ LANGUAGE plpgsql;
6048
6049 CREATE TRIGGER acp_status_changed_trig
6050         BEFORE UPDATE ON asset.copy
6051         FOR EACH ROW EXECUTE PROCEDURE asset.acp_status_changed();
6052
6053 ALTER TABLE asset.copy
6054 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6055
6056 ALTER TABLE auditor.asset_copy_history
6057 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6058
6059 ALTER TABLE asset.copy ADD COLUMN floating BOOL NOT NULL DEFAULT FALSE;
6060 ALTER TABLE auditor.asset_copy_history ADD COLUMN floating BOOL;
6061
6062 DROP INDEX IF EXISTS asset.copy_barcode_key;
6063 CREATE UNIQUE INDEX copy_barcode_key ON asset.copy (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
6064
6065 -- Note: later we create a trigger a_opac_vis_mat_view_tgr
6066 -- AFTER INSERT OR UPDATE ON asset.copy
6067
6068 ALTER TABLE asset.copy ADD COLUMN cost NUMERIC(8,2);
6069 ALTER TABLE auditor.asset_copy_history ADD COLUMN cost NUMERIC(8,2);
6070
6071 -- Moke mostly parallel changes to action.circulation
6072 -- and action.aged_circulation
6073
6074 ALTER TABLE action.circulation
6075 ADD COLUMN workstation INT
6076     REFERENCES actor.workstation
6077         ON DELETE SET NULL
6078         DEFERRABLE INITIALLY DEFERRED;
6079
6080 ALTER TABLE action.aged_circulation
6081 ADD COLUMN workstation INT;
6082
6083 ALTER TABLE action.circulation
6084 ADD COLUMN parent_circ BIGINT
6085         REFERENCES action.circulation(id)
6086         DEFERRABLE INITIALLY DEFERRED;
6087
6088 CREATE UNIQUE INDEX circ_parent_idx
6089 ON action.circulation( parent_circ )
6090 WHERE parent_circ IS NOT NULL;
6091
6092 ALTER TABLE action.aged_circulation
6093 ADD COLUMN parent_circ BIGINT;
6094
6095 ALTER TABLE action.circulation
6096 ADD COLUMN checkin_workstation INT
6097         REFERENCES actor.workstation(id)
6098         ON DELETE SET NULL
6099         DEFERRABLE INITIALLY DEFERRED;
6100
6101 ALTER TABLE action.aged_circulation
6102 ADD COLUMN checkin_workstation INT;
6103
6104 ALTER TABLE action.circulation
6105 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6106
6107 ALTER TABLE action.aged_circulation
6108 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6109
6110 CREATE INDEX action_circulation_target_copy_idx
6111 ON action.circulation (target_copy);
6112
6113 CREATE INDEX action_aged_circulation_target_copy_idx
6114 ON action.aged_circulation (target_copy);
6115
6116 ALTER TABLE action.circulation
6117 DROP CONSTRAINT circulation_stop_fines_check;
6118
6119 ALTER TABLE action.circulation
6120         ADD CONSTRAINT circulation_stop_fines_check
6121         CHECK (stop_fines IN (
6122         'CHECKIN','CLAIMSRETURNED','LOST','MAXFINES','RENEW','LONGOVERDUE','CLAIMSNEVERCHECKEDOUT'));
6123
6124 -- Correct some long-standing misspellings involving variations of "recur"
6125
6126 ALTER TABLE action.circulation RENAME COLUMN recuring_fine TO recurring_fine;
6127 ALTER TABLE action.circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6128
6129 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine TO recurring_fine;
6130 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6131
6132 ALTER TABLE config.rule_recuring_fine RENAME TO rule_recurring_fine;
6133 ALTER TABLE config.rule_recuring_fine_id_seq RENAME TO rule_recurring_fine_id_seq;
6134
6135 ALTER TABLE config.rule_recurring_fine RENAME COLUMN recurance_interval TO recurrence_interval;
6136
6137 -- Might as well keep the comment in sync as well
6138 COMMENT ON TABLE config.rule_recurring_fine IS $$
6139 /*
6140  * Copyright (C) 2005  Georgia Public Library Service 
6141  * Mike Rylander <mrylander@gmail.com>
6142  *
6143  * Circulation Recurring Fine rules
6144  *
6145  * Each circulation is given a recurring fine amount based on one of
6146  * these rules.  The recurrence_interval should not be any shorter
6147  * than the interval between runs of the fine_processor.pl script
6148  * (which is run from CRON), or you could miss fines.
6149  * 
6150  *
6151  * ****
6152  *
6153  * This program is free software; you can redistribute it and/or
6154  * modify it under the terms of the GNU General Public License
6155  * as published by the Free Software Foundation; either version 2
6156  * of the License, or (at your option) any later version.
6157  *
6158  * This program is distributed in the hope that it will be useful,
6159  * but WITHOUT ANY WARRANTY; without even the implied warranty of
6160  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6161  * GNU General Public License for more details.
6162  */
6163 $$;
6164
6165 -- Extend the name change to some related views:
6166
6167 DROP VIEW IF EXISTS reporter.overdue_circs;
6168
6169 CREATE OR REPLACE VIEW reporter.overdue_circs AS
6170 SELECT  *
6171   FROM  action.circulation
6172     WHERE checkin_time is null
6173                 AND (stop_fines NOT IN ('LOST','CLAIMSRETURNED') OR stop_fines IS NULL)
6174                                 AND due_date < now();
6175
6176 DROP VIEW IF EXISTS stats.fleshed_circulation;
6177
6178 DROP VIEW IF EXISTS stats.fleshed_copy;
6179
6180 CREATE VIEW stats.fleshed_copy AS
6181         SELECT  cp.*,
6182         CAST(cp.create_date AS DATE) AS create_date_day,
6183         CAST(cp.edit_date AS DATE) AS edit_date_day,
6184         DATE_TRUNC('hour', cp.create_date) AS create_date_hour,
6185         DATE_TRUNC('hour', cp.edit_date) AS edit_date_hour,
6186                 cn.label AS call_number_label,
6187                 cn.owning_lib,
6188                 rd.item_lang,
6189                 rd.item_type,
6190                 rd.item_form
6191         FROM    asset.copy cp
6192                 JOIN asset.call_number cn ON (cp.call_number = cn.id)
6193                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
6194
6195 CREATE VIEW stats.fleshed_circulation AS
6196         SELECT  c.*,
6197                 CAST(c.xact_start AS DATE) AS start_date_day,
6198                 CAST(c.xact_finish AS DATE) AS finish_date_day,
6199                 DATE_TRUNC('hour', c.xact_start) AS start_date_hour,
6200                 DATE_TRUNC('hour', c.xact_finish) AS finish_date_hour,
6201                 cp.call_number_label,
6202                 cp.owning_lib,
6203                 cp.item_lang,
6204                 cp.item_type,
6205                 cp.item_form
6206         FROM    action.circulation c
6207                 JOIN stats.fleshed_copy cp ON (cp.id = c.target_copy);
6208
6209 -- Drop a view temporarily in order to alter action.all_circulation, upon
6210 -- which it is dependent.  We will recreate the view later.
6211
6212 DROP VIEW IF EXISTS extend_reporter.full_circ_count;
6213
6214 -- You would think that CREATE OR REPLACE would be enough, but in testing
6215 -- PostgreSQL complained about renaming the columns in the view. So we
6216 -- drop the view first.
6217 DROP VIEW IF EXISTS action.all_circulation;
6218
6219 CREATE OR REPLACE VIEW action.all_circulation AS
6220     SELECT  id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6221         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6222         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6223         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6224         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6225         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6226       FROM  action.aged_circulation
6227             UNION ALL
6228     SELECT  DISTINCT circ.id,COALESCE(a.post_code,b.post_code) AS usr_post_code, p.home_ou AS usr_home_ou, p.profile AS usr_profile, EXTRACT(YEAR FROM p.dob)::INT AS usr_birth_year,
6229         cp.call_number AS copy_call_number, cp.location AS copy_location, cn.owning_lib AS copy_owning_lib, cp.circ_lib AS copy_circ_lib,
6230         cn.record AS copy_bib_record, circ.xact_start, circ.xact_finish, circ.target_copy, circ.circ_lib, circ.circ_staff, circ.checkin_staff,
6231         circ.checkin_lib, circ.renewal_remaining, circ.due_date, circ.stop_fines_time, circ.checkin_time, circ.create_time, circ.duration,
6232         circ.fine_interval, circ.recurring_fine, circ.max_fine, circ.phone_renewal, circ.desk_renewal, circ.opac_renewal, circ.duration_rule,
6233         circ.recurring_fine_rule, circ.max_fine_rule, circ.stop_fines, circ.workstation, circ.checkin_workstation, circ.checkin_scan_time,
6234         circ.parent_circ
6235       FROM  action.circulation circ
6236         JOIN asset.copy cp ON (circ.target_copy = cp.id)
6237         JOIN asset.call_number cn ON (cp.call_number = cn.id)
6238         JOIN actor.usr p ON (circ.usr = p.id)
6239         LEFT JOIN actor.usr_address a ON (p.mailing_address = a.id)
6240         LEFT JOIN actor.usr_address b ON (p.billing_address = a.id);
6241
6242 -- Recreate the temporarily dropped view, having altered the action.all_circulation view:
6243
6244 CREATE OR REPLACE VIEW extend_reporter.full_circ_count AS
6245  SELECT cp.id, COALESCE(sum(c.circ_count), 0::bigint) + COALESCE(count(circ.id), 0::bigint) + COALESCE(count(acirc.id), 0::bigint) AS circ_count
6246    FROM asset."copy" cp
6247    LEFT JOIN extend_reporter.legacy_circ_count c USING (id)
6248    LEFT JOIN "action".circulation circ ON circ.target_copy = cp.id
6249    LEFT JOIN "action".aged_circulation acirc ON acirc.target_copy = cp.id
6250   GROUP BY cp.id;
6251
6252 CREATE UNIQUE INDEX only_one_concurrent_checkout_per_copy ON action.circulation(target_copy) WHERE checkin_time IS NULL;
6253
6254 ALTER TABLE action.circulation DROP CONSTRAINT action_circulation_target_copy_fkey;
6255
6256 CREATE OR REPLACE FUNCTION action.age_circ_on_delete () RETURNS TRIGGER AS $$
6257 DECLARE
6258 found char := 'N';
6259 BEGIN
6260
6261     -- If there are any renewals for this circulation, don't archive or delete
6262     -- it yet.   We'll do so later, when we archive and delete the renewals.
6263
6264     SELECT 'Y' INTO found
6265     FROM action.circulation
6266     WHERE parent_circ = OLD.id
6267     LIMIT 1;
6268
6269     IF found = 'Y' THEN
6270         RETURN NULL;  -- don't delete
6271         END IF;
6272
6273     -- Archive a copy of the old row to action.aged_circulation
6274
6275     INSERT INTO action.aged_circulation
6276         (id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6277         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6278         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6279         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6280         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6281         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ)
6282       SELECT
6283         id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6284         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6285         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6286         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6287         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6288         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6289         FROM action.all_circulation WHERE id = OLD.id;
6290
6291     RETURN OLD;
6292 END;
6293 $$ LANGUAGE 'plpgsql';
6294
6295 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND name = 'title';
6296
6297 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND truncation = 0;
6298
6299 -- Adding circ.holds.target_skip_me OU setting logic to the pre-matchpoint tests
6300
6301 CREATE OR REPLACE FUNCTION action.hold_request_permit_test( pickup_ou INT, request_ou INT, match_item BIGINT, match_user INT, match_requestor INT ) RETURNS SETOF action.matrix_test_result AS $func$
6302 DECLARE
6303     matchpoint_id        INT;
6304     user_object        actor.usr%ROWTYPE;
6305     age_protect_object    config.rule_age_hold_protect%ROWTYPE;
6306     standing_penalty    config.standing_penalty%ROWTYPE;
6307     transit_range_ou_type    actor.org_unit_type%ROWTYPE;
6308     transit_source        actor.org_unit%ROWTYPE;
6309     item_object        asset.copy%ROWTYPE;
6310     ou_skip              actor.org_unit_setting%ROWTYPE;
6311     result            action.matrix_test_result;
6312     hold_test        config.hold_matrix_matchpoint%ROWTYPE;
6313     hold_count        INT;
6314     hold_transit_prox    INT;
6315     frozen_hold_count    INT;
6316     context_org_list    INT[];
6317     done            BOOL := FALSE;
6318 BEGIN
6319     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6320     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( pickup_ou );
6321
6322     result.success := TRUE;
6323
6324     -- Fail if we couldn't find a user
6325     IF user_object.id IS NULL THEN
6326         result.fail_part := 'no_user';
6327         result.success := FALSE;
6328         done := TRUE;
6329         RETURN NEXT result;
6330         RETURN;
6331     END IF;
6332
6333     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6334
6335     -- Fail if we couldn't find a copy
6336     IF item_object.id IS NULL THEN
6337         result.fail_part := 'no_item';
6338         result.success := FALSE;
6339         done := TRUE;
6340         RETURN NEXT result;
6341         RETURN;
6342     END IF;
6343
6344     SELECT INTO matchpoint_id action.find_hold_matrix_matchpoint(pickup_ou, request_ou, match_item, match_user, match_requestor);
6345     result.matchpoint := matchpoint_id;
6346
6347     SELECT INTO ou_skip * FROM actor.org_unit_setting WHERE name = 'circ.holds.target_skip_me' AND org_unit = item_object.circ_lib;
6348
6349     -- Fail if the circ_lib for the item has circ.holds.target_skip_me set to true
6350     IF ou_skip.id IS NOT NULL AND ou_skip.value = 'true' THEN
6351         result.fail_part := 'circ.holds.target_skip_me';
6352         result.success := FALSE;
6353         done := TRUE;
6354         RETURN NEXT result;
6355         RETURN;
6356     END IF;
6357
6358     -- Fail if user is barred
6359     IF user_object.barred IS TRUE THEN
6360         result.fail_part := 'actor.usr.barred';
6361         result.success := FALSE;
6362         done := TRUE;
6363         RETURN NEXT result;
6364         RETURN;
6365     END IF;
6366
6367     -- Fail if we couldn't find any matchpoint (requires a default)
6368     IF matchpoint_id IS NULL THEN
6369         result.fail_part := 'no_matchpoint';
6370         result.success := FALSE;
6371         done := TRUE;
6372         RETURN NEXT result;
6373         RETURN;
6374     END IF;
6375
6376     SELECT INTO hold_test * FROM config.hold_matrix_matchpoint WHERE id = matchpoint_id;
6377
6378     IF hold_test.holdable IS FALSE THEN
6379         result.fail_part := 'config.hold_matrix_test.holdable';
6380         result.success := FALSE;
6381         done := TRUE;
6382         RETURN NEXT result;
6383     END IF;
6384
6385     IF hold_test.transit_range IS NOT NULL THEN
6386         SELECT INTO transit_range_ou_type * FROM actor.org_unit_type WHERE id = hold_test.transit_range;
6387         IF hold_test.distance_is_from_owner THEN
6388             SELECT INTO transit_source ou.* FROM actor.org_unit ou JOIN asset.call_number cn ON (cn.owning_lib = ou.id) WHERE cn.id = item_object.call_number;
6389         ELSE
6390             SELECT INTO transit_source * FROM actor.org_unit WHERE id = item_object.circ_lib;
6391         END IF;
6392
6393         PERFORM * FROM actor.org_unit_descendants( transit_source.id, transit_range_ou_type.depth ) WHERE id = pickup_ou;
6394
6395         IF NOT FOUND THEN
6396             result.fail_part := 'transit_range';
6397             result.success := FALSE;
6398             done := TRUE;
6399             RETURN NEXT result;
6400         END IF;
6401     END IF;
6402  
6403     FOR standing_penalty IN
6404         SELECT  DISTINCT csp.*
6405           FROM  actor.usr_standing_penalty usp
6406                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6407           WHERE usr = match_user
6408                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6409                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6410                 AND csp.block_list LIKE '%HOLD%' LOOP
6411
6412         result.fail_part := standing_penalty.name;
6413         result.success := FALSE;
6414         done := TRUE;
6415         RETURN NEXT result;
6416     END LOOP;
6417
6418     IF hold_test.stop_blocked_user IS TRUE THEN
6419         FOR standing_penalty IN
6420             SELECT  DISTINCT csp.*
6421               FROM  actor.usr_standing_penalty usp
6422                     JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6423               WHERE usr = match_user
6424                     AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6425                     AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6426                     AND csp.block_list LIKE '%CIRC%' LOOP
6427     
6428             result.fail_part := standing_penalty.name;
6429             result.success := FALSE;
6430             done := TRUE;
6431             RETURN NEXT result;
6432         END LOOP;
6433     END IF;
6434
6435     IF hold_test.max_holds IS NOT NULL THEN
6436         SELECT    INTO hold_count COUNT(*)
6437           FROM    action.hold_request
6438           WHERE    usr = match_user
6439             AND fulfillment_time IS NULL
6440             AND cancel_time IS NULL
6441             AND CASE WHEN hold_test.include_frozen_holds THEN TRUE ELSE frozen IS FALSE END;
6442
6443         IF hold_count >= hold_test.max_holds THEN
6444             result.fail_part := 'config.hold_matrix_test.max_holds';
6445             result.success := FALSE;
6446             done := TRUE;
6447             RETURN NEXT result;
6448         END IF;
6449     END IF;
6450
6451     IF item_object.age_protect IS NOT NULL THEN
6452         SELECT INTO age_protect_object * FROM config.rule_age_hold_protect WHERE id = item_object.age_protect;
6453
6454         IF item_object.create_date + age_protect_object.age > NOW() THEN
6455             IF hold_test.distance_is_from_owner THEN
6456                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_cn_object.owning_lib AND to_org = pickup_ou;
6457             ELSE
6458                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_object.circ_lib AND to_org = pickup_ou;
6459             END IF;
6460
6461             IF hold_transit_prox > age_protect_object.prox THEN
6462                 result.fail_part := 'config.rule_age_hold_protect.prox';
6463                 result.success := FALSE;
6464                 done := TRUE;
6465                 RETURN NEXT result;
6466             END IF;
6467         END IF;
6468     END IF;
6469
6470     IF NOT done THEN
6471         RETURN NEXT result;
6472     END IF;
6473
6474     RETURN;
6475 END;
6476 $func$ LANGUAGE plpgsql;
6477
6478 -- New post-delete trigger to propagate deletions to parent(s)
6479
6480 CREATE OR REPLACE FUNCTION action.age_parent_circ_on_delete () RETURNS TRIGGER AS $$
6481 BEGIN
6482
6483     -- Having deleted a renewal, we can delete the original circulation (or a previous
6484     -- renewal, if that's what parent_circ is pointing to).  That deletion will trigger
6485     -- deletion of any prior parents, etc. recursively.
6486
6487     IF OLD.parent_circ IS NOT NULL THEN
6488         DELETE FROM action.circulation
6489         WHERE id = OLD.parent_circ;
6490     END IF;
6491
6492     RETURN OLD;
6493 END;
6494 $$ LANGUAGE 'plpgsql';
6495
6496 CREATE TRIGGER age_parent_circ AFTER DELETE ON action.circulation
6497 FOR EACH ROW EXECUTE PROCEDURE action.age_parent_circ_on_delete ();
6498
6499 -- This only gets inserted if there are no other id > 100 billing types
6500 INSERT INTO config.billing_type (id, name, owner) SELECT DISTINCT 101, oils_i18n_gettext(101, 'Misc', 'cbt', 'name'), 1 FROM config.billing_type_id_seq WHERE last_value < 101;
6501 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101) FROM config.billing_type_id_seq WHERE last_value < 101;
6502
6503 -- Populate xact_type column in the materialized version of billable_xact_summary
6504
6505 CREATE OR REPLACE FUNCTION money.mat_summary_create () RETURNS TRIGGER AS $$
6506 BEGIN
6507         INSERT INTO money.materialized_billable_xact_summary (id, usr, xact_start, xact_finish, total_paid, total_owed, balance_owed, xact_type)
6508                 VALUES ( NEW.id, NEW.usr, NEW.xact_start, NEW.xact_finish, 0.0, 0.0, 0.0, TG_ARGV[0]);
6509         RETURN NEW;
6510 END;
6511 $$ LANGUAGE PLPGSQL;
6512  
6513 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON action.circulation;
6514 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('circulation');
6515  
6516 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON money.grocery;
6517 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON money.grocery FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('grocery');
6518
6519 CREATE RULE money_payment_view_update AS ON UPDATE TO money.payment_view DO INSTEAD 
6520     UPDATE money.payment SET xact = NEW.xact, payment_ts = NEW.payment_ts, voided = NEW.voided, amount = NEW.amount, note = NEW.note WHERE id = NEW.id;
6521
6522 -- Generate the equivalent of compound subject entries from the existing rows
6523 -- so that we don't have to laboriously reindex them
6524
6525 --INSERT INTO config.metabib_field (field_class, name, format, xpath ) VALUES
6526 --    ( 'subject', 'complete', 'mods32', $$//mods32:mods/mods32:subject//text()$$ );
6527 --
6528 --CREATE INDEX metabib_subject_field_entry_source_idx ON metabib.subject_field_entry (source);
6529 --
6530 --INSERT INTO metabib.subject_field_entry (source, field, value)
6531 --    SELECT source, (
6532 --            SELECT id 
6533 --            FROM config.metabib_field
6534 --            WHERE field_class = 'subject' AND name = 'complete'
6535 --        ), 
6536 --        ARRAY_TO_STRING ( 
6537 --            ARRAY (
6538 --                SELECT value 
6539 --                FROM metabib.subject_field_entry msfe
6540 --                WHERE msfe.source = groupee.source
6541 --                ORDER BY source 
6542 --            ), ' ' 
6543 --        ) AS grouped
6544 --    FROM ( 
6545 --        SELECT source
6546 --        FROM metabib.subject_field_entry
6547 --        GROUP BY source
6548 --    ) AS groupee;
6549
6550 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_del () RETURNS TRIGGER AS $$
6551 DECLARE
6552         prev_billing    money.billing%ROWTYPE;
6553         old_billing     money.billing%ROWTYPE;
6554 BEGIN
6555         SELECT * INTO prev_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1 OFFSET 1;
6556         SELECT * INTO old_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1;
6557
6558         IF OLD.id = old_billing.id THEN
6559                 UPDATE  money.materialized_billable_xact_summary
6560                   SET   last_billing_ts = prev_billing.billing_ts,
6561                         last_billing_note = prev_billing.note,
6562                         last_billing_type = prev_billing.billing_type
6563                   WHERE id = OLD.xact;
6564         END IF;
6565
6566         IF NOT OLD.voided THEN
6567                 UPDATE  money.materialized_billable_xact_summary
6568                   SET   total_owed = total_owed - OLD.amount,
6569                         balance_owed = balance_owed + OLD.amount
6570                   WHERE id = OLD.xact;
6571         END IF;
6572
6573         RETURN OLD;
6574 END;
6575 $$ LANGUAGE PLPGSQL;
6576
6577 -- ARG! need to rid ourselves of the broken table definition ... this mechanism is not ideal, sorry.
6578 DROP TABLE IF EXISTS config.index_normalizer CASCADE;
6579
6580 CREATE OR REPLACE FUNCTION public.naco_normalize( TEXT, TEXT ) RETURNS TEXT AS $func$
6581         use Unicode::Normalize;
6582         use Encode;
6583
6584         # When working with Unicode data, the first step is to decode it to
6585         # a byte string; after that, lowercasing is safe
6586         my $txt = lc(decode_utf8(shift));
6587         my $sf = shift;
6588
6589         $txt = NFD($txt);
6590         $txt =~ s/\pM+//go;     # Remove diacritics
6591
6592         $txt =~ s/\xE6/AE/go;   # Convert ae digraph
6593         $txt =~ s/\x{153}/OE/go;# Convert oe digraph
6594         $txt =~ s/\xFE/TH/go;   # Convert Icelandic thorn
6595
6596         $txt =~ tr/\x{2070}\x{2071}\x{2072}\x{2073}\x{2074}\x{2075}\x{2076}\x{2077}\x{2078}\x{2079}\x{207A}\x{207B}/0123456789+-/;# Convert superscript numbers
6597         $txt =~ tr/\x{2080}\x{2081}\x{2082}\x{2083}\x{2084}\x{2085}\x{2086}\x{2087}\x{2088}\x{2089}\x{208A}\x{208B}/0123456889+-/;# Convert subscript numbers
6598
6599         $txt =~ tr/\x{0251}\x{03B1}\x{03B2}\x{0262}\x{03B3}/AABGG/;             # Convert Latin and Greek
6600         $txt =~ tr/\x{2113}\xF0\!\"\(\)\-\{\}\<\>\;\:\.\?\xA1\xBF\/\\\@\*\%\=\xB1\+\xAE\xA9\x{2117}\$\xA3\x{FFE1}\xB0\^\_\~\`/LD /;     # Convert Misc
6601         $txt =~ tr/\'\[\]\|//d;                                                 # Remove Misc
6602
6603         if ($sf && $sf =~ /^a/o) {
6604                 my $commapos = index($txt,',');
6605                 if ($commapos > -1) {
6606                         if ($commapos != length($txt) - 1) {
6607                                 my @list = split /,/, $txt;
6608                                 my $first = shift @list;
6609                                 $txt = $first . ',' . join(' ', @list);
6610                         } else {
6611                                 $txt =~ s/,/ /go;
6612                         }
6613                 }
6614         } else {
6615                 $txt =~ s/,/ /go;
6616         }
6617
6618         $txt =~ s/\s+/ /go;     # Compress multiple spaces
6619         $txt =~ s/^\s+//o;      # Remove leading space
6620         $txt =~ s/\s+$//o;      # Remove trailing space
6621
6622         # Encoding the outgoing string is good practice, but not strictly
6623         # necessary in this case because we've stripped everything from it
6624         return encode_utf8($txt);
6625 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6626
6627 -- Some handy functions, based on existing ones, to provide optional ingest normalization
6628
6629 CREATE OR REPLACE FUNCTION public.left_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6630         SELECT SUBSTRING($1,$2);
6631 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6632
6633 CREATE OR REPLACE FUNCTION public.right_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6634         SELECT SUBSTRING($1,1,$2);
6635 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6636
6637 CREATE OR REPLACE FUNCTION public.naco_normalize_keep_comma( TEXT ) RETURNS TEXT AS $func$
6638         SELECT public.naco_normalize($1,'a');
6639 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6640
6641 CREATE OR REPLACE FUNCTION public.split_date_range( TEXT ) RETURNS TEXT AS $func$
6642         SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' );
6643 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6644
6645 -- And ... a table in which to register them
6646
6647 CREATE TABLE config.index_normalizer (
6648         id              SERIAL  PRIMARY KEY,
6649         name            TEXT    UNIQUE NOT NULL,
6650         description     TEXT,
6651         func            TEXT    NOT NULL,
6652         param_count     INT     NOT NULL DEFAULT 0
6653 );
6654
6655 CREATE TABLE config.metabib_field_index_norm_map (
6656         id      SERIAL  PRIMARY KEY,
6657         field   INT     NOT NULL REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6658         norm    INT     NOT NULL REFERENCES config.index_normalizer (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6659         params  TEXT,
6660         pos     INT     NOT NULL DEFAULT 0
6661 );
6662
6663 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6664         'NACO Normalize',
6665         'Apply NACO normalization rules to the extracted text.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
6666         'naco_normalize',
6667         0
6668 );
6669
6670 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6671         'Normalize date range',
6672         'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.',
6673         'split_date_range',
6674         1
6675 );
6676
6677 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6678         'NACO Normalize -- retain first comma',
6679         '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.',
6680         'naco_normalize_keep_comma',
6681         0
6682 );
6683
6684 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6685         'Strip Diacritics',
6686         'Convert text to NFD form and remove non-spacing combining marks.',
6687         'remove_diacritics',
6688         0
6689 );
6690
6691 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6692         'Up-case',
6693         'Convert text upper case.',
6694         'uppercase',
6695         0
6696 );
6697
6698 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6699         'Down-case',
6700         'Convert text lower case.',
6701         'lowercase',
6702         0
6703 );
6704
6705 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6706         'Extract Dewey-like number',
6707         'Extract a string of numeric characters ther resembles a DDC number.',
6708         'call_number_dewey',
6709         0
6710 );
6711
6712 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6713         'Left truncation',
6714         'Discard the specified number of characters from the left side of the string.',
6715         'left_trunc',
6716         1
6717 );
6718
6719 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6720         'Right truncation',
6721         'Include only the specified number of characters from the left side of the string.',
6722         'right_trunc',
6723         1
6724 );
6725
6726 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6727         'First word',
6728         'Include only the first space-separated word of a string.',
6729         'first_word',
6730         0
6731 );
6732
6733 INSERT INTO config.metabib_field_index_norm_map (field,norm)
6734         SELECT  m.id,
6735                 i.id
6736           FROM  config.metabib_field m,
6737                 config.index_normalizer i
6738           WHERE i.func IN ('naco_normalize','split_date_range');
6739
6740 CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
6741 DECLARE
6742     normalizer      RECORD;
6743     value           TEXT := '';
6744 BEGIN
6745
6746     value := NEW.value;
6747
6748     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
6749         FOR normalizer IN
6750             SELECT  n.func AS func,
6751                     n.param_count AS param_count,
6752                     m.params AS params
6753               FROM  config.index_normalizer n
6754                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
6755               WHERE field = NEW.field AND m.pos < 0
6756               ORDER BY m.pos LOOP
6757                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
6758                     quote_literal( value ) ||
6759                     CASE
6760                         WHEN normalizer.param_count > 0
6761                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
6762                             ELSE ''
6763                         END ||
6764                     ')' INTO value;
6765
6766         END LOOP;
6767
6768         NEW.value := value;
6769     END IF;
6770
6771     IF NEW.index_vector = ''::tsvector THEN
6772         RETURN NEW;
6773     END IF;
6774
6775     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
6776         FOR normalizer IN
6777             SELECT  n.func AS func,
6778                     n.param_count AS param_count,
6779                     m.params AS params
6780               FROM  config.index_normalizer n
6781                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
6782               WHERE field = NEW.field AND m.pos >= 0
6783               ORDER BY m.pos LOOP
6784                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
6785                     quote_literal( value ) ||
6786                     CASE
6787                         WHEN normalizer.param_count > 0
6788                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
6789                             ELSE ''
6790                         END ||
6791                     ')' INTO value;
6792
6793         END LOOP;
6794     END IF;
6795
6796     IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT > 8.2 THEN
6797         NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, value);
6798     ELSE
6799         NEW.index_vector = to_tsvector(TG_ARGV[0], value);
6800     END IF;
6801
6802     RETURN NEW;
6803 END;
6804 $$ LANGUAGE PLPGSQL;
6805
6806 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
6807
6808 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
6809
6810 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
6811     SELECT  ARRAY_TO_STRING(
6812                 oils_xpath(
6813                     $1 ||
6814                         CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END,
6815                     $2,
6816                     $4
6817                 ),
6818                 $3
6819             );
6820 $func$ LANGUAGE SQL IMMUTABLE;
6821
6822 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT ) RETURNS TEXT AS $func$
6823     SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] );
6824 $func$ LANGUAGE SQL IMMUTABLE;
6825
6826 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
6827     SELECT oils_xpath_string( $1, $2, '', $3 );
6828 $func$ LANGUAGE SQL IMMUTABLE;
6829
6830 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT ) RETURNS TEXT AS $func$
6831     SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] );
6832 $func$ LANGUAGE SQL IMMUTABLE;
6833
6834 CREATE TYPE metabib.field_entry_template AS (
6835         field_class     TEXT,
6836         field           INT,
6837         source          BIGINT,
6838         value           TEXT
6839 );
6840
6841 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $func$
6842   use strict;
6843
6844   use XML::LibXSLT;
6845   use XML::LibXML;
6846
6847   my $doc = shift;
6848   my $xslt = shift;
6849
6850   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
6851   # methods of parsing XML documents and stylesheets, in the hopes of broader
6852   # compatibility with distributions
6853   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
6854
6855   # Cache the XML parser, if we do not already have one
6856   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
6857     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
6858
6859   my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new();
6860
6861   # Cache the XSLT processor, if we do not already have one
6862   $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser
6863     unless ($_SHARED{'_xslt_process'}{parsers}{xslt});
6864
6865   my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} ||
6866     $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) );
6867
6868   $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet
6869     unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt});
6870
6871   return $stylesheet->output_string(
6872     $stylesheet->transform(
6873       $parser->parse_string($doc)
6874     )
6875   );
6876
6877 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6878
6879 -- Add two columns so that the following function will compile.
6880 -- Eventually the label column will be NOT NULL, but not yet.
6881 ALTER TABLE config.metabib_field ADD COLUMN label TEXT;
6882 ALTER TABLE config.metabib_field ADD COLUMN facet_xpath TEXT;
6883
6884 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( rid BIGINT, default_joiner TEXT ) RETURNS SETOF metabib.field_entry_template AS $func$
6885 DECLARE
6886     bib     biblio.record_entry%ROWTYPE;
6887     idx     config.metabib_field%ROWTYPE;
6888     xfrm        config.xml_transform%ROWTYPE;
6889     prev_xfrm   TEXT;
6890     transformed_xml TEXT;
6891     xml_node    TEXT;
6892     xml_node_list   TEXT[];
6893     facet_text  TEXT;
6894     raw_text    TEXT;
6895     curr_text   TEXT;
6896     joiner      TEXT := default_joiner; -- XXX will index defs supply a joiner?
6897     output_row  metabib.field_entry_template%ROWTYPE;
6898 BEGIN
6899
6900     -- Get the record
6901     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
6902
6903     -- Loop over the indexing entries
6904     FOR idx IN SELECT * FROM config.metabib_field ORDER BY format LOOP
6905
6906         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
6907
6908         -- See if we can skip the XSLT ... it's expensive
6909         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
6910             -- Can't skip the transform
6911             IF xfrm.xslt <> '---' THEN
6912                 transformed_xml := oils_xslt_process(bib.marc,xfrm.xslt);
6913             ELSE
6914                 transformed_xml := bib.marc;
6915             END IF;
6916
6917             prev_xfrm := xfrm.name;
6918         END IF;
6919
6920         xml_node_list := oils_xpath( idx.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
6921
6922         raw_text := NULL;
6923         FOR xml_node IN SELECT x FROM explode_array(xml_node_list) AS x LOOP
6924             CONTINUE WHEN xml_node !~ E'^\\s*<';
6925
6926             curr_text := ARRAY_TO_STRING(
6927                 oils_xpath( '//text()',
6928                     REGEXP_REPLACE( -- This escapes all &s not followed by "amp;".  Data ise returned from oils_xpath (above) in UTF-8, not entity encoded
6929                         REGEXP_REPLACE( -- This escapes embeded <s
6930                             xml_node,
6931                             $re$(>[^<]+)(<)([^>]+<)$re$,
6932                             E'\\1&lt;\\3',
6933                             'g'
6934                         ),
6935                         '&(?!amp;)',
6936                         '&amp;',
6937                         'g'
6938                     )
6939                 ),
6940                 ' '
6941             );
6942
6943             CONTINUE WHEN curr_text IS NULL OR curr_text = '';
6944
6945             IF raw_text IS NOT NULL THEN
6946                 raw_text := raw_text || joiner;
6947             END IF;
6948
6949             raw_text := COALESCE(raw_text,'') || curr_text;
6950
6951             -- insert raw node text for faceting
6952             IF idx.facet_field THEN
6953
6954                 IF idx.facet_xpath IS NOT NULL AND idx.facet_xpath <> '' THEN
6955                     facet_text := oils_xpath_string( idx.facet_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
6956                 ELSE
6957                     facet_text := curr_text;
6958                 END IF;
6959
6960                 output_row.field_class = idx.field_class;
6961                 output_row.field = -1 * idx.id;
6962                 output_row.source = rid;
6963                 output_row.value = BTRIM(REGEXP_REPLACE(facet_text, E'\\s+', ' ', 'g'));
6964
6965                 RETURN NEXT output_row;
6966             END IF;
6967
6968         END LOOP;
6969
6970         CONTINUE WHEN raw_text IS NULL OR raw_text = '';
6971
6972         -- insert combined node text for searching
6973         IF idx.search_field THEN
6974             output_row.field_class = idx.field_class;
6975             output_row.field = idx.id;
6976             output_row.source = rid;
6977             output_row.value = BTRIM(REGEXP_REPLACE(raw_text, E'\\s+', ' ', 'g'));
6978
6979             RETURN NEXT output_row;
6980         END IF;
6981
6982     END LOOP;
6983
6984 END;
6985 $func$ LANGUAGE PLPGSQL;
6986
6987 -- default to a space joiner
6988 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( BIGINT ) RETURNS SETOF metabib.field_entry_template AS $func$
6989         SELECT * FROM biblio.extract_metabib_field_entry($1, ' ');
6990 $func$ LANGUAGE SQL;
6991
6992 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
6993
6994 use MARC::Record;
6995 use MARC::File::XML (BinaryEncoding => 'UTF-8');
6996
6997 my $xml = shift;
6998 my $r = MARC::Record->new_from_xml( $xml );
6999
7000 return_next( { tag => 'LDR', value => $r->leader } );
7001
7002 for my $f ( $r->fields ) {
7003     if ($f->is_control_field) {
7004         return_next({ tag => $f->tag, value => $f->data });
7005     } else {
7006         for my $s ($f->subfields) {
7007             return_next({
7008                 tag      => $f->tag,
7009                 ind1     => $f->indicator(1),
7010                 ind2     => $f->indicator(2),
7011                 subfield => $s->[0],
7012                 value    => $s->[1]
7013             });
7014
7015             if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
7016                 my $trim = $f->indicator(2) || 0;
7017                 return_next({
7018                     tag      => 'tnf',
7019                     ind1     => $f->indicator(1),
7020                     ind2     => $f->indicator(2),
7021                     subfield => 'a',
7022                     value    => substr( $s->[1], $trim )
7023                 });
7024             }
7025         }
7026     }
7027 }
7028
7029 return undef;
7030
7031 $func$ LANGUAGE PLPERLU;
7032
7033 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( rid BIGINT ) RETURNS SETOF metabib.full_rec AS $func$
7034 DECLARE
7035     bib biblio.record_entry%ROWTYPE;
7036     output  metabib.full_rec%ROWTYPE;
7037     field   RECORD;
7038 BEGIN
7039     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7040
7041     FOR field IN SELECT * FROM biblio.flatten_marc( bib.marc ) LOOP
7042         output.record := rid;
7043         output.ind1 := field.ind1;
7044         output.ind2 := field.ind2;
7045         output.tag := field.tag;
7046         output.subfield := field.subfield;
7047         IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields
7048             output.value := naco_normalize(field.value, field.subfield);
7049         ELSE
7050             output.value := field.value;
7051         END IF;
7052
7053         CONTINUE WHEN output.value IS NULL;
7054
7055         RETURN NEXT output;
7056     END LOOP;
7057 END;
7058 $func$ LANGUAGE PLPGSQL;
7059
7060 -- functions to create auditor objects
7061
7062 CREATE FUNCTION auditor.create_auditor_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7063 BEGIN
7064     EXECUTE $$
7065         CREATE SEQUENCE auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
7066     $$;
7067         RETURN TRUE;
7068 END;
7069 $creator$ LANGUAGE 'plpgsql';
7070
7071 CREATE FUNCTION auditor.create_auditor_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7072 BEGIN
7073     EXECUTE $$
7074         CREATE TABLE auditor.$$ || sch || $$_$$ || tbl || $$_history (
7075             audit_id    BIGINT                          PRIMARY KEY,
7076             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
7077             audit_action        TEXT                            NOT NULL,
7078             LIKE $$ || sch || $$.$$ || tbl || $$
7079         );
7080     $$;
7081         RETURN TRUE;
7082 END;
7083 $creator$ LANGUAGE 'plpgsql';
7084
7085 CREATE FUNCTION auditor.create_auditor_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7086 BEGIN
7087     EXECUTE $$
7088         CREATE FUNCTION auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ()
7089         RETURNS TRIGGER AS $func$
7090         BEGIN
7091             INSERT INTO auditor.$$ || sch || $$_$$ || tbl || $$_history
7092                 SELECT  nextval('auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
7093                     now(),
7094                     SUBSTR(TG_OP,1,1),
7095                     OLD.*;
7096             RETURN NULL;
7097         END;
7098         $func$ LANGUAGE 'plpgsql';
7099     $$;
7100     RETURN TRUE;
7101 END;
7102 $creator$ LANGUAGE 'plpgsql';
7103
7104 CREATE FUNCTION auditor.create_auditor_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7105 BEGIN
7106     EXECUTE $$
7107         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
7108             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
7109             EXECUTE PROCEDURE auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ();
7110     $$;
7111         RETURN TRUE;
7112 END;
7113 $creator$ LANGUAGE 'plpgsql';
7114
7115 CREATE FUNCTION auditor.create_auditor_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7116 BEGIN
7117     EXECUTE $$
7118         CREATE VIEW auditor.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
7119             SELECT      -1, now() as audit_time, '-' as audit_action, *
7120               FROM      $$ || sch || $$.$$ || tbl || $$
7121                 UNION ALL
7122             SELECT      *
7123               FROM      auditor.$$ || sch || $$_$$ || tbl || $$_history;
7124     $$;
7125         RETURN TRUE;
7126 END;
7127 $creator$ LANGUAGE 'plpgsql';
7128
7129 DROP FUNCTION IF EXISTS auditor.create_auditor (TEXT, TEXT);
7130
7131 -- The main event
7132
7133 CREATE FUNCTION auditor.create_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7134 BEGIN
7135     PERFORM auditor.create_auditor_seq(sch, tbl);
7136     PERFORM auditor.create_auditor_history(sch, tbl);
7137     PERFORM auditor.create_auditor_func(sch, tbl);
7138     PERFORM auditor.create_auditor_update_trigger(sch, tbl);
7139     PERFORM auditor.create_auditor_lifecycle(sch, tbl);
7140         RETURN TRUE;
7141 END;
7142 $creator$ LANGUAGE 'plpgsql';
7143
7144 ALTER TABLE action.hold_request ADD COLUMN cut_in_line BOOL;
7145
7146 ALTER TABLE action.hold_request
7147 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
7148
7149 ALTER TABLE action.hold_request
7150 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
7151
7152 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_current_copy_fkey;
7153
7154 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_hold_type_check;
7155
7156 UPDATE config.index_normalizer SET param_count = 0 WHERE func = 'split_date_range';
7157
7158 CREATE INDEX actor_usr_usrgroup_idx ON actor.usr (usrgroup);
7159
7160 -- Add claims_never_checked_out_count to actor.usr, related history
7161
7162 ALTER TABLE actor.usr ADD COLUMN
7163         claims_never_checked_out_count  INT         NOT NULL DEFAULT 0;
7164
7165 ALTER TABLE AUDITOR.actor_usr_history ADD COLUMN 
7166         claims_never_checked_out_count INT;
7167
7168 DROP VIEW auditor.actor_usr_lifecycle;
7169
7170 SELECT auditor.create_auditor_lifecycle( 'actor', 'usr' );
7171
7172 -----------
7173
7174 CREATE OR REPLACE FUNCTION action.circulation_claims_returned () RETURNS TRIGGER AS $$
7175 BEGIN
7176         IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN
7177                 IF NEW.stop_fines = 'CLAIMSRETURNED' THEN
7178                         UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr;
7179                 END IF;
7180                 IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN
7181                         UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr;
7182                 END IF;
7183                 IF NEW.stop_fines = 'LOST' THEN
7184                         UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy;
7185                 END IF;
7186         END IF;
7187         RETURN NEW;
7188 END;
7189 $$ LANGUAGE 'plpgsql';
7190
7191 -- Create new table acq.fund_allocation_percent
7192 -- Populate it from acq.fund_allocation
7193 -- Convert all percentages to amounts in acq.fund_allocation
7194
7195 CREATE TABLE acq.fund_allocation_percent
7196 (
7197     id                   SERIAL            PRIMARY KEY,
7198     funding_source       INT               NOT NULL REFERENCES acq.funding_source
7199                                                DEFERRABLE INITIALLY DEFERRED,
7200     org                  INT               NOT NULL REFERENCES actor.org_unit
7201                                                DEFERRABLE INITIALLY DEFERRED,
7202     fund_code            TEXT,
7203     percent              NUMERIC           NOT NULL,
7204     allocator            INTEGER           NOT NULL REFERENCES actor.usr
7205                                                DEFERRABLE INITIALLY DEFERRED,
7206     note                 TEXT,
7207     create_time          TIMESTAMPTZ       NOT NULL DEFAULT now(),
7208     CONSTRAINT logical_key UNIQUE( funding_source, org, fund_code ),
7209     CONSTRAINT percentage_range CHECK( percent >= 0 AND percent <= 100 )
7210 );
7211
7212 -- Trigger function to validate combination of org_unit and fund_code
7213
7214 CREATE OR REPLACE FUNCTION acq.fund_alloc_percent_val()
7215 RETURNS TRIGGER AS $$
7216 --
7217 DECLARE
7218 --
7219 dummy int := 0;
7220 --
7221 BEGIN
7222     SELECT
7223         1
7224     INTO
7225         dummy
7226     FROM
7227         acq.fund
7228     WHERE
7229         org = NEW.org
7230         AND code = NEW.fund_code
7231         LIMIT 1;
7232     --
7233     IF dummy = 1 then
7234         RETURN NEW;
7235     ELSE
7236         RAISE EXCEPTION 'No fund exists for org % and code %', NEW.org, NEW.fund_code;
7237     END IF;
7238 END;
7239 $$ LANGUAGE plpgsql;
7240
7241 CREATE TRIGGER acq_fund_alloc_percent_val_trig
7242     BEFORE INSERT OR UPDATE ON acq.fund_allocation_percent
7243     FOR EACH ROW EXECUTE PROCEDURE acq.fund_alloc_percent_val();
7244
7245 CREATE OR REPLACE FUNCTION acq.fap_limit_100()
7246 RETURNS TRIGGER AS $$
7247 DECLARE
7248 --
7249 total_percent numeric;
7250 --
7251 BEGIN
7252     SELECT
7253         sum( percent )
7254     INTO
7255         total_percent
7256     FROM
7257         acq.fund_allocation_percent AS fap
7258     WHERE
7259         fap.funding_source = NEW.funding_source;
7260     --
7261     IF total_percent > 100 THEN
7262         RAISE EXCEPTION 'Total percentages exceed 100 for funding_source %',
7263             NEW.funding_source;
7264     ELSE
7265         RETURN NEW;
7266     END IF;
7267 END;
7268 $$ LANGUAGE plpgsql;
7269
7270 CREATE TRIGGER acqfap_limit_100_trig
7271     AFTER INSERT OR UPDATE ON acq.fund_allocation_percent
7272     FOR EACH ROW EXECUTE PROCEDURE acq.fap_limit_100();
7273
7274 -- Populate new table from acq.fund_allocation
7275
7276 INSERT INTO acq.fund_allocation_percent
7277 (
7278     funding_source,
7279     org,
7280     fund_code,
7281     percent,
7282     allocator,
7283     note,
7284     create_time
7285 )
7286     SELECT
7287         fa.funding_source,
7288         fund.org,
7289         fund.code,
7290         fa.percent,
7291         fa.allocator,
7292         fa.note,
7293         fa.create_time
7294     FROM
7295         acq.fund_allocation AS fa
7296             INNER JOIN acq.fund AS fund
7297                 ON ( fa.fund = fund.id )
7298     WHERE
7299         fa.percent is not null
7300     ORDER BY
7301         fund.org;
7302
7303 -- Temporary function to convert percentages to amounts in acq.fund_allocation
7304
7305 -- Algorithm to apply to each funding source:
7306
7307 -- 1. Add up the credits.
7308 -- 2. Add up the percentages.
7309 -- 3. Multiply the sum of the percentages times the sum of the credits.  Drop any
7310 --    fractional cents from the result.  This is the total amount to be allocated.
7311 -- 4. For each allocation: multiply the percentage by the total allocation.  Drop any
7312 --    fractional cents to get a preliminary amount.
7313 -- 5. Add up the preliminary amounts for all the allocations.
7314 -- 6. Subtract the results of step 5 from the result of step 3.  The difference is the
7315 --    number of residual cents (resulting from having dropped fractional cents) that
7316 --    must be distributed across the funds in order to make the total of the amounts
7317 --    match the total allocation.
7318 -- 7. Make a second pass through the allocations, in decreasing order of the fractional
7319 --    cents that were dropped from their amounts in step 4.  Add one cent to the amount
7320 --    for each successive fund, until all the residual cents have been exhausted.
7321
7322 -- Result: the sum of the individual allocations now equals the total to be allocated,
7323 -- to the penny.  The individual amounts match the percentages as closely as possible,
7324 -- given the constraint that the total must match.
7325
7326 CREATE OR REPLACE FUNCTION acq.apply_percents()
7327 RETURNS VOID AS $$
7328 declare
7329 --
7330 tot              RECORD;
7331 fund             RECORD;
7332 tot_cents        INTEGER;
7333 src              INTEGER;
7334 id               INTEGER[];
7335 curr_id          INTEGER;
7336 pennies          NUMERIC[];
7337 curr_amount      NUMERIC;
7338 i                INTEGER;
7339 total_of_floors  INTEGER;
7340 total_percent    NUMERIC;
7341 total_allocation INTEGER;
7342 residue          INTEGER;
7343 --
7344 begin
7345         RAISE NOTICE 'Applying percents';
7346         FOR tot IN
7347                 SELECT
7348                         fsrc.funding_source,
7349                         sum( fsrc.amount ) AS total
7350                 FROM
7351                         acq.funding_source_credit AS fsrc
7352                 WHERE fsrc.funding_source IN
7353                         ( SELECT DISTINCT fa.funding_source
7354                           FROM acq.fund_allocation AS fa
7355                           WHERE fa.percent IS NOT NULL )
7356                 GROUP BY
7357                         fsrc.funding_source
7358         LOOP
7359                 tot_cents = floor( tot.total * 100 );
7360                 src = tot.funding_source;
7361                 RAISE NOTICE 'Funding source % total %',
7362                         src, tot_cents;
7363                 i := 0;
7364                 total_of_floors := 0;
7365                 total_percent := 0;
7366                 --
7367                 FOR fund in
7368                         SELECT
7369                                 fa.id,
7370                                 fa.percent,
7371                                 floor( fa.percent * tot_cents / 100 ) as floor_pennies
7372                         FROM
7373                                 acq.fund_allocation AS fa
7374                         WHERE
7375                                 fa.funding_source = src
7376                                 AND fa.percent IS NOT NULL
7377                         ORDER BY
7378                                 mod( fa.percent * tot_cents / 100, 1 ),
7379                                 fa.fund,
7380                                 fa.id
7381                 LOOP
7382                         RAISE NOTICE '   %: %',
7383                                 fund.id,
7384                                 fund.floor_pennies;
7385                         i := i + 1;
7386                         id[i] = fund.id;
7387                         pennies[i] = fund.floor_pennies;
7388                         total_percent := total_percent + fund.percent;
7389                         total_of_floors := total_of_floors + pennies[i];
7390                 END LOOP;
7391                 total_allocation := floor( total_percent * tot_cents /100 );
7392                 RAISE NOTICE 'Total before distributing residue: %', total_of_floors;
7393                 residue := total_allocation - total_of_floors;
7394                 RAISE NOTICE 'Residue: %', residue;
7395                 --
7396                 -- Post the calculated amounts, revising as needed to
7397                 -- distribute the rounding error
7398                 --
7399                 WHILE i > 0 LOOP
7400                         IF residue > 0 THEN
7401                                 pennies[i] = pennies[i] + 1;
7402                                 residue := residue - 1;
7403                         END IF;
7404                         --
7405                         -- Post amount
7406                         --
7407                         curr_id     := id[i];
7408                         curr_amount := trunc( pennies[i] / 100, 2 );
7409                         --
7410                         UPDATE
7411                                 acq.fund_allocation AS fa
7412                         SET
7413                                 amount = curr_amount,
7414                                 percent = NULL
7415                         WHERE
7416                                 fa.id = curr_id;
7417                         --
7418                         RAISE NOTICE '   ID % and amount %',
7419                                 curr_id,
7420                                 curr_amount;
7421                         i = i - 1;
7422                 END LOOP;
7423         END LOOP;
7424 end;
7425 $$ LANGUAGE 'plpgsql';
7426
7427 -- Run the temporary function
7428
7429 select * from acq.apply_percents();
7430
7431 -- Drop the temporary function now that we're done with it
7432
7433 DROP FUNCTION IF EXISTS acq.apply_percents();
7434
7435 -- Eliminate acq.fund_allocation.percent, which has been moved to the acq.fund_allocation_percent table.
7436
7437 -- If the following step fails, it's probably because there are still some non-null percent values in
7438 -- acq.fund_allocation.  They should have all been converted to amounts, and then set to null, by a
7439 -- previous upgrade step based on 0049.schema.acq_funding_allocation_percent.sql.  If there are any
7440 -- non-null values, then either that step didn't run, or it didn't work, or some non-null values
7441 -- slipped in afterwards.
7442
7443 -- To convert any remaining percents to amounts: create, run, and then drop the temporary stored
7444 -- procedure acq.apply_percents() as defined above.
7445
7446 ALTER TABLE acq.fund_allocation
7447 ALTER COLUMN amount SET NOT NULL;
7448
7449 CREATE OR REPLACE VIEW acq.fund_allocation_total AS
7450     SELECT  fund,
7451             SUM(a.amount * acq.exchange_ratio(s.currency_type, f.currency_type))::NUMERIC(100,2) AS amount
7452     FROM acq.fund_allocation a
7453          JOIN acq.fund f ON (a.fund = f.id)
7454          JOIN acq.funding_source s ON (a.funding_source = s.id)
7455     GROUP BY 1;
7456
7457 CREATE OR REPLACE VIEW acq.funding_source_allocation_total AS
7458     SELECT  funding_source,
7459             SUM(a.amount)::NUMERIC(100,2) AS amount
7460     FROM  acq.fund_allocation a
7461     GROUP BY 1;
7462
7463 ALTER TABLE acq.fund_allocation
7464 DROP COLUMN percent;
7465
7466 CREATE TABLE asset.copy_location_order
7467 (
7468         id              SERIAL           PRIMARY KEY,
7469         location        INT              NOT NULL
7470                                              REFERENCES asset.copy_location
7471                                              ON DELETE CASCADE
7472                                              DEFERRABLE INITIALLY DEFERRED,
7473         org             INT              NOT NULL
7474                                              REFERENCES actor.org_unit
7475                                              ON DELETE CASCADE
7476                                              DEFERRABLE INITIALLY DEFERRED,
7477         position        INT              NOT NULL DEFAULT 0,
7478         CONSTRAINT acplo_once_per_org UNIQUE ( location, org )
7479 );
7480
7481 ALTER TABLE money.credit_card_payment ADD COLUMN cc_processor TEXT;
7482
7483 -- If you ran this before its most recent incarnation:
7484 -- delete from config.upgrade_log where version = '0328';
7485 -- alter table money.credit_card_payment drop column cc_name;
7486
7487 ALTER TABLE money.credit_card_payment ADD COLUMN cc_first_name TEXT;
7488 ALTER TABLE money.credit_card_payment ADD COLUMN cc_last_name TEXT;
7489
7490 CREATE OR REPLACE FUNCTION action.find_circ_matrix_matchpoint( context_ou INT, match_item BIGINT, match_user INT, renewal BOOL ) RETURNS config.circ_matrix_matchpoint AS $func$
7491 DECLARE
7492     current_group    permission.grp_tree%ROWTYPE;
7493     user_object    actor.usr%ROWTYPE;
7494     item_object    asset.copy%ROWTYPE;
7495     cn_object    asset.call_number%ROWTYPE;
7496     rec_descriptor    metabib.rec_descriptor%ROWTYPE;
7497     current_mp    config.circ_matrix_matchpoint%ROWTYPE;
7498     matchpoint    config.circ_matrix_matchpoint%ROWTYPE;
7499 BEGIN
7500     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7501     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7502     SELECT INTO cn_object * FROM asset.call_number WHERE id = item_object.call_number;
7503     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r JOIN asset.call_number c USING (record) WHERE c.id = item_object.call_number;
7504     SELECT INTO current_group * FROM permission.grp_tree WHERE id = user_object.profile;
7505
7506     LOOP 
7507         -- for each potential matchpoint for this ou and group ...
7508         FOR current_mp IN
7509             SELECT  m.*
7510               FROM  config.circ_matrix_matchpoint m
7511                     JOIN actor.org_unit_ancestors( context_ou ) d ON (m.org_unit = d.id)
7512                     LEFT JOIN actor.org_unit_proximity p ON (p.from_org = context_ou AND p.to_org = d.id)
7513               WHERE m.grp = current_group.id
7514                     AND m.active
7515                     AND (m.copy_owning_lib IS NULL OR cn_object.owning_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_owning_lib) ))
7516                     AND (m.copy_circ_lib   IS NULL OR item_object.circ_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_circ_lib)   ))
7517               ORDER BY    CASE WHEN p.prox        IS NULL THEN 999 ELSE p.prox END,
7518                     CASE WHEN m.copy_owning_lib IS NOT NULL
7519                         THEN 256 / ( SELECT COALESCE(prox, 255) + 1 FROM actor.org_unit_proximity WHERE to_org = cn_object.owning_lib AND from_org = m.copy_owning_lib LIMIT 1 )
7520                         ELSE 0
7521                     END +
7522                     CASE WHEN m.copy_circ_lib IS NOT NULL
7523                         THEN 256 / ( SELECT COALESCE(prox, 255) + 1 FROM actor.org_unit_proximity WHERE to_org = item_object.circ_lib AND from_org = m.copy_circ_lib LIMIT 1 )
7524                         ELSE 0
7525                     END +
7526                     CASE WHEN m.is_renewal = renewal        THEN 128 ELSE 0 END +
7527                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 64 ELSE 0 END +
7528                     CASE WHEN m.circ_modifier    IS NOT NULL THEN 32 ELSE 0 END +
7529                     CASE WHEN m.marc_type        IS NOT NULL THEN 16 ELSE 0 END +
7530                     CASE WHEN m.marc_form        IS NOT NULL THEN 8 ELSE 0 END +
7531                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 4 ELSE 0 END +
7532                     CASE WHEN m.ref_flag        IS NOT NULL THEN 2 ELSE 0 END +
7533                     CASE WHEN m.usr_age_lower_bound    IS NOT NULL THEN 0.5 ELSE 0 END +
7534                     CASE WHEN m.usr_age_upper_bound    IS NOT NULL THEN 0.5 ELSE 0 END DESC LOOP
7535
7536             IF current_mp.is_renewal IS NOT NULL THEN
7537                 CONTINUE WHEN current_mp.is_renewal <> renewal;
7538             END IF;
7539
7540             IF current_mp.circ_modifier IS NOT NULL THEN
7541                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
7542             END IF;
7543
7544             IF current_mp.marc_type IS NOT NULL THEN
7545                 IF item_object.circ_as_type IS NOT NULL THEN
7546                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
7547                 ELSE
7548                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
7549                 END IF;
7550             END IF;
7551
7552             IF current_mp.marc_form IS NOT NULL THEN
7553                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
7554             END IF;
7555
7556             IF current_mp.marc_vr_format IS NOT NULL THEN
7557                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
7558             END IF;
7559
7560             IF current_mp.ref_flag IS NOT NULL THEN
7561                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
7562             END IF;
7563
7564             IF current_mp.juvenile_flag IS NOT NULL THEN
7565                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
7566             END IF;
7567
7568             IF current_mp.usr_age_lower_bound IS NOT NULL THEN
7569                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_lower_bound < age(user_object.dob);
7570             END IF;
7571
7572             IF current_mp.usr_age_upper_bound IS NOT NULL THEN
7573                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_upper_bound > age(user_object.dob);
7574             END IF;
7575
7576
7577             -- everything was undefined or matched
7578             matchpoint = current_mp;
7579
7580             EXIT WHEN matchpoint.id IS NOT NULL;
7581         END LOOP;
7582
7583         EXIT WHEN current_group.parent IS NULL OR matchpoint.id IS NOT NULL;
7584
7585         SELECT INTO current_group * FROM permission.grp_tree WHERE id = current_group.parent;
7586     END LOOP;
7587
7588     RETURN matchpoint;
7589 END;
7590 $func$ LANGUAGE plpgsql;
7591
7592 CREATE TYPE action.hold_stats AS (
7593     hold_count              INT,
7594     copy_count              INT,
7595     available_count         INT,
7596     total_copy_ratio        FLOAT,
7597     available_copy_ratio    FLOAT
7598 );
7599
7600 CREATE OR REPLACE FUNCTION action.copy_related_hold_stats (copy_id INT) RETURNS action.hold_stats AS $func$
7601 DECLARE
7602     output          action.hold_stats%ROWTYPE;
7603     hold_count      INT := 0;
7604     copy_count      INT := 0;
7605     available_count INT := 0;
7606     hold_map_data   RECORD;
7607 BEGIN
7608
7609     output.hold_count := 0;
7610     output.copy_count := 0;
7611     output.available_count := 0;
7612
7613     SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
7614       FROM  action.hold_copy_map m
7615             JOIN action.hold_request h ON (m.hold = h.id)
7616       WHERE m.target_copy = copy_id
7617             AND NOT h.frozen;
7618
7619     output.hold_count := hold_count;
7620
7621     IF output.hold_count > 0 THEN
7622         FOR hold_map_data IN
7623             SELECT  DISTINCT m.target_copy,
7624                     acp.status
7625               FROM  action.hold_copy_map m
7626                     JOIN asset.copy acp ON (m.target_copy = acp.id)
7627                     JOIN action.hold_request h ON (m.hold = h.id)
7628               WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
7629         LOOP
7630             output.copy_count := output.copy_count + 1;
7631             IF hold_map_data.status IN (0,7,12) THEN
7632                 output.available_count := output.available_count + 1;
7633             END IF;
7634         END LOOP;
7635         output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
7636         output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
7637
7638     END IF;
7639
7640     RETURN output;
7641
7642 END;
7643 $func$ LANGUAGE PLPGSQL;
7644
7645 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN total_copy_hold_ratio FLOAT;
7646 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN available_copy_hold_ratio FLOAT;
7647
7648 ALTER TABLE config.circ_matrix_matchpoint DROP CONSTRAINT ep_once_per_grp_loc_mod_marc;
7649
7650 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_circ_lib   INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7651 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_owning_lib INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7652
7653 ALTER TABLE config.circ_matrix_matchpoint ADD CONSTRAINT ep_once_per_grp_loc_mod_marc UNIQUE (
7654     grp, org_unit, circ_modifier, marc_type, marc_form, marc_vr_format, ref_flag,
7655     juvenile_flag, usr_age_lower_bound, usr_age_upper_bound, is_renewal, copy_circ_lib,
7656     copy_owning_lib
7657 );
7658
7659 -- Return the correct fail_part when the item can't be found
7660 CREATE OR REPLACE FUNCTION action.item_user_circ_test( circ_ou INT, match_item BIGINT, match_user INT, renewal BOOL ) RETURNS SETOF action.matrix_test_result AS $func$
7661 DECLARE
7662     user_object        actor.usr%ROWTYPE;
7663     standing_penalty    config.standing_penalty%ROWTYPE;
7664     item_object        asset.copy%ROWTYPE;
7665     item_status_object    config.copy_status%ROWTYPE;
7666     item_location_object    asset.copy_location%ROWTYPE;
7667     result            action.matrix_test_result;
7668     circ_test        config.circ_matrix_matchpoint%ROWTYPE;
7669     out_by_circ_mod        config.circ_matrix_circ_mod_test%ROWTYPE;
7670     circ_mod_map        config.circ_matrix_circ_mod_test_map%ROWTYPE;
7671     hold_ratio          action.hold_stats%ROWTYPE;
7672     penalty_type         TEXT;
7673     tmp_grp         INT;
7674     items_out        INT;
7675     context_org_list        INT[];
7676     done            BOOL := FALSE;
7677 BEGIN
7678     result.success := TRUE;
7679
7680     -- Fail if the user is BARRED
7681     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7682
7683     -- Fail if we couldn't find the user 
7684     IF user_object.id IS NULL THEN
7685         result.fail_part := 'no_user';
7686         result.success := FALSE;
7687         done := TRUE;
7688         RETURN NEXT result;
7689         RETURN;
7690     END IF;
7691
7692     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7693
7694     -- Fail if we couldn't find the item 
7695     IF item_object.id IS NULL THEN
7696         result.fail_part := 'no_item';
7697         result.success := FALSE;
7698         done := TRUE;
7699         RETURN NEXT result;
7700         RETURN;
7701     END IF;
7702
7703     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, match_item, match_user, renewal);
7704     result.matchpoint := circ_test.id;
7705
7706     -- Fail if we couldn't find a matchpoint
7707     IF result.matchpoint IS NULL THEN
7708         result.fail_part := 'no_matchpoint';
7709         result.success := FALSE;
7710         done := TRUE;
7711         RETURN NEXT result;
7712     END IF;
7713
7714     IF user_object.barred IS TRUE THEN
7715         result.fail_part := 'actor.usr.barred';
7716         result.success := FALSE;
7717         done := TRUE;
7718         RETURN NEXT result;
7719     END IF;
7720
7721     -- Fail if the item can't circulate
7722     IF item_object.circulate IS FALSE THEN
7723         result.fail_part := 'asset.copy.circulate';
7724         result.success := FALSE;
7725         done := TRUE;
7726         RETURN NEXT result;
7727     END IF;
7728
7729     -- Fail if the item isn't in a circulateable status on a non-renewal
7730     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN
7731         result.fail_part := 'asset.copy.status';
7732         result.success := FALSE;
7733         done := TRUE;
7734         RETURN NEXT result;
7735     ELSIF renewal AND item_object.status <> 1 THEN
7736         result.fail_part := 'asset.copy.status';
7737         result.success := FALSE;
7738         done := TRUE;
7739         RETURN NEXT result;
7740     END IF;
7741
7742     -- Fail if the item can't circulate because of the shelving location
7743     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
7744     IF item_location_object.circulate IS FALSE THEN
7745         result.fail_part := 'asset.copy_location.circulate';
7746         result.success := FALSE;
7747         done := TRUE;
7748         RETURN NEXT result;
7749     END IF;
7750
7751     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( circ_test.org_unit );
7752
7753     -- Fail if the test is set to hard non-circulating
7754     IF circ_test.circulate IS FALSE THEN
7755         result.fail_part := 'config.circ_matrix_test.circulate';
7756         result.success := FALSE;
7757         done := TRUE;
7758         RETURN NEXT result;
7759     END IF;
7760
7761     -- Fail if the total copy-hold ratio is too low
7762     IF circ_test.total_copy_hold_ratio IS NOT NULL THEN
7763         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
7764         IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_test.total_copy_hold_ratio THEN
7765             result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio';
7766             result.success := FALSE;
7767             done := TRUE;
7768             RETURN NEXT result;
7769         END IF;
7770     END IF;
7771
7772     -- Fail if the available copy-hold ratio is too low
7773     IF circ_test.available_copy_hold_ratio IS NOT NULL THEN
7774         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
7775         IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_test.available_copy_hold_ratio THEN
7776             result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio';
7777             result.success := FALSE;
7778             done := TRUE;
7779             RETURN NEXT result;
7780         END IF;
7781     END IF;
7782
7783     IF renewal THEN
7784         penalty_type = '%RENEW%';
7785     ELSE
7786         penalty_type = '%CIRC%';
7787     END IF;
7788
7789     FOR standing_penalty IN
7790         SELECT  DISTINCT csp.*
7791           FROM  actor.usr_standing_penalty usp
7792                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
7793           WHERE usr = match_user
7794                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
7795                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
7796                 AND csp.block_list LIKE penalty_type LOOP
7797
7798         result.fail_part := standing_penalty.name;
7799         result.success := FALSE;
7800         done := TRUE;
7801         RETURN NEXT result;
7802     END LOOP;
7803
7804     -- Fail if the user has too many items with specific circ_modifiers checked out
7805     FOR out_by_circ_mod IN SELECT * FROM config.circ_matrix_circ_mod_test WHERE matchpoint = circ_test.id LOOP
7806         SELECT  INTO items_out COUNT(*)
7807           FROM  action.circulation circ
7808             JOIN asset.copy cp ON (cp.id = circ.target_copy)
7809           WHERE circ.usr = match_user
7810                AND circ.circ_lib IN ( SELECT * FROM explode_array(context_org_list) )
7811             AND circ.checkin_time IS NULL
7812             AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
7813             AND cp.circ_modifier IN (SELECT circ_mod FROM config.circ_matrix_circ_mod_test_map WHERE circ_mod_test = out_by_circ_mod.id);
7814         IF items_out >= out_by_circ_mod.items_out THEN
7815             result.fail_part := 'config.circ_matrix_circ_mod_test';
7816             result.success := FALSE;
7817             done := TRUE;
7818             RETURN NEXT result;
7819         END IF;
7820     END LOOP;
7821
7822     -- If we passed everything, return the successful matchpoint id
7823     IF NOT done THEN
7824         RETURN NEXT result;
7825     END IF;
7826
7827     RETURN;
7828 END;
7829 $func$ LANGUAGE plpgsql;
7830
7831 CREATE TABLE config.remote_account (
7832     id          SERIAL  PRIMARY KEY,
7833     label       TEXT    NOT NULL,
7834     host        TEXT    NOT NULL,   -- name or IP, :port optional
7835     username    TEXT,               -- optional, since we could default to $USER
7836     password    TEXT,               -- optional, since we could use SSH keys, or anonymous login.
7837     account     TEXT,               -- aka profile or FTP "account" command
7838     path        TEXT,               -- aka directory
7839     owner       INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
7840     last_activity TIMESTAMP WITH TIME ZONE
7841 );
7842
7843 CREATE TABLE acq.edi_account (      -- similar tables can extend remote_account for other parts of EG
7844     provider    INT     NOT NULL REFERENCES acq.provider          (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
7845     in_dir      TEXT,   -- incoming messages dir (probably different than config.remote_account.path, the outgoing dir)
7846         vendcode    TEXT,
7847         vendacct    TEXT
7848
7849 ) INHERITS (config.remote_account);
7850
7851 ALTER TABLE acq.edi_account ADD PRIMARY KEY (id);
7852
7853 CREATE TABLE acq.claim_type (
7854         id             SERIAL           PRIMARY KEY,
7855         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
7856                                                  DEFERRABLE INITIALLY DEFERRED,
7857         code           TEXT             NOT NULL,
7858         description    TEXT             NOT NULL,
7859         CONSTRAINT claim_type_once_per_org UNIQUE ( org_unit, code )
7860 );
7861
7862 CREATE TABLE acq.claim (
7863         id             SERIAL           PRIMARY KEY,
7864         type           INT              NOT NULL REFERENCES acq.claim_type
7865                                                  DEFERRABLE INITIALLY DEFERRED,
7866         lineitem_detail BIGINT          NOT NULL REFERENCES acq.lineitem_detail
7867                                                  DEFERRABLE INITIALLY DEFERRED
7868 );
7869
7870 CREATE TABLE acq.claim_policy (
7871         id              SERIAL       PRIMARY KEY,
7872         org_unit        INT          NOT NULL REFERENCES actor.org_unit
7873                                      DEFERRABLE INITIALLY DEFERRED,
7874         name            TEXT         NOT NULL,
7875         description     TEXT         NOT NULL,
7876         CONSTRAINT name_once_per_org UNIQUE (org_unit, name)
7877 );
7878
7879 -- Add a san column for EDI. 
7880 -- See: http://isbn.org/standards/home/isbn/us/san/san-qa.asp
7881
7882 ALTER TABLE acq.provider ADD COLUMN san INT;
7883
7884 ALTER TABLE acq.provider ALTER COLUMN san TYPE TEXT USING lpad(text(san), 7, '0');
7885
7886 -- null edi_default is OK... it has to be, since we have no values in acq.edi_account yet
7887 ALTER TABLE acq.provider ADD COLUMN edi_default INT REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
7888
7889 ALTER TABLE acq.provider
7890         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
7891
7892 ALTER TABLE acq.provider
7893         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
7894
7895 ALTER TABLE acq.provider
7896         ADD COLUMN url TEXT;
7897
7898 ALTER TABLE acq.provider
7899         ADD COLUMN email TEXT;
7900
7901 ALTER TABLE acq.provider
7902         ADD COLUMN phone TEXT;
7903
7904 ALTER TABLE acq.provider
7905         ADD COLUMN fax_phone TEXT;
7906
7907 ALTER TABLE acq.provider
7908         ADD COLUMN default_claim_policy INT
7909                 REFERENCES acq.claim_policy
7910                 DEFERRABLE INITIALLY DEFERRED;
7911
7912 ALTER TABLE action.transit_copy
7913 ADD COLUMN prev_dest INTEGER REFERENCES actor.org_unit( id )
7914                                                          DEFERRABLE INITIALLY DEFERRED;
7915
7916 DROP SCHEMA IF EXISTS booking CASCADE;
7917
7918 CREATE SCHEMA booking;
7919
7920 CREATE TABLE booking.resource_type (
7921         id             SERIAL          PRIMARY KEY,
7922         name           TEXT            NOT NULL,
7923         fine_interval  INTERVAL,
7924         fine_amount    DECIMAL(8,2)    NOT NULL DEFAULT 0,
7925         owner          INT             NOT NULL
7926                                        REFERENCES actor.org_unit( id )
7927                                        DEFERRABLE INITIALLY DEFERRED,
7928         catalog_item   BOOLEAN         NOT NULL DEFAULT FALSE,
7929         transferable   BOOLEAN         NOT NULL DEFAULT FALSE,
7930     record         BIGINT          REFERENCES biblio.record_entry (id)
7931                                        DEFERRABLE INITIALLY DEFERRED,
7932     max_fine       NUMERIC(8,2),
7933     elbow_room     INTERVAL,
7934     CONSTRAINT brt_name_or_record_once_per_owner UNIQUE(owner, name, record)
7935 );
7936
7937 CREATE TABLE booking.resource (
7938         id             SERIAL           PRIMARY KEY,
7939         owner          INT              NOT NULL
7940                                         REFERENCES actor.org_unit(id)
7941                                         DEFERRABLE INITIALLY DEFERRED,
7942         type           INT              NOT NULL
7943                                         REFERENCES booking.resource_type(id)
7944                                         DEFERRABLE INITIALLY DEFERRED,
7945         overbook       BOOLEAN          NOT NULL DEFAULT FALSE,
7946         barcode        TEXT             NOT NULL,
7947         deposit        BOOLEAN          NOT NULL DEFAULT FALSE,
7948         deposit_amount DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
7949         user_fee       DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
7950         CONSTRAINT br_unique UNIQUE (owner, barcode)
7951 );
7952
7953 -- For non-catalog items: hijack barcode for name/description
7954
7955 CREATE TABLE booking.resource_attr (
7956         id              SERIAL          PRIMARY KEY,
7957         owner           INT             NOT NULL
7958                                         REFERENCES actor.org_unit(id)
7959                                         DEFERRABLE INITIALLY DEFERRED,
7960         name            TEXT            NOT NULL,
7961         resource_type   INT             NOT NULL
7962                                         REFERENCES booking.resource_type(id)
7963                                         ON DELETE CASCADE
7964                                         DEFERRABLE INITIALLY DEFERRED,
7965         required        BOOLEAN         NOT NULL DEFAULT FALSE,
7966         CONSTRAINT bra_name_once_per_type UNIQUE(resource_type, name)
7967 );
7968
7969 CREATE TABLE booking.resource_attr_value (
7970         id               SERIAL         PRIMARY KEY,
7971         owner            INT            NOT NULL
7972                                         REFERENCES actor.org_unit(id)
7973                                         DEFERRABLE INITIALLY DEFERRED,
7974         attr             INT            NOT NULL
7975                                         REFERENCES booking.resource_attr(id)
7976                                         DEFERRABLE INITIALLY DEFERRED,
7977         valid_value      TEXT           NOT NULL,
7978         CONSTRAINT brav_logical_key UNIQUE(owner, attr, valid_value)
7979 );
7980
7981 CREATE TABLE booking.resource_attr_map (
7982         id               SERIAL         PRIMARY KEY,
7983         resource         INT            NOT NULL
7984                                         REFERENCES booking.resource(id)
7985                                         ON DELETE CASCADE
7986                                         DEFERRABLE INITIALLY DEFERRED,
7987         resource_attr    INT            NOT NULL
7988                                         REFERENCES booking.resource_attr(id)
7989                                         ON DELETE CASCADE
7990                                         DEFERRABLE INITIALLY DEFERRED,
7991         value            INT            NOT NULL
7992                                         REFERENCES booking.resource_attr_value(id)
7993                                         DEFERRABLE INITIALLY DEFERRED,
7994         CONSTRAINT bram_one_value_per_attr UNIQUE(resource, resource_attr)
7995 );
7996
7997 CREATE TABLE booking.reservation (
7998         request_time     TIMESTAMPTZ   NOT NULL DEFAULT now(),
7999         start_time       TIMESTAMPTZ,
8000         end_time         TIMESTAMPTZ,
8001         capture_time     TIMESTAMPTZ,
8002         cancel_time      TIMESTAMPTZ,
8003         pickup_time      TIMESTAMPTZ,
8004         return_time      TIMESTAMPTZ,
8005         booking_interval INTERVAL,
8006         fine_interval    INTERVAL,
8007         fine_amount      DECIMAL(8,2),
8008         target_resource_type  INT       NOT NULL
8009                                         REFERENCES booking.resource_type(id)
8010                                         ON DELETE CASCADE
8011                                         DEFERRABLE INITIALLY DEFERRED,
8012         target_resource  INT            REFERENCES booking.resource(id)
8013                                         ON DELETE CASCADE
8014                                         DEFERRABLE INITIALLY DEFERRED,
8015         current_resource INT            REFERENCES booking.resource(id)
8016                                         ON DELETE CASCADE
8017                                         DEFERRABLE INITIALLY DEFERRED,
8018         request_lib      INT            NOT NULL
8019                                         REFERENCES actor.org_unit(id)
8020                                         DEFERRABLE INITIALLY DEFERRED,
8021         pickup_lib       INT            REFERENCES actor.org_unit(id)
8022                                         DEFERRABLE INITIALLY DEFERRED,
8023         capture_staff    INT            REFERENCES actor.usr(id)
8024                                         DEFERRABLE INITIALLY DEFERRED,
8025     max_fine         NUMERIC(8,2)
8026 ) INHERITS (money.billable_xact);
8027
8028 ALTER TABLE booking.reservation ADD PRIMARY KEY (id);
8029
8030 ALTER TABLE booking.reservation
8031         ADD CONSTRAINT booking_reservation_usr_fkey
8032         FOREIGN KEY (usr) REFERENCES actor.usr (id)
8033         DEFERRABLE INITIALLY DEFERRED;
8034
8035 CREATE TABLE booking.reservation_attr_value_map (
8036         id               SERIAL         PRIMARY KEY,
8037         reservation      INT            NOT NULL
8038                                         REFERENCES booking.reservation(id)
8039                                         ON DELETE CASCADE
8040                                         DEFERRABLE INITIALLY DEFERRED,
8041         attr_value       INT            NOT NULL
8042                                         REFERENCES booking.resource_attr_value(id)
8043                                         ON DELETE CASCADE
8044                                         DEFERRABLE INITIALLY DEFERRED,
8045         CONSTRAINT bravm_logical_key UNIQUE(reservation, attr_value)
8046 );
8047
8048 -- represents a circ chain summary
8049 CREATE TYPE action.circ_chain_summary AS (
8050     num_circs INTEGER,
8051     start_time TIMESTAMP WITH TIME ZONE,
8052     checkout_workstation TEXT,
8053     last_renewal_time TIMESTAMP WITH TIME ZONE, -- NULL if no renewals
8054     last_stop_fines TEXT,
8055     last_stop_fines_time TIMESTAMP WITH TIME ZONE,
8056     last_renewal_workstation TEXT, -- NULL if no renewals
8057     last_checkin_workstation TEXT,
8058     last_checkin_time TIMESTAMP WITH TIME ZONE,
8059     last_checkin_scan_time TIMESTAMP WITH TIME ZONE
8060 );
8061
8062 CREATE OR REPLACE FUNCTION action.circ_chain ( ctx_circ_id INTEGER ) RETURNS SETOF action.circulation AS $$
8063 DECLARE
8064     tmp_circ action.circulation%ROWTYPE;
8065     circ_0 action.circulation%ROWTYPE;
8066 BEGIN
8067
8068     SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id;
8069
8070     IF tmp_circ IS NULL THEN
8071         RETURN NEXT tmp_circ;
8072     END IF;
8073     circ_0 := tmp_circ;
8074
8075     -- find the front of the chain
8076     WHILE TRUE LOOP
8077         SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ;
8078         IF tmp_circ IS NULL THEN
8079             EXIT;
8080         END IF;
8081         circ_0 := tmp_circ;
8082     END LOOP;
8083
8084     -- now send the circs to the caller, oldest to newest
8085     tmp_circ := circ_0;
8086     WHILE TRUE LOOP
8087         IF tmp_circ IS NULL THEN
8088             EXIT;
8089         END IF;
8090         RETURN NEXT tmp_circ;
8091         SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id;
8092     END LOOP;
8093
8094 END;
8095 $$ LANGUAGE 'plpgsql';
8096
8097 CREATE OR REPLACE FUNCTION action.summarize_circ_chain ( ctx_circ_id INTEGER ) RETURNS action.circ_chain_summary AS $$
8098
8099 DECLARE
8100
8101     -- first circ in the chain
8102     circ_0 action.circulation%ROWTYPE;
8103
8104     -- last circ in the chain
8105     circ_n action.circulation%ROWTYPE;
8106
8107     -- circ chain under construction
8108     chain action.circ_chain_summary;
8109     tmp_circ action.circulation%ROWTYPE;
8110
8111 BEGIN
8112     
8113     chain.num_circs := 0;
8114     FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP
8115
8116         IF chain.num_circs = 0 THEN
8117             circ_0 := tmp_circ;
8118         END IF;
8119
8120         chain.num_circs := chain.num_circs + 1;
8121         circ_n := tmp_circ;
8122     END LOOP;
8123
8124     chain.start_time := circ_0.xact_start;
8125     chain.last_stop_fines := circ_n.stop_fines;
8126     chain.last_stop_fines_time := circ_n.stop_fines_time;
8127     chain.last_checkin_time := circ_n.checkin_time;
8128     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
8129     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
8130     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
8131
8132     IF chain.num_circs > 1 THEN
8133         chain.last_renewal_time := circ_n.xact_start;
8134         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
8135     END IF;
8136
8137     RETURN chain;
8138
8139 END;
8140 $$ LANGUAGE 'plpgsql';
8141
8142 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('reservation');
8143 CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update ();
8144 CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete ();
8145
8146 ALTER TABLE config.standing_penalty
8147         ADD COLUMN org_depth   INTEGER;
8148
8149 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
8150 DECLARE
8151     user_object         actor.usr%ROWTYPE;
8152     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
8153     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
8154     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
8155     max_fines           permission.grp_penalty_threshold%ROWTYPE;
8156     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
8157     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
8158     tmp_grp             INT;
8159     items_overdue       INT;
8160     items_out           INT;
8161     context_org_list    INT[];
8162     current_fines        NUMERIC(8,2) := 0.0;
8163     tmp_fines            NUMERIC(8,2);
8164     tmp_groc            RECORD;
8165     tmp_circ            RECORD;
8166     tmp_org             actor.org_unit%ROWTYPE;
8167     tmp_penalty         config.standing_penalty%ROWTYPE;
8168     tmp_depth           INTEGER;
8169 BEGIN
8170     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8171
8172     -- Max fines
8173     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8174
8175     -- Fail if the user has a high fine balance
8176     LOOP
8177         tmp_grp := user_object.profile;
8178         LOOP
8179             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
8180
8181             IF max_fines.threshold IS NULL THEN
8182                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8183             ELSE
8184                 EXIT;
8185             END IF;
8186
8187             IF tmp_grp IS NULL THEN
8188                 EXIT;
8189             END IF;
8190         END LOOP;
8191
8192         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8193             EXIT;
8194         END IF;
8195
8196         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8197
8198     END LOOP;
8199
8200     IF max_fines.threshold IS NOT NULL THEN
8201
8202         FOR existing_sp_row IN
8203                 SELECT  *
8204                   FROM  actor.usr_standing_penalty
8205                   WHERE usr = match_user
8206                         AND org_unit = max_fines.org_unit
8207                         AND (stop_date IS NULL or stop_date > NOW())
8208                         AND standing_penalty = 1
8209                 LOOP
8210             RETURN NEXT existing_sp_row;
8211         END LOOP;
8212
8213         SELECT  SUM(f.balance_owed) INTO current_fines
8214           FROM  money.materialized_billable_xact_summary f
8215                 JOIN (
8216                     SELECT  r.id
8217                       FROM  booking.reservation r
8218                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8219                       WHERE usr = match_user
8220                             AND xact_finish IS NULL
8221                                 UNION ALL
8222                     SELECT  g.id
8223                       FROM  money.grocery g
8224                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8225                       WHERE usr = match_user
8226                             AND xact_finish IS NULL
8227                                 UNION ALL
8228                     SELECT  circ.id
8229                       FROM  action.circulation circ
8230                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8231                       WHERE usr = match_user
8232                             AND xact_finish IS NULL ) l USING (id);
8233
8234         IF current_fines >= max_fines.threshold THEN
8235             new_sp_row.usr := match_user;
8236             new_sp_row.org_unit := max_fines.org_unit;
8237             new_sp_row.standing_penalty := 1;
8238             RETURN NEXT new_sp_row;
8239         END IF;
8240     END IF;
8241
8242     -- Start over for max overdue
8243     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8244
8245     -- Fail if the user has too many overdue items
8246     LOOP
8247         tmp_grp := user_object.profile;
8248         LOOP
8249
8250             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
8251
8252             IF max_overdue.threshold IS NULL THEN
8253                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8254             ELSE
8255                 EXIT;
8256             END IF;
8257
8258             IF tmp_grp IS NULL THEN
8259                 EXIT;
8260             END IF;
8261         END LOOP;
8262
8263         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8264             EXIT;
8265         END IF;
8266
8267         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8268
8269     END LOOP;
8270
8271     IF max_overdue.threshold IS NOT NULL THEN
8272
8273         FOR existing_sp_row IN
8274                 SELECT  *
8275                   FROM  actor.usr_standing_penalty
8276                   WHERE usr = match_user
8277                         AND org_unit = max_overdue.org_unit
8278                         AND (stop_date IS NULL or stop_date > NOW())
8279                         AND standing_penalty = 2
8280                 LOOP
8281             RETURN NEXT existing_sp_row;
8282         END LOOP;
8283
8284         SELECT  INTO items_overdue COUNT(*)
8285           FROM  action.circulation circ
8286                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
8287           WHERE circ.usr = match_user
8288             AND circ.checkin_time IS NULL
8289             AND circ.due_date < NOW()
8290             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
8291
8292         IF items_overdue >= max_overdue.threshold::INT THEN
8293             new_sp_row.usr := match_user;
8294             new_sp_row.org_unit := max_overdue.org_unit;
8295             new_sp_row.standing_penalty := 2;
8296             RETURN NEXT new_sp_row;
8297         END IF;
8298     END IF;
8299
8300     -- Start over for max out
8301     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8302
8303     -- Fail if the user has too many checked out items
8304     LOOP
8305         tmp_grp := user_object.profile;
8306         LOOP
8307             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
8308
8309             IF max_items_out.threshold IS NULL THEN
8310                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8311             ELSE
8312                 EXIT;
8313             END IF;
8314
8315             IF tmp_grp IS NULL THEN
8316                 EXIT;
8317             END IF;
8318         END LOOP;
8319
8320         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8321             EXIT;
8322         END IF;
8323
8324         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8325
8326     END LOOP;
8327
8328
8329     -- Fail if the user has too many items checked out
8330     IF max_items_out.threshold IS NOT NULL THEN
8331
8332         FOR existing_sp_row IN
8333                 SELECT  *
8334                   FROM  actor.usr_standing_penalty
8335                   WHERE usr = match_user
8336                         AND org_unit = max_items_out.org_unit
8337                         AND (stop_date IS NULL or stop_date > NOW())
8338                         AND standing_penalty = 3
8339                 LOOP
8340             RETURN NEXT existing_sp_row;
8341         END LOOP;
8342
8343         SELECT  INTO items_out COUNT(*)
8344           FROM  action.circulation circ
8345                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
8346           WHERE circ.usr = match_user
8347                 AND circ.checkin_time IS NULL
8348                 AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL);
8349
8350            IF items_out >= max_items_out.threshold::INT THEN
8351             new_sp_row.usr := match_user;
8352             new_sp_row.org_unit := max_items_out.org_unit;
8353             new_sp_row.standing_penalty := 3;
8354             RETURN NEXT new_sp_row;
8355            END IF;
8356     END IF;
8357
8358     -- Start over for collections warning
8359     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8360
8361     -- Fail if the user has a collections-level fine balance
8362     LOOP
8363         tmp_grp := user_object.profile;
8364         LOOP
8365             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
8366
8367             IF max_fines.threshold IS NULL THEN
8368                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8369             ELSE
8370                 EXIT;
8371             END IF;
8372
8373             IF tmp_grp IS NULL THEN
8374                 EXIT;
8375             END IF;
8376         END LOOP;
8377
8378         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8379             EXIT;
8380         END IF;
8381
8382         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8383
8384     END LOOP;
8385
8386     IF max_fines.threshold IS NOT NULL THEN
8387
8388         FOR existing_sp_row IN
8389                 SELECT  *
8390                   FROM  actor.usr_standing_penalty
8391                   WHERE usr = match_user
8392                         AND org_unit = max_fines.org_unit
8393                         AND (stop_date IS NULL or stop_date > NOW())
8394                         AND standing_penalty = 4
8395                 LOOP
8396             RETURN NEXT existing_sp_row;
8397         END LOOP;
8398
8399         SELECT  SUM(f.balance_owed) INTO current_fines
8400           FROM  money.materialized_billable_xact_summary f
8401                 JOIN (
8402                     SELECT  r.id
8403                       FROM  booking.reservation r
8404                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8405                       WHERE usr = match_user
8406                             AND xact_finish IS NULL
8407                                 UNION ALL
8408                     SELECT  g.id
8409                       FROM  money.grocery g
8410                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8411                       WHERE usr = match_user
8412                             AND xact_finish IS NULL
8413                                 UNION ALL
8414                     SELECT  circ.id
8415                       FROM  action.circulation circ
8416                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8417                       WHERE usr = match_user
8418                             AND xact_finish IS NULL ) l USING (id);
8419
8420         IF current_fines >= max_fines.threshold THEN
8421             new_sp_row.usr := match_user;
8422             new_sp_row.org_unit := max_fines.org_unit;
8423             new_sp_row.standing_penalty := 4;
8424             RETURN NEXT new_sp_row;
8425         END IF;
8426     END IF;
8427
8428     -- Start over for in collections
8429     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8430
8431     -- Remove the in-collections penalty if the user has paid down enough
8432     -- This penalty is different, because this code is not responsible for creating 
8433     -- new in-collections penalties, only for removing them
8434     LOOP
8435         tmp_grp := user_object.profile;
8436         LOOP
8437             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id;
8438
8439             IF max_fines.threshold IS NULL THEN
8440                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8441             ELSE
8442                 EXIT;
8443             END IF;
8444
8445             IF tmp_grp IS NULL THEN
8446                 EXIT;
8447             END IF;
8448         END LOOP;
8449
8450         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8451             EXIT;
8452         END IF;
8453
8454         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8455
8456     END LOOP;
8457
8458     IF max_fines.threshold IS NOT NULL THEN
8459
8460         -- first, see if the user had paid down to the threshold
8461         SELECT  SUM(f.balance_owed) INTO current_fines
8462           FROM  money.materialized_billable_xact_summary f
8463                 JOIN (
8464                     SELECT  r.id
8465                       FROM  booking.reservation r
8466                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8467                       WHERE usr = match_user
8468                             AND xact_finish IS NULL
8469                                 UNION ALL
8470                     SELECT  g.id
8471                       FROM  money.grocery g
8472                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8473                       WHERE usr = match_user
8474                             AND xact_finish IS NULL
8475                                 UNION ALL
8476                     SELECT  circ.id
8477                       FROM  action.circulation circ
8478                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8479                       WHERE usr = match_user
8480                             AND xact_finish IS NULL ) l USING (id);
8481
8482         IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN
8483             -- patron has paid down enough
8484
8485             SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30;
8486
8487             IF tmp_penalty.org_depth IS NOT NULL THEN
8488
8489                 -- since this code is not responsible for applying the penalty, it can't 
8490                 -- guarantee the current context org will match the org at which the penalty 
8491                 --- was applied.  search up the org tree until we hit the configured penalty depth
8492                 SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8493                 SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8494
8495                 WHILE tmp_depth >= tmp_penalty.org_depth LOOP
8496
8497                     FOR existing_sp_row IN
8498                             SELECT  *
8499                             FROM  actor.usr_standing_penalty
8500                             WHERE usr = match_user
8501                                     AND org_unit = tmp_org.id
8502                                     AND (stop_date IS NULL or stop_date > NOW())
8503                                     AND standing_penalty = 30 
8504                             LOOP
8505
8506                         -- Penalty exists, return it for removal
8507                         RETURN NEXT existing_sp_row;
8508                     END LOOP;
8509
8510                     IF tmp_org.parent_ou IS NULL THEN
8511                         EXIT;
8512                     END IF;
8513
8514                     SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8515                     SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8516                 END LOOP;
8517
8518             ELSE
8519
8520                 -- no penalty depth is defined, look for exact matches
8521
8522                 FOR existing_sp_row IN
8523                         SELECT  *
8524                         FROM  actor.usr_standing_penalty
8525                         WHERE usr = match_user
8526                                 AND org_unit = max_fines.org_unit
8527                                 AND (stop_date IS NULL or stop_date > NOW())
8528                                 AND standing_penalty = 30 
8529                         LOOP
8530                     -- Penalty exists, return it for removal
8531                     RETURN NEXT existing_sp_row;
8532                 END LOOP;
8533             END IF;
8534     
8535         END IF;
8536
8537     END IF;
8538
8539     RETURN;
8540 END;
8541 $func$ LANGUAGE plpgsql;
8542
8543 -- Create a default row in acq.fiscal_calendar
8544 -- Add a column in actor.org_unit to point to it
8545
8546 INSERT INTO acq.fiscal_calendar ( id, name ) VALUES ( 1, 'Default' );
8547
8548 ALTER TABLE actor.org_unit
8549 ADD COLUMN fiscal_calendar INT NOT NULL
8550         REFERENCES acq.fiscal_calendar( id )
8551         DEFERRABLE INITIALLY DEFERRED
8552         DEFAULT 1;
8553
8554 ALTER TABLE auditor.actor_org_unit_history
8555         ADD COLUMN fiscal_calendar INT;
8556
8557 DROP VIEW auditor.actor_org_unit_lifecycle;
8558
8559 SELECT auditor.create_auditor_lifecycle( 'actor', 'org_unit' );
8560
8561 ALTER TABLE acq.funding_source_credit
8562 ADD COLUMN deadline_date TIMESTAMPTZ;
8563
8564 ALTER TABLE acq.funding_source_credit
8565 ADD COLUMN effective_date TIMESTAMPTZ NOT NULL DEFAULT now();
8566
8567 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS','Patron has been referred to a collections agency');
8568
8569 CREATE TABLE acq.fund_transfer (
8570         id               SERIAL         PRIMARY KEY,
8571         src_fund         INT            NOT NULL REFERENCES acq.fund( id )
8572                                         DEFERRABLE INITIALLY DEFERRED,
8573         src_amount       NUMERIC        NOT NULL,
8574         dest_fund        INT            REFERENCES acq.fund( id )
8575                                         DEFERRABLE INITIALLY DEFERRED,
8576         dest_amount      NUMERIC,
8577         transfer_time    TIMESTAMPTZ    NOT NULL DEFAULT now(),
8578         transfer_user    INT            NOT NULL REFERENCES actor.usr( id )
8579                                         DEFERRABLE INITIALLY DEFERRED,
8580         note             TEXT,
8581     funding_source_credit INTEGER   NOT NULL
8582                                         REFERENCES acq.funding_source_credit(id)
8583                                         DEFERRABLE INITIALLY DEFERRED
8584 );
8585
8586 CREATE INDEX acqftr_usr_idx
8587 ON acq.fund_transfer( transfer_user );
8588
8589 COMMENT ON TABLE acq.fund_transfer IS $$
8590 /*
8591  * Copyright (C) 2009  Georgia Public Library Service
8592  * Scott McKellar <scott@esilibrary.com>
8593  *
8594  * Fund Transfer
8595  *
8596  * Each row represents the transfer of money from a source fund
8597  * to a destination fund.  There should be corresponding entries
8598  * in acq.fund_allocation.  The purpose of acq.fund_transfer is
8599  * to record how much money moved from which fund to which other
8600  * fund.
8601  * 
8602  * The presence of two amount fields, rather than one, reflects
8603  * the possibility that the two funds are denominated in different
8604  * currencies.  If they use the same currency type, the two
8605  * amounts should be the same.
8606  *
8607  * ****
8608  *
8609  * This program is free software; you can redistribute it and/or
8610  * modify it under the terms of the GNU General Public License
8611  * as published by the Free Software Foundation; either version 2
8612  * of the License, or (at your option) any later version.
8613  *
8614  * This program is distributed in the hope that it will be useful,
8615  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8616  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8617  * GNU General Public License for more details.
8618  */
8619 $$;
8620
8621 CREATE TABLE acq.claim_event_type (
8622         id             SERIAL           PRIMARY KEY,
8623         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8624                                                  DEFERRABLE INITIALLY DEFERRED,
8625         code           TEXT             NOT NULL,
8626         description    TEXT             NOT NULL,
8627         library_initiated BOOL          NOT NULL DEFAULT FALSE,
8628         CONSTRAINT event_type_once_per_org UNIQUE ( org_unit, code )
8629 );
8630
8631 CREATE TABLE acq.claim_event (
8632         id             BIGSERIAL        PRIMARY KEY,
8633         type           INT              NOT NULL REFERENCES acq.claim_event_type
8634                                                  DEFERRABLE INITIALLY DEFERRED,
8635         claim          SERIAL           NOT NULL REFERENCES acq.claim
8636                                                  DEFERRABLE INITIALLY DEFERRED,
8637         event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
8638         creator        INT              NOT NULL REFERENCES actor.usr
8639                                                  DEFERRABLE INITIALLY DEFERRED,
8640         note           TEXT
8641 );
8642
8643 CREATE INDEX claim_event_claim_date_idx ON acq.claim_event( claim, event_date );
8644
8645 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
8646         src_usr  IN INTEGER,
8647         dest_usr IN INTEGER
8648 ) RETURNS VOID AS $$
8649 DECLARE
8650         suffix TEXT;
8651         renamable_row RECORD;
8652 BEGIN
8653
8654         UPDATE actor.usr SET
8655                 active = FALSE,
8656                 card = NULL,
8657                 mailing_address = NULL,
8658                 billing_address = NULL
8659         WHERE id = src_usr;
8660
8661         -- acq.*
8662         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
8663         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
8664         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
8665         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
8666         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
8667         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
8668         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
8669
8670         -- Update with a rename to avoid collisions
8671         FOR renamable_row in
8672                 SELECT id, name
8673                 FROM   acq.picklist
8674                 WHERE  owner = src_usr
8675         LOOP
8676                 suffix := ' (' || src_usr || ')';
8677                 LOOP
8678                         BEGIN
8679                                 UPDATE  acq.picklist
8680                                 SET     owner = dest_usr, name = name || suffix
8681                                 WHERE   id = renamable_row.id;
8682                         EXCEPTION WHEN unique_violation THEN
8683                                 suffix := suffix || ' ';
8684                                 CONTINUE;
8685                         END;
8686                         EXIT;
8687                 END LOOP;
8688         END LOOP;
8689
8690         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
8691         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
8692         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
8693         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
8694         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
8695         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
8696         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
8697         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
8698
8699         -- action.*
8700         DELETE FROM action.circulation WHERE usr = src_usr;
8701         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
8702         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
8703         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
8704         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
8705         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
8706         DELETE FROM action.hold_request WHERE usr = src_usr;
8707         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
8708         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
8709         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
8710         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
8711         DELETE FROM action.survey_response WHERE usr = src_usr;
8712         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
8713
8714         -- actor.*
8715         DELETE FROM actor.card WHERE usr = src_usr;
8716         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
8717
8718         -- The following update is intended to avoid transient violations of a foreign
8719         -- key constraint, whereby actor.usr_address references itself.  It may not be
8720         -- necessary, but it does no harm.
8721         UPDATE actor.usr_address SET replaces = NULL
8722                 WHERE usr = src_usr AND replaces IS NOT NULL;
8723         DELETE FROM actor.usr_address WHERE usr = src_usr;
8724         DELETE FROM actor.usr_note WHERE usr = src_usr;
8725         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
8726         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
8727         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
8728         DELETE FROM actor.usr_setting WHERE usr = src_usr;
8729         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
8730         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
8731
8732         -- asset.*
8733         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
8734         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
8735         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
8736         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
8737         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
8738         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
8739
8740         -- auditor.*
8741         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
8742         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
8743         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
8744         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
8745         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
8746         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
8747         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
8748         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
8749
8750         -- biblio.*
8751         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
8752         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
8753         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
8754         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
8755
8756         -- container.*
8757         -- Update buckets with a rename to avoid collisions
8758         FOR renamable_row in
8759                 SELECT id, name
8760                 FROM   container.biblio_record_entry_bucket
8761                 WHERE  owner = src_usr
8762         LOOP
8763                 suffix := ' (' || src_usr || ')';
8764                 LOOP
8765                         BEGIN
8766                                 UPDATE  container.biblio_record_entry_bucket
8767                                 SET     owner = dest_usr, name = name || suffix
8768                                 WHERE   id = renamable_row.id;
8769                         EXCEPTION WHEN unique_violation THEN
8770                                 suffix := suffix || ' ';
8771                                 CONTINUE;
8772                         END;
8773                         EXIT;
8774                 END LOOP;
8775         END LOOP;
8776
8777         FOR renamable_row in
8778                 SELECT id, name
8779                 FROM   container.call_number_bucket
8780                 WHERE  owner = src_usr
8781         LOOP
8782                 suffix := ' (' || src_usr || ')';
8783                 LOOP
8784                         BEGIN
8785                                 UPDATE  container.call_number_bucket
8786                                 SET     owner = dest_usr, name = name || suffix
8787                                 WHERE   id = renamable_row.id;
8788                         EXCEPTION WHEN unique_violation THEN
8789                                 suffix := suffix || ' ';
8790                                 CONTINUE;
8791                         END;
8792                         EXIT;
8793                 END LOOP;
8794         END LOOP;
8795
8796         FOR renamable_row in
8797                 SELECT id, name
8798                 FROM   container.copy_bucket
8799                 WHERE  owner = src_usr
8800         LOOP
8801                 suffix := ' (' || src_usr || ')';
8802                 LOOP
8803                         BEGIN
8804                                 UPDATE  container.copy_bucket
8805                                 SET     owner = dest_usr, name = name || suffix
8806                                 WHERE   id = renamable_row.id;
8807                         EXCEPTION WHEN unique_violation THEN
8808                                 suffix := suffix || ' ';
8809                                 CONTINUE;
8810                         END;
8811                         EXIT;
8812                 END LOOP;
8813         END LOOP;
8814
8815         FOR renamable_row in
8816                 SELECT id, name
8817                 FROM   container.user_bucket
8818                 WHERE  owner = src_usr
8819         LOOP
8820                 suffix := ' (' || src_usr || ')';
8821                 LOOP
8822                         BEGIN
8823                                 UPDATE  container.user_bucket
8824                                 SET     owner = dest_usr, name = name || suffix
8825                                 WHERE   id = renamable_row.id;
8826                         EXCEPTION WHEN unique_violation THEN
8827                                 suffix := suffix || ' ';
8828                                 CONTINUE;
8829                         END;
8830                         EXIT;
8831                 END LOOP;
8832         END LOOP;
8833
8834         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
8835
8836         -- money.*
8837         DELETE FROM money.billable_xact WHERE usr = src_usr;
8838         DELETE FROM money.collections_tracker WHERE usr = src_usr;
8839         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
8840
8841         -- permission.*
8842         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
8843         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
8844         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
8845         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
8846
8847         -- reporter.*
8848         -- Update with a rename to avoid collisions
8849         BEGIN
8850                 FOR renamable_row in
8851                         SELECT id, name
8852                         FROM   reporter.output_folder
8853                         WHERE  owner = src_usr
8854                 LOOP
8855                         suffix := ' (' || src_usr || ')';
8856                         LOOP
8857                                 BEGIN
8858                                         UPDATE  reporter.output_folder
8859                                         SET     owner = dest_usr, name = name || suffix
8860                                         WHERE   id = renamable_row.id;
8861                                 EXCEPTION WHEN unique_violation THEN
8862                                         suffix := suffix || ' ';
8863                                         CONTINUE;
8864                                 END;
8865                                 EXIT;
8866                         END LOOP;
8867                 END LOOP;
8868         EXCEPTION WHEN undefined_table THEN
8869                 -- do nothing
8870         END;
8871
8872         BEGIN
8873                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
8874         EXCEPTION WHEN undefined_table THEN
8875                 -- do nothing
8876         END;
8877
8878         -- Update with a rename to avoid collisions
8879         BEGIN
8880                 FOR renamable_row in
8881                         SELECT id, name
8882                         FROM   reporter.report_folder
8883                         WHERE  owner = src_usr
8884                 LOOP
8885                         suffix := ' (' || src_usr || ')';
8886                         LOOP
8887                                 BEGIN
8888                                         UPDATE  reporter.report_folder
8889                                         SET     owner = dest_usr, name = name || suffix
8890                                         WHERE   id = renamable_row.id;
8891                                 EXCEPTION WHEN unique_violation THEN
8892                                         suffix := suffix || ' ';
8893                                         CONTINUE;
8894                                 END;
8895                                 EXIT;
8896                         END LOOP;
8897                 END LOOP;
8898         EXCEPTION WHEN undefined_table THEN
8899                 -- do nothing
8900         END;
8901
8902         BEGIN
8903                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
8904         EXCEPTION WHEN undefined_table THEN
8905                 -- do nothing
8906         END;
8907
8908         BEGIN
8909                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
8910         EXCEPTION WHEN undefined_table THEN
8911                 -- do nothing
8912         END;
8913
8914         -- Update with a rename to avoid collisions
8915         BEGIN
8916                 FOR renamable_row in
8917                         SELECT id, name
8918                         FROM   reporter.template_folder
8919                         WHERE  owner = src_usr
8920                 LOOP
8921                         suffix := ' (' || src_usr || ')';
8922                         LOOP
8923                                 BEGIN
8924                                         UPDATE  reporter.template_folder
8925                                         SET     owner = dest_usr, name = name || suffix
8926                                         WHERE   id = renamable_row.id;
8927                                 EXCEPTION WHEN unique_violation THEN
8928                                         suffix := suffix || ' ';
8929                                         CONTINUE;
8930                                 END;
8931                                 EXIT;
8932                         END LOOP;
8933                 END LOOP;
8934         EXCEPTION WHEN undefined_table THEN
8935         -- do nothing
8936         END;
8937
8938         -- vandelay.*
8939         -- Update with a rename to avoid collisions
8940         FOR renamable_row in
8941                 SELECT id, name
8942                 FROM   vandelay.queue
8943                 WHERE  owner = src_usr
8944         LOOP
8945                 suffix := ' (' || src_usr || ')';
8946                 LOOP
8947                         BEGIN
8948                                 UPDATE  vandelay.queue
8949                                 SET     owner = dest_usr, name = name || suffix
8950                                 WHERE   id = renamable_row.id;
8951                         EXCEPTION WHEN unique_violation THEN
8952                                 suffix := suffix || ' ';
8953                                 CONTINUE;
8954                         END;
8955                         EXIT;
8956                 END LOOP;
8957         END LOOP;
8958
8959 END;
8960 $$ LANGUAGE plpgsql;
8961
8962 -- INSERT INTO config.copy_status (id,name) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'));
8963
8964 ALTER TABLE acq.fund
8965 ADD COLUMN rollover BOOL NOT NULL DEFAULT FALSE;
8966
8967 ALTER TABLE acq.fund
8968         ADD COLUMN propagate BOOLEAN NOT NULL DEFAULT TRUE;
8969
8970 -- A fund can't roll over if it doesn't propagate from one year to the next
8971
8972 ALTER TABLE acq.fund
8973         ADD CONSTRAINT acq_fund_rollover_implies_propagate CHECK
8974         ( propagate OR NOT rollover );
8975
8976 ALTER TABLE acq.fund
8977         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
8978
8979 ALTER TABLE acq.fund
8980     ADD COLUMN balance_warning_percent INT
8981     CONSTRAINT balance_warning_percent_limit
8982         CHECK( balance_warning_percent <= 100 );
8983
8984 ALTER TABLE acq.fund
8985     ADD COLUMN balance_stop_percent INT
8986     CONSTRAINT balance_stop_percent_limit
8987         CHECK( balance_stop_percent <= 100 );
8988
8989 CREATE VIEW acq.ordered_funding_source_credit AS
8990         SELECT
8991                 CASE WHEN deadline_date IS NULL THEN
8992                         2
8993                 ELSE
8994                         1
8995                 END AS sort_priority,
8996                 CASE WHEN deadline_date IS NULL THEN
8997                         effective_date
8998                 ELSE
8999                         deadline_date
9000                 END AS sort_date,
9001                 id,
9002                 funding_source,
9003                 amount,
9004                 note
9005         FROM
9006                 acq.funding_source_credit;
9007
9008 COMMENT ON VIEW acq.ordered_funding_source_credit IS $$
9009 /*
9010  * Copyright (C) 2009  Georgia Public Library Service
9011  * Scott McKellar <scott@gmail.com>
9012  *
9013  * The acq.ordered_funding_source_credit view is a prioritized
9014  * ordering of funding source credits.  When ordered by the first
9015  * three columns, this view defines the order in which the various
9016  * credits are to be tapped for spending, subject to the allocations
9017  * in the acq.fund_allocation table.
9018  *
9019  * The first column reflects the principle that we should spend
9020  * money with deadlines before spending money without deadlines.
9021  *
9022  * The second column reflects the principle that we should spend the
9023  * oldest money first.  For money with deadlines, that means that we
9024  * spend first from the credit with the earliest deadline.  For
9025  * money without deadlines, we spend first from the credit with the
9026  * earliest effective date.  
9027  *
9028  * The third column is a tie breaker to ensure a consistent
9029  * ordering.
9030  *
9031  * ****
9032  *
9033  * This program is free software; you can redistribute it and/or
9034  * modify it under the terms of the GNU General Public License
9035  * as published by the Free Software Foundation; either version 2
9036  * of the License, or (at your option) any later version.
9037  *
9038  * This program is distributed in the hope that it will be useful,
9039  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9040  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9041  * GNU General Public License for more details.
9042  */
9043 $$;
9044
9045 CREATE OR REPLACE VIEW money.billable_xact_summary_location_view AS
9046         SELECT * FROM money.materialized_billable_xact_summary;
9047
9048 CREATE TABLE config.marc21_rec_type_map (
9049     code        TEXT    PRIMARY KEY,
9050     type_val    TEXT    NOT NULL,
9051     blvl_val    TEXT    NOT NULL
9052 );
9053
9054 CREATE TABLE config.marc21_ff_pos_map (
9055     id          SERIAL  PRIMARY KEY,
9056     fixed_field TEXT    NOT NULL,
9057     tag         TEXT    NOT NULL,
9058     rec_type    TEXT    NOT NULL,
9059     start_pos   INT     NOT NULL,
9060     length      INT     NOT NULL,
9061     default_val TEXT    NOT NULL DEFAULT ' '
9062 );
9063
9064 CREATE TABLE config.marc21_physical_characteristic_type_map (
9065     ptype_key   TEXT    PRIMARY KEY,
9066     label       TEXT    NOT NULL -- I18N
9067 );
9068
9069 CREATE TABLE config.marc21_physical_characteristic_subfield_map (
9070     id          SERIAL  PRIMARY KEY,
9071     ptype_key   TEXT    NOT NULL REFERENCES config.marc21_physical_characteristic_type_map (ptype_key) ON DELETE CASCADE ON UPDATE CASCADE,
9072     subfield    TEXT    NOT NULL,
9073     start_pos   INT     NOT NULL,
9074     length      INT     NOT NULL,
9075     label       TEXT    NOT NULL -- I18N
9076 );
9077
9078 CREATE TABLE config.marc21_physical_characteristic_value_map (
9079     id              SERIAL  PRIMARY KEY,
9080     value           TEXT    NOT NULL,
9081     ptype_subfield  INT     NOT NULL REFERENCES config.marc21_physical_characteristic_subfield_map (id),
9082     label           TEXT    NOT NULL -- I18N
9083 );
9084
9085 ----------------------------------
9086 -- MARC21 record structure data --
9087 ----------------------------------
9088
9089 -- Record type map
9090 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm');
9091 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi');
9092 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi');
9093 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi');
9094 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi');
9095 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi');
9096 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi');
9097 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi');
9098
9099 ------ Physical Characteristics
9100
9101 -- Map
9102 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map');
9103 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD');
9104 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas');
9105 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram');
9106 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map');
9107 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile');
9108 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model');
9109 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');
9110 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section');
9111 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9112 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View');
9113 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9114 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color');
9115 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');
9116 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9117 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium');
9118 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9119 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9120 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9121 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9122 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9123 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9124 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9125 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9126 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');
9127 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');
9128 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');
9129 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');
9130 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9131 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');
9132 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9133 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction');
9134 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9135 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');
9136 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9137 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9138 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','g','6','1','Production/reproduction details');
9139 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');
9140 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy');
9141 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');
9142 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film');
9143 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9144 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9145 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative');
9146 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9147 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9148 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9149 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');
9150
9151 -- Electronic Resource
9152 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource');
9153 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD');
9154 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');
9155 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');
9156 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');
9157 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');
9158 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');
9159 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');
9160 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');
9161 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');
9162 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote');
9163 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9164 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9165 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color');
9166 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');
9167 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');
9168 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9169 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');
9170 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9171 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');
9172 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9173 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9174 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions');
9175 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.');
9176 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.');
9177 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.');
9178 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.');
9179 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.');
9180 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');
9181 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.');
9182 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9183 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.');
9184 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9185 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','f','5','1','Sound');
9186 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)');
9187 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound');
9188 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9189 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth');
9190 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9191 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple');
9192 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');
9193 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats');
9194 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');
9195 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');
9196 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9197 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)');
9198 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent');
9199 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');
9200 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present');
9201 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9202 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source');
9203 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');
9204 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');
9205 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');
9206 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)');
9207 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9208 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');
9209 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9210 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','k','12','1','Level of compression');
9211 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed');
9212 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless');
9213 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy');
9214 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9215 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9216 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality');
9217 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access');
9218 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');
9219 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation');
9220 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement');
9221 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9222
9223 -- Globe
9224 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe');
9225 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD');
9226 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');
9227 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');
9228 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');
9229 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');
9230 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9231 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9232 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','d','3','1','Color');
9233 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');
9234 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9235 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium');
9236 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9237 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9238 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9239 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9240 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9241 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9242 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9243 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9244 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9245 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9246 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction');
9247 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9248 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');
9249 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9250 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9251
9252 -- Tactile Material
9253 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material');
9254 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD');
9255 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon');
9256 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Braille');
9257 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9258 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');
9259 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9260 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9261 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing');
9262 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');
9263 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');
9264 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');
9265 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');
9266 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');
9267 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');
9268 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');
9269 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9270 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9271 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','e','4','1','Level of contraction');
9272 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted');
9273 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted');
9274 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9275 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');
9276 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9277 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9278 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format');
9279 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');
9280 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');
9281 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');
9282 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph');
9283 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');
9284 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');
9285 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');
9286 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');
9287 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');
9288 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');
9289 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline');
9290 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');
9291 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');
9292 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9293 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9294 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics');
9295 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');
9296 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');
9297 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');
9298 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9299 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9300
9301 -- Projected Graphic
9302 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic');
9303 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD');
9304 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');
9305 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip');
9306 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');
9307 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');
9308 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide');
9309 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency');
9310 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9311 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color');
9312 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');
9313 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9314 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');
9315 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9316 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');
9317 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9318 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9319 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion');
9320 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9321 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9322 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');
9323 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');
9324 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');
9325 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9326 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9327 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9328 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');
9329 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');
9330 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');
9331 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9332 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound');
9333 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');
9334 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');
9335 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');
9336 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');
9337 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');
9338 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');
9339 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');
9340 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9341 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9342 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9343 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9344 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions');
9345 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.');
9346 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.');
9347 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.');
9348 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.');
9349 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.');
9350 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.');
9351 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.');
9352 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.)');
9353 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.)');
9354 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.)');
9355 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.)');
9356 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9357 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.)');
9358 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.)');
9359 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.)');
9360 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.)');
9361 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9362 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','i','8','1','Secondary support material');
9363 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard');
9364 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9365 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9366 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal');
9367 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');
9368 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');
9369 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');
9370 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9371 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9372
9373 -- Microform
9374 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform');
9375 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD');
9376 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');
9377 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');
9378 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');
9379 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');
9380 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche');
9381 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');
9382 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque');
9383 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9384 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9385 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','d','3','1','Positive/negative');
9386 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9387 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9388 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9389 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9390 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions');
9391 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.');
9392 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.');
9393 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.');
9394 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.');
9395 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.');
9396 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.)');
9397 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.)');
9398 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.)');
9399 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.)');
9400 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9401 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9402 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');
9403 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)');
9404 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)');
9405 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)');
9406 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)');
9407 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-)');
9408 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9409 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');
9410 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color');
9411 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');
9412 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9413 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9414 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9415 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9416 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film');
9417 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');
9418 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo');
9419 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular');
9420 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9421 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');
9422 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9423 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9424 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)');
9425 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');
9426 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');
9427 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');
9428 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');
9429 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9430 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film');
9431 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');
9432 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');
9433 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');
9434 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');
9435 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');
9436 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');
9437 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');
9438 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');
9439 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');
9440 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9441 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9442
9443 -- Non-projected Graphic
9444 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic');
9445 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD');
9446 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage');
9447 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing');
9448 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting');
9449 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');
9450 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative');
9451 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint');
9452 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture');
9453 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print');
9454 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');
9455 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart');
9456 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');
9457 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9458 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9459 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color');
9460 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');
9461 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');
9462 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9463 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');
9464 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9465 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9466 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9467 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material');
9468 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9469 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');
9470 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');
9471 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9472 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9473 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9474 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9475 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9476 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');
9477 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9478 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9479 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9480 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9481 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9482 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9483 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9484 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9485 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','f','5','1','Secondary support material');
9486 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9487 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');
9488 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');
9489 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9490 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9491 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9492 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9493 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9494 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');
9495 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9496 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9497 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9498 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9499 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9500 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9501 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9502 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9503
9504 -- Motion Picture
9505 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture');
9506 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD');
9507 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');
9508 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');
9509 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');
9510 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9511 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9512 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','d','3','1','Color');
9513 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');
9514 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9515 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');
9516 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9517 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9518 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9519 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format');
9520 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');
9521 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)');
9522 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D');
9523 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)');
9524 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');
9525 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');
9526 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9527 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9528 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');
9529 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');
9530 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');
9531 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9532 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound');
9533 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');
9534 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');
9535 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');
9536 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');
9537 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');
9538 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');
9539 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');
9540 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9541 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9542 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9543 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9544 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions');
9545 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.');
9546 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.');
9547 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.');
9548 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.');
9549 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.');
9550 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.');
9551 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.');
9552 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9553 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9554 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','i','8','1','Configuration of playback channels');
9555 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9556 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9557 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');
9558 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');
9559 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9560 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9561 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9562 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','j','9','1','Production elements');
9563 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');
9564 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims');
9565 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes');
9566 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes');
9567 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');
9568 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');
9569 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');
9570 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');
9571 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9572
9573 -- Remote-sensing Image
9574 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image');
9575 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD');
9576 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9577 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude of sensor');
9578 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface');
9579 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne');
9580 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne');
9581 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');
9582 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9583 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9584 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','e','4','1','Attitude of sensor');
9585 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');
9586 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');
9587 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical');
9588 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');
9589 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9590 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover');
9591 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%');
9592 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%');
9593 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%');
9594 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%');
9595 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%');
9596 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%');
9597 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%');
9598 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%');
9599 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%');
9600 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%');
9601 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');
9602 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9603 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type');
9604 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon');
9605 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');
9606 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');
9607 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');
9608 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');
9609 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');
9610 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');
9611 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');
9612 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');
9613 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');
9614 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9615 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9616 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category');
9617 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological');
9618 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');
9619 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');
9620 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');
9621 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');
9622 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9623 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9624 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type');
9625 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active');
9626 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive');
9627 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9628 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9629 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type');
9630 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');
9631 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');
9632 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');
9633 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');
9634 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');
9635 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)');
9636 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');
9637 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations');
9638 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');
9639 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)');
9640 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)');
9641 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)');
9642 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');
9643 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');
9644 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');
9645 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');
9646 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');
9647 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');
9648 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');
9649 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');
9650 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');
9651 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');
9652 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');
9653 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');
9654 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');
9655 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');
9656 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');
9657 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');
9658 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');
9659 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');
9660 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');
9661 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');
9662 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');
9663 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)');
9664 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');
9665 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger');
9666 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic');
9667 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');
9668 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');
9669 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9670 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9671
9672 -- Sound Recording
9673 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording');
9674 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD');
9675 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');
9676 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder');
9677 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');
9678 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');
9679 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll');
9680 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');
9681 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');
9682 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9683 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');
9684 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9685 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed');
9686 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');
9687 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');
9688 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');
9689 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');
9690 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');
9691 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');
9692 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');
9693 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');
9694 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');
9695 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');
9696 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');
9697 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');
9698 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');
9699 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');
9700 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9701 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9702 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','e','4','1','Configuration of playback channels');
9703 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9704 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic');
9705 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9706 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9707 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9708 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','f','5','1','Groove width or pitch');
9709 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');
9710 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');
9711 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');
9712 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9713 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9714 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','g','6','1','Dimensions');
9715 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.');
9716 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.');
9717 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.');
9718 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.');
9719 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.');
9720 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.');
9721 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.)');
9722 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.');
9723 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');
9724 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.');
9725 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.');
9726 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9727 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9728 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width');
9729 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.');
9730 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.');
9731 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');
9732 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.');
9733 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.');
9734 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9735 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9736 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration ');
9737 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');
9738 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');
9739 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');
9740 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');
9741 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');
9742 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');
9743 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');
9744 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9745 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9746 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback');
9747 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');
9748 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');
9749 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');
9750 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');
9751 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');
9752 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');
9753 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');
9754 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');
9755 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');
9756 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9757 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9758 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage');
9759 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');
9760 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');
9761 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');
9762 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');
9763 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9764 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9765
9766 -- Videorecording
9767 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording');
9768 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD');
9769 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge');
9770 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9771 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette');
9772 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel');
9773 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9774 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9775 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','d','3','1','Color');
9776 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');
9777 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9778 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9779 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');
9780 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9781 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9782 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format');
9783 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta');
9784 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS');
9785 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');
9786 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ');
9787 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');
9788 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex');
9789 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc');
9790 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED');
9791 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam');
9792 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');
9793 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');
9794 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');
9795 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');
9796 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.');
9797 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.');
9798 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9799 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD');
9800 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9801 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');
9802 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');
9803 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');
9804 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9805 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound');
9806 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');
9807 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');
9808 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');
9809 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');
9810 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');
9811 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');
9812 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');
9813 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9814 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9815 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9816 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9817 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions');
9818 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.');
9819 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.');
9820 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.');
9821 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.');
9822 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.');
9823 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.');
9824 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9825 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9826 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel');
9827 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9828 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9829 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');
9830 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');
9831 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9832 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9833 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9834
9835 -- Fixed Field position data -- 0-based!
9836 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' ');
9837 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' ');
9838 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' ');
9839 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' ');
9840 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' ');
9841 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' ');
9842 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SER', 5, 1, ' ');
9843 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' ');
9844 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' ');
9845 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' ');
9846 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' ');
9847 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' ');
9848 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SER', 22, 1, ' ');
9849 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' ');
9850 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm');
9851 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm');
9852 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm');
9853 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c');
9854 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm');
9855 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm');
9856 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's');
9857 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm');
9858 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' ');
9859 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' ');
9860 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 7, 4, ' ');
9861 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 8, 3, ' ');
9862 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 24, 4, ' ');
9863 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 25, 3, ' ');
9864 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' ');
9865 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' ');
9866 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' ');
9867 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' ');
9868 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' ');
9869 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' ');
9870 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' ');
9871 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' ');
9872 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' ');
9873 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' ');
9874 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' ');
9875 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' ');
9876 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' ');
9877 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' ');
9878 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' ');
9879 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' ');
9880 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' ');
9881 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' ');
9882 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' ');
9883 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' ');
9884 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' ');
9885 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' ');
9886 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' ');
9887 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' ');
9888 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' ');
9889 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' ');
9890 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' ');
9891 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' ');
9892 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' ');
9893 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' ');
9894 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9');
9895 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' ');
9896 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' ');
9897 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' ');
9898 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' ');
9899 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' ');
9900 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' ');
9901 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' ');
9902 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' ');
9903 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' ');
9904 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' ');
9905 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' ');
9906 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' ');
9907 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' ');
9908 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' ');
9909 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' ');
9910 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c');
9911 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' ');
9912 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' ');
9913 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' ');
9914 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' ');
9915 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' ');
9916 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' ');
9917 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' ');
9918 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' ');
9919 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' ');
9920 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0');
9921 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0');
9922 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' ');
9923 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' ');
9924 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' ');
9925 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' ');
9926 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' ');
9927 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' ');
9928 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' ');
9929 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' ');
9930 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' ');
9931 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' ');
9932 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' ');
9933 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' ');
9934 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' ');
9935 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' ');
9936 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' ');
9937 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' ');
9938 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' ');
9939 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' ');
9940 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' ');
9941 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' ');
9942 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' ');
9943 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' ');
9944 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' ');
9945 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' ');
9946 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' ');
9947 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' ');
9948 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0');
9949 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0');
9950 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0');
9951 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0');
9952 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' ');
9953 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' ');
9954 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' ');
9955 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' ');
9956 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' ');
9957 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' ');
9958 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' ');
9959 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' ');
9960 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0');
9961 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0');
9962 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' ');
9963 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' ');
9964 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' ');
9965 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' ');
9966 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' ');
9967 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' ');
9968 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' ');
9969 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' ');
9970 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');
9971 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');
9972 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' ');
9973 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' ');
9974 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a');
9975 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm');
9976 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e');
9977 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p');
9978 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i');
9979 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c');
9980 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a');
9981 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g');
9982
9983 CREATE OR REPLACE FUNCTION biblio.marc21_record_type( rid BIGINT ) RETURNS config.marc21_rec_type_map AS $func$
9984 DECLARE
9985         ldr         RECORD;
9986         tval        TEXT;
9987         tval_rec    RECORD;
9988         bval        TEXT;
9989         bval_rec    RECORD;
9990     retval      config.marc21_rec_type_map%ROWTYPE;
9991 BEGIN
9992     SELECT * INTO ldr FROM metabib.full_rec WHERE record = rid AND tag = 'LDR' LIMIT 1;
9993
9994     IF ldr.id IS NULL THEN
9995         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
9996         RETURN retval;
9997     END IF;
9998
9999     SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10000     SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10001
10002
10003     tval := SUBSTRING( ldr.value, tval_rec.start_pos + 1, tval_rec.length );
10004     bval := SUBSTRING( ldr.value, bval_rec.start_pos + 1, bval_rec.length );
10005
10006     -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr.value;
10007
10008     SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10009
10010
10011     IF retval.code IS NULL THEN
10012         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10013     END IF;
10014
10015     RETURN retval;
10016 END;
10017 $func$ LANGUAGE PLPGSQL;
10018
10019 CREATE OR REPLACE FUNCTION biblio.marc21_extract_fixed_field( rid BIGINT, ff TEXT ) RETURNS TEXT AS $func$
10020 DECLARE
10021     rtype       TEXT;
10022     ff_pos      RECORD;
10023     tag_data    RECORD;
10024     val         TEXT;
10025 BEGIN
10026     rtype := (biblio.marc21_record_type( rid )).code;
10027     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP
10028         FOR tag_data IN SELECT * FROM metabib.full_rec WHERE tag = UPPER(ff_pos.tag) AND record = rid LOOP
10029             val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
10030             RETURN val;
10031         END LOOP;
10032         val := REPEAT( ff_pos.default_val, ff_pos.length );
10033         RETURN val;
10034     END LOOP;
10035
10036     RETURN NULL;
10037 END;
10038 $func$ LANGUAGE PLPGSQL;
10039
10040 CREATE TYPE biblio.marc21_physical_characteristics AS ( id INT, record BIGINT, ptype TEXT, subfield INT, value INT );
10041 CREATE OR REPLACE FUNCTION biblio.marc21_physical_characteristics( rid BIGINT ) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
10042 DECLARE
10043     rowid   INT := 0;
10044     _007    RECORD;
10045     ptype   config.marc21_physical_characteristic_type_map%ROWTYPE;
10046     psf     config.marc21_physical_characteristic_subfield_map%ROWTYPE;
10047     pval    config.marc21_physical_characteristic_value_map%ROWTYPE;
10048     retval  biblio.marc21_physical_characteristics%ROWTYPE;
10049 BEGIN
10050
10051     SELECT * INTO _007 FROM metabib.full_rec WHERE record = rid AND tag = '007' LIMIT 1;
10052
10053     IF _007.id IS NOT NULL THEN
10054         SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007.value, 1, 1 );
10055
10056         IF ptype.ptype_key IS NOT NULL THEN
10057             FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP
10058                 SELECT * INTO pval FROM config.marc21_physical_characteristic_value_map WHERE ptype_subfield = psf.id AND value = SUBSTRING( _007.value, psf.start_pos + 1, psf.length );
10059
10060                 IF pval.id IS NOT NULL THEN
10061                     rowid := rowid + 1;
10062                     retval.id := rowid;
10063                     retval.record := rid;
10064                     retval.ptype := ptype.ptype_key;
10065                     retval.subfield := psf.id;
10066                     retval.value := pval.id;
10067                     RETURN NEXT retval;
10068                 END IF;
10069
10070             END LOOP;
10071         END IF;
10072     END IF;
10073
10074     RETURN;
10075 END;
10076 $func$ LANGUAGE PLPGSQL;
10077
10078 DROP VIEW IF EXISTS money.open_usr_circulation_summary;
10079 DROP VIEW IF EXISTS money.open_usr_summary;
10080 DROP VIEW IF EXISTS money.open_billable_xact_summary;
10081
10082 -- The view should supply defaults for numeric (amount) columns
10083 CREATE OR REPLACE VIEW money.billable_xact_summary AS
10084     SELECT  xact.id,
10085         xact.usr,
10086         xact.xact_start,
10087         xact.xact_finish,
10088         COALESCE(credit.amount, 0.0::numeric) AS total_paid,
10089         credit.payment_ts AS last_payment_ts,
10090         credit.note AS last_payment_note,
10091         credit.payment_type AS last_payment_type,
10092         COALESCE(debit.amount, 0.0::numeric) AS total_owed,
10093         debit.billing_ts AS last_billing_ts,
10094         debit.note AS last_billing_note,
10095         debit.billing_type AS last_billing_type,
10096         COALESCE(debit.amount, 0.0::numeric) - COALESCE(credit.amount, 0.0::numeric) AS balance_owed,
10097         p.relname AS xact_type
10098       FROM  money.billable_xact xact
10099         JOIN pg_class p ON xact.tableoid = p.oid
10100         LEFT JOIN (
10101             SELECT  billing.xact,
10102                 sum(billing.amount) AS amount,
10103                 max(billing.billing_ts) AS billing_ts,
10104                 last(billing.note) AS note,
10105                 last(billing.billing_type) AS billing_type
10106               FROM  money.billing
10107               WHERE billing.voided IS FALSE
10108               GROUP BY billing.xact
10109             ) debit ON xact.id = debit.xact
10110         LEFT JOIN (
10111             SELECT  payment_view.xact,
10112                 sum(payment_view.amount) AS amount,
10113                 max(payment_view.payment_ts) AS payment_ts,
10114                 last(payment_view.note) AS note,
10115                 last(payment_view.payment_type) AS payment_type
10116               FROM  money.payment_view
10117               WHERE payment_view.voided IS FALSE
10118               GROUP BY payment_view.xact
10119             ) credit ON xact.id = credit.xact
10120       ORDER BY debit.billing_ts, credit.payment_ts;
10121
10122 CREATE OR REPLACE VIEW money.open_billable_xact_summary AS 
10123     SELECT * FROM money.billable_xact_summary_location_view
10124     WHERE xact_finish IS NULL;
10125
10126 CREATE OR REPLACE VIEW money.open_usr_circulation_summary AS
10127     SELECT 
10128         usr,
10129         SUM(total_paid) AS total_paid,
10130         SUM(total_owed) AS total_owed,
10131         SUM(balance_owed) AS balance_owed
10132     FROM  money.materialized_billable_xact_summary
10133     WHERE xact_type = 'circulation' AND xact_finish IS NULL
10134     GROUP BY usr;
10135
10136 CREATE OR REPLACE VIEW money.usr_summary AS
10137     SELECT 
10138         usr, 
10139         sum(total_paid) AS total_paid, 
10140         sum(total_owed) AS total_owed, 
10141         sum(balance_owed) AS balance_owed
10142     FROM money.materialized_billable_xact_summary
10143     GROUP BY usr;
10144
10145 CREATE OR REPLACE VIEW money.open_usr_summary AS
10146     SELECT 
10147         usr, 
10148         sum(total_paid) AS total_paid, 
10149         sum(total_owed) AS total_owed, 
10150         sum(balance_owed) AS balance_owed
10151     FROM money.materialized_billable_xact_summary
10152     WHERE xact_finish IS NULL
10153     GROUP BY usr;
10154
10155 -- CREATE RULE protect_mfhd_delete AS ON DELETE TO serial.record_entry DO INSTEAD UPDATE serial.record_entry SET deleted = true WHERE old.id = serial.record_entry.id;
10156
10157 CREATE TABLE config.biblio_fingerprint (
10158         id                      SERIAL  PRIMARY KEY,
10159         name            TEXT    NOT NULL, 
10160         xpath           TEXT    NOT NULL,
10161     first_word  BOOL    NOT NULL DEFAULT FALSE,
10162         format          TEXT    NOT NULL DEFAULT 'marcxml'
10163 );
10164
10165 INSERT INTO config.biblio_fingerprint (name, xpath, format)
10166     VALUES (
10167         'Title',
10168         '//marc:datafield[@tag="700"]/marc:subfield[@code="t"]|' ||
10169             '//marc:datafield[@tag="240"]/marc:subfield[@code="a"]|' ||
10170             '//marc:datafield[@tag="242"]/marc:subfield[@code="a"]|' ||
10171             '//marc:datafield[@tag="246"]/marc:subfield[@code="a"]|' ||
10172             '//marc:datafield[@tag="245"]/marc:subfield[@code="a"]',
10173         'marcxml'
10174     );
10175
10176 INSERT INTO config.biblio_fingerprint (name, xpath, format, first_word)
10177     VALUES (
10178         'Author',
10179         '//marc:datafield[@tag="700" and ./*[@code="t"]]/marc:subfield[@code="a"]|'
10180             '//marc:datafield[@tag="100"]/marc:subfield[@code="a"]|'
10181             '//marc:datafield[@tag="110"]/marc:subfield[@code="a"]|'
10182             '//marc:datafield[@tag="111"]/marc:subfield[@code="a"]|'
10183             '//marc:datafield[@tag="260"]/marc:subfield[@code="b"]',
10184         'marcxml',
10185         TRUE
10186     );
10187
10188 CREATE OR REPLACE FUNCTION biblio.extract_quality ( marc TEXT, best_lang TEXT, best_type TEXT ) RETURNS INT AS $func$
10189 DECLARE
10190     qual        INT;
10191     ldr         TEXT;
10192     tval        TEXT;
10193     tval_rec    RECORD;
10194     bval        TEXT;
10195     bval_rec    RECORD;
10196     type_map    RECORD;
10197     ff_pos      RECORD;
10198     ff_tag_data TEXT;
10199 BEGIN
10200
10201     IF marc IS NULL OR marc = '' THEN
10202         RETURN NULL;
10203     END IF;
10204
10205     -- First, the count of tags
10206     qual := ARRAY_UPPER(oils_xpath('*[local-name()="datafield"]', marc), 1);
10207
10208     -- now go through a bunch of pain to get the record type
10209     IF best_type IS NOT NULL THEN
10210         ldr := (oils_xpath('//*[local-name()="leader"]/text()', marc))[1];
10211
10212         IF ldr IS NOT NULL THEN
10213             SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10214             SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10215
10216
10217             tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length );
10218             bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length );
10219
10220             -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr;
10221
10222             SELECT * INTO type_map FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10223
10224             IF type_map.code IS NOT NULL THEN
10225                 IF best_type = type_map.code THEN
10226                     qual := qual + qual / 2;
10227                 END IF;
10228
10229                 FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = 'Lang' AND rec_type = type_map.code ORDER BY tag DESC LOOP
10230                     ff_tag_data := SUBSTRING((oils_xpath('//*[@tag="' || ff_pos.tag || '"]/text()',marc))[1], ff_pos.start_pos + 1, ff_pos.length);
10231                     IF ff_tag_data = best_lang THEN
10232                             qual := qual + 100;
10233                     END IF;
10234                 END LOOP;
10235             END IF;
10236         END IF;
10237     END IF;
10238
10239     -- Now look for some quality metrics
10240     -- DCL record?
10241     IF ARRAY_UPPER(oils_xpath('//*[@tag="040"]/*[@code="a" and contains(.,"DLC")]', marc), 1) = 1 THEN
10242         qual := qual + 10;
10243     END IF;
10244
10245     -- From OCLC?
10246     IF (oils_xpath('//*[@tag="003"]/text()', marc))[1] ~* E'oclo?c' THEN
10247         qual := qual + 10;
10248     END IF;
10249
10250     RETURN qual;
10251
10252 END;
10253 $func$ LANGUAGE PLPGSQL;
10254
10255 CREATE OR REPLACE FUNCTION biblio.extract_fingerprint ( marc text ) RETURNS TEXT AS $func$
10256 DECLARE
10257     idx     config.biblio_fingerprint%ROWTYPE;
10258     xfrm        config.xml_transform%ROWTYPE;
10259     prev_xfrm   TEXT;
10260     transformed_xml TEXT;
10261     xml_node    TEXT;
10262     xml_node_list   TEXT[];
10263     raw_text    TEXT;
10264     output_text TEXT := '';
10265 BEGIN
10266
10267     IF marc IS NULL OR marc = '' THEN
10268         RETURN NULL;
10269     END IF;
10270
10271     -- Loop over the indexing entries
10272     FOR idx IN SELECT * FROM config.biblio_fingerprint ORDER BY format, id LOOP
10273
10274         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
10275
10276         -- See if we can skip the XSLT ... it's expensive
10277         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
10278             -- Can't skip the transform
10279             IF xfrm.xslt <> '---' THEN
10280                 transformed_xml := oils_xslt_process(marc,xfrm.xslt);
10281             ELSE
10282                 transformed_xml := marc;
10283             END IF;
10284
10285             prev_xfrm := xfrm.name;
10286         END IF;
10287
10288         raw_text := COALESCE(
10289             naco_normalize(
10290                 ARRAY_TO_STRING(
10291                     oils_xpath(
10292                         '//text()',
10293                         (oils_xpath(
10294                             idx.xpath,
10295                             transformed_xml,
10296                             ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]
10297                         ))[1]
10298                     ),
10299                     ''
10300                 )
10301             ),
10302             ''
10303         );
10304
10305         raw_text := REGEXP_REPLACE(raw_text, E'\\[.+?\\]', E'');
10306         raw_text := REGEXP_REPLACE(raw_text, E'\\mthe\\M|\\man?d?d\\M', E'', 'g'); -- arg! the pain!
10307
10308         IF idx.first_word IS TRUE THEN
10309             raw_text := REGEXP_REPLACE(raw_text, E'^(\\w+).*?$', E'\\1');
10310         END IF;
10311
10312         output_text := output_text || REGEXP_REPLACE(raw_text, E'\\s+', '', 'g');
10313
10314     END LOOP;
10315
10316     RETURN output_text;
10317
10318 END;
10319 $func$ LANGUAGE PLPGSQL;
10320
10321 -- BEFORE UPDATE OR INSERT trigger for biblio.record_entry
10322 CREATE OR REPLACE FUNCTION biblio.fingerprint_trigger () RETURNS TRIGGER AS $func$
10323 BEGIN
10324
10325     -- For TG_ARGV, first param is language (like 'eng'), second is record type (like 'BKS')
10326
10327     IF NEW.deleted IS TRUE THEN -- we don't much care, then, do we?
10328         RETURN NEW;
10329     END IF;
10330
10331     NEW.fingerprint := biblio.extract_fingerprint(NEW.marc);
10332     NEW.quality := biblio.extract_quality(NEW.marc, TG_ARGV[0], TG_ARGV[1]);
10333
10334     RETURN NEW;
10335
10336 END;
10337 $func$ LANGUAGE PLPGSQL;
10338
10339 CREATE TABLE config.internal_flag (
10340     name    TEXT    PRIMARY KEY,
10341     value   TEXT,
10342     enabled BOOL    NOT NULL DEFAULT FALSE
10343 );
10344 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_insert');
10345 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.force_on_same_marc');
10346 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.skip_located_uri');
10347 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_located_uri');
10348 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_full_rec');
10349 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_rec_descriptor');
10350 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_field_entry');
10351 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_authority_linking');
10352
10353 CREATE TABLE authority.bib_linking (
10354     id          BIGSERIAL   PRIMARY KEY,
10355     bib         BIGINT      NOT NULL REFERENCES biblio.record_entry (id),
10356     authority   BIGINT      NOT NULL REFERENCES authority.record_entry (id)
10357 );
10358 CREATE INDEX authority_bl_bib_idx ON authority.bib_linking ( bib );
10359 CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON authority.bib_linking ( authority, bib );
10360
10361 CREATE OR REPLACE FUNCTION public.remove_paren_substring( TEXT ) RETURNS TEXT AS $func$
10362     SELECT regexp_replace($1, $$\([^)]+\)$$, '', 'g');
10363 $func$ LANGUAGE SQL STRICT IMMUTABLE;
10364
10365 CREATE OR REPLACE FUNCTION biblio.map_authority_linking (bibid BIGINT, marc TEXT) RETURNS BIGINT AS $func$
10366     DELETE FROM authority.bib_linking WHERE bib = $1;
10367     INSERT INTO authority.bib_linking (bib, authority)
10368         SELECT  y.bib,
10369                 y.authority
10370           FROM (    SELECT  DISTINCT $1 AS bib,
10371                             BTRIM(remove_paren_substring(txt))::BIGINT AS authority
10372                       FROM  explode_array(oils_xpath('//*[@code="0"]/text()',$2)) x(txt)
10373                       WHERE BTRIM(remove_paren_substring(txt)) ~ $re$^\d+$$re$
10374                 ) y JOIN authority.record_entry r ON r.id = y.authority;
10375     SELECT $1;
10376 $func$ LANGUAGE SQL;
10377
10378 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_rec_descriptor( bib_id BIGINT ) RETURNS VOID AS $func$
10379 BEGIN
10380     DELETE FROM metabib.rec_descriptor WHERE record = bib_id;
10381     INSERT INTO metabib.rec_descriptor (record, item_type, item_form, bib_level, control_type, enc_level, audience, lit_form, type_mat, cat_form, pub_status, item_lang, vr_format, date1, date2)
10382         SELECT  bib_id,
10383                 biblio.marc21_extract_fixed_field( bib_id, 'Type' ),
10384                 biblio.marc21_extract_fixed_field( bib_id, 'Form' ),
10385                 biblio.marc21_extract_fixed_field( bib_id, 'BLvl' ),
10386                 biblio.marc21_extract_fixed_field( bib_id, 'Ctrl' ),
10387                 biblio.marc21_extract_fixed_field( bib_id, 'ELvl' ),
10388                 biblio.marc21_extract_fixed_field( bib_id, 'Audn' ),
10389                 biblio.marc21_extract_fixed_field( bib_id, 'LitF' ),
10390                 biblio.marc21_extract_fixed_field( bib_id, 'TMat' ),
10391                 biblio.marc21_extract_fixed_field( bib_id, 'Desc' ),
10392                 biblio.marc21_extract_fixed_field( bib_id, 'DtSt' ),
10393                 biblio.marc21_extract_fixed_field( bib_id, 'Lang' ),
10394                 (   SELECT  v.value
10395                       FROM  biblio.marc21_physical_characteristics( bib_id) p
10396                             JOIN config.marc21_physical_characteristic_subfield_map s ON (s.id = p.subfield)
10397                             JOIN config.marc21_physical_characteristic_value_map v ON (v.id = p.value)
10398                       WHERE p.ptype = 'v' AND s.subfield = 'e'    ),
10399                 biblio.marc21_extract_fixed_field( bib_id, 'Date1'),
10400                 biblio.marc21_extract_fixed_field( bib_id, 'Date2');
10401
10402     RETURN;
10403 END;
10404 $func$ LANGUAGE PLPGSQL;
10405
10406 CREATE TABLE config.metabib_class (
10407     name    TEXT    PRIMARY KEY,
10408     label   TEXT    NOT NULL UNIQUE
10409 );
10410
10411 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
10412 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') );
10413 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') );
10414 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
10415 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
10416
10417 CREATE TABLE metabib.facet_entry (
10418         id              BIGSERIAL       PRIMARY KEY,
10419         source          BIGINT          NOT NULL,
10420         field           INT             NOT NULL,
10421         value           TEXT            NOT NULL
10422 );
10423
10424 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_field_entries( bib_id BIGINT ) RETURNS VOID AS $func$
10425 DECLARE
10426     fclass          RECORD;
10427     ind_data        metabib.field_entry_template%ROWTYPE;
10428 BEGIN
10429     FOR fclass IN SELECT * FROM config.metabib_class LOOP
10430         -- RAISE NOTICE 'Emptying out %', fclass.name;
10431         EXECUTE $$DELETE FROM metabib.$$ || fclass.name || $$_field_entry WHERE source = $$ || bib_id;
10432     END LOOP;
10433
10434     DELETE FROM metabib.facet_entry WHERE source = bib_id;
10435
10436     FOR ind_data IN SELECT * FROM biblio.extract_metabib_field_entry( bib_id ) LOOP
10437         IF ind_data.field < 0 THEN
10438             ind_data.field = -1 * ind_data.field;
10439             INSERT INTO metabib.facet_entry (field, source, value)
10440                 VALUES (ind_data.field, ind_data.source, ind_data.value);
10441         ELSE
10442             EXECUTE $$
10443                 INSERT INTO metabib.$$ || ind_data.field_class || $$_field_entry (field, source, value)
10444                     VALUES ($$ ||
10445                         quote_literal(ind_data.field) || $$, $$ ||
10446                         quote_literal(ind_data.source) || $$, $$ ||
10447                         quote_literal(ind_data.value) ||
10448                     $$);$$;
10449         END IF;
10450
10451     END LOOP;
10452
10453     RETURN;
10454 END;
10455 $func$ LANGUAGE PLPGSQL;
10456
10457 CREATE OR REPLACE FUNCTION biblio.extract_located_uris( bib_id BIGINT, marcxml TEXT, editor_id INT ) RETURNS VOID AS $func$
10458 DECLARE
10459     uris            TEXT[];
10460     uri_xml         TEXT;
10461     uri_label       TEXT;
10462     uri_href        TEXT;
10463     uri_use         TEXT;
10464     uri_owner       TEXT;
10465     uri_owner_id    INT;
10466     uri_id          INT;
10467     uri_cn_id       INT;
10468     uri_map_id      INT;
10469 BEGIN
10470
10471     uris := oils_xpath('//*[@tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]',marcxml);
10472     IF ARRAY_UPPER(uris,1) > 0 THEN
10473         FOR i IN 1 .. ARRAY_UPPER(uris, 1) LOOP
10474             -- First we pull info out of the 856
10475             uri_xml     := uris[i];
10476
10477             uri_href    := (oils_xpath('//*[@code="u"]/text()',uri_xml))[1];
10478             CONTINUE WHEN uri_href IS NULL;
10479
10480             uri_label   := (oils_xpath('//*[@code="y"]/text()|//*[@code="3"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10481             CONTINUE WHEN uri_label IS NULL;
10482
10483             uri_owner   := (oils_xpath('//*[@code="9"]/text()|//*[@code="w"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10484             CONTINUE WHEN uri_owner IS NULL;
10485
10486             uri_use     := (oils_xpath('//*[@code="z"]/text()|//*[@code="2"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10487
10488             uri_owner := REGEXP_REPLACE(uri_owner, $re$^.*?\((\w+)\).*$$re$, E'\\1');
10489
10490             SELECT id INTO uri_owner_id FROM actor.org_unit WHERE shortname = uri_owner;
10491             CONTINUE WHEN NOT FOUND;
10492
10493             -- now we look for a matching uri
10494             SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10495             IF NOT FOUND THEN -- create one
10496                 INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use);
10497                 SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10498             END IF;
10499
10500             -- we need a call number to link through
10501             SELECT id INTO uri_cn_id FROM asset.call_number WHERE owning_lib = uri_owner_id AND record = bib_id AND label = '##URI##' AND NOT deleted;
10502             IF NOT FOUND THEN
10503                 INSERT INTO asset.call_number (owning_lib, record, create_date, edit_date, creator, editor, label)
10504                     VALUES (uri_owner_id, bib_id, 'now', 'now', editor_id, editor_id, '##URI##');
10505                 SELECT id INTO uri_cn_id FROM asset.call_number WHERE owning_lib = uri_owner_id AND record = bib_id AND label = '##URI##' AND NOT deleted;
10506             END IF;
10507
10508             -- now, link them if they're not already
10509             SELECT id INTO uri_map_id FROM asset.uri_call_number_map WHERE call_number = uri_cn_id AND uri = uri_id;
10510             IF NOT FOUND THEN
10511                 INSERT INTO asset.uri_call_number_map (call_number, uri) VALUES (uri_cn_id, uri_id);
10512             END IF;
10513
10514         END LOOP;
10515     END IF;
10516
10517     RETURN;
10518 END;
10519 $func$ LANGUAGE PLPGSQL;
10520
10521 CREATE OR REPLACE FUNCTION metabib.remap_metarecord_for_bib( bib_id BIGINT, fp TEXT ) RETURNS BIGINT AS $func$
10522 DECLARE
10523     source_count    INT;
10524     old_mr          BIGINT;
10525     tmp_mr          metabib.metarecord%ROWTYPE;
10526     deleted_mrs     BIGINT[];
10527 BEGIN
10528
10529     DELETE FROM metabib.metarecord_source_map WHERE source = bib_id; -- Rid ourselves of the search-estimate-killing linkage
10530
10531     FOR tmp_mr IN SELECT  m.* FROM  metabib.metarecord m JOIN metabib.metarecord_source_map s ON (s.metarecord = m.id) WHERE s.source = bib_id LOOP
10532
10533         IF old_mr IS NULL AND fp = tmp_mr.fingerprint THEN -- Find the first fingerprint-matching
10534             old_mr := tmp_mr.id;
10535         ELSE
10536             SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = tmp_mr.id;
10537             IF source_count = 0 THEN -- No other records
10538                 deleted_mrs := ARRAY_APPEND(deleted_mrs, tmp_mr.id);
10539                 DELETE FROM metabib.metarecord WHERE id = tmp_mr.id;
10540             END IF;
10541         END IF;
10542
10543     END LOOP;
10544
10545     IF old_mr IS NULL THEN -- we found no suitable, preexisting MR based on old source maps
10546         SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; -- is there one for our current fingerprint?
10547         IF old_mr IS NULL THEN -- nope, create one and grab its id
10548             INSERT INTO metabib.metarecord ( fingerprint, master_record ) VALUES ( fp, bib_id );
10549             SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp;
10550         ELSE -- indeed there is. update it with a null cache and recalcualated master record
10551             UPDATE  metabib.metarecord
10552               SET   mods = NULL,
10553                     master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
10554               WHERE id = old_mr;
10555         END IF;
10556     ELSE -- there was one we already attached to, update its mods cache and master_record
10557         UPDATE  metabib.metarecord
10558           SET   mods = NULL,
10559                 master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
10560           WHERE id = old_mr;
10561     END IF;
10562
10563     INSERT INTO metabib.metarecord_source_map (metarecord, source) VALUES (old_mr, bib_id); -- new source mapping
10564
10565     IF ARRAY_UPPER(deleted_mrs,1) > 0 THEN
10566         UPDATE action.hold_request SET target = old_mr WHERE target IN ( SELECT explode_array(deleted_mrs) ) AND hold_type = 'M'; -- if we had to delete any MRs above, make sure their holds are moved
10567     END IF;
10568
10569     RETURN old_mr;
10570
10571 END;
10572 $func$ LANGUAGE PLPGSQL;
10573
10574 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_full_rec( bib_id BIGINT ) RETURNS VOID AS $func$
10575 BEGIN
10576     DELETE FROM metabib.real_full_rec WHERE record = bib_id;
10577     INSERT INTO metabib.real_full_rec (record, tag, ind1, ind2, subfield, value)
10578         SELECT record, tag, ind1, ind2, subfield, value FROM biblio.flatten_marc( bib_id );
10579
10580     RETURN;
10581 END;
10582 $func$ LANGUAGE PLPGSQL;
10583
10584 -- AFTER UPDATE OR INSERT trigger for biblio.record_entry
10585 CREATE OR REPLACE FUNCTION biblio.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
10586 BEGIN
10587
10588     IF NEW.deleted IS TRUE THEN -- If this bib is deleted
10589         DELETE FROM metabib.metarecord_source_map WHERE source = NEW.id; -- Rid ourselves of the search-estimate-killing linkage
10590         DELETE FROM authority.bib_linking WHERE bib = NEW.id; -- Avoid updating fields in bibs that are no longer visible
10591         RETURN NEW; -- and we're done
10592     END IF;
10593
10594     IF TG_OP = 'UPDATE' THEN -- re-ingest?
10595         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
10596
10597         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
10598             RETURN NEW;
10599         END IF;
10600     END IF;
10601
10602     -- Record authority linking
10603     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled;
10604     IF NOT FOUND THEN
10605         PERFORM biblio.map_authority_linking( NEW.id, NEW.marc );
10606     END IF;
10607
10608     -- Flatten and insert the mfr data
10609     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled;
10610     IF NOT FOUND THEN
10611         PERFORM metabib.reingest_metabib_full_rec(NEW.id);
10612         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled;
10613         IF NOT FOUND THEN
10614             PERFORM metabib.reingest_metabib_rec_descriptor(NEW.id);
10615         END IF;
10616     END IF;
10617
10618     -- Gather and insert the field entry data
10619     PERFORM metabib.reingest_metabib_field_entries(NEW.id);
10620
10621     -- Located URI magic
10622     IF TG_OP = 'INSERT' THEN
10623         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
10624         IF NOT FOUND THEN
10625             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
10626         END IF;
10627     ELSE
10628         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
10629         IF NOT FOUND THEN
10630             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
10631         END IF;
10632     END IF;
10633
10634     -- (re)map metarecord-bib linking
10635     IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag
10636         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled;
10637         IF NOT FOUND THEN
10638             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
10639         END IF;
10640     ELSE -- we're doing an update, and we're not deleted, remap
10641         PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
10642     END IF;
10643
10644     RETURN NEW;
10645 END;
10646 $func$ LANGUAGE PLPGSQL;
10647
10648 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
10649 CREATE TRIGGER aaa_indexing_ingest_or_delete AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.indexing_ingest_or_delete ();
10650
10651 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_rec_delete_tgr ON biblio.record_entry;
10652
10653 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT )
10654 RETURNS SETOF RECORD AS $func$
10655 DECLARE
10656     xpath_list  TEXT[];
10657     select_list TEXT[];
10658     where_list  TEXT[];
10659     q           TEXT;
10660     out_record  RECORD;
10661     empty_test  RECORD;
10662 BEGIN
10663     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
10664
10665     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
10666
10667     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
10668         select_list := ARRAY_APPEND(
10669             select_list,
10670             $sel$
10671             EXPLODE_ARRAY(
10672                 COALESCE(
10673                     NULLIF(
10674                         oils_xpath(
10675                             $sel$ ||
10676                                 quote_literal(
10677                                     CASE
10678                                         WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
10679                                         ELSE xpath_list[i] || '//text()'
10680                                     END
10681                                 ) ||
10682                             $sel$,
10683                             $sel$ || document_field || $sel$
10684                         ),
10685                        '{}'::TEXT[]
10686                     ),
10687                     '{NULL}'::TEXT[]
10688                 )
10689             ) AS c_$sel$ || i
10690         );
10691         where_list := ARRAY_APPEND(
10692             where_list,
10693             'c_' || i || ' IS NOT NULL'
10694         );
10695     END LOOP;
10696
10697     q := $q$
10698 SELECT * FROM (
10699     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
10700 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' AND ' );
10701     -- RAISE NOTICE 'query: %', q;
10702
10703     FOR out_record IN EXECUTE q LOOP
10704         RETURN NEXT out_record;
10705     END LOOP;
10706
10707     RETURN;
10708 END;
10709 $func$ LANGUAGE PLPGSQL;
10710
10711 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
10712 DECLARE
10713
10714     owning_lib      TEXT;
10715     circ_lib        TEXT;
10716     call_number     TEXT;
10717     copy_number     TEXT;
10718     status          TEXT;
10719     location        TEXT;
10720     circulate       TEXT;
10721     deposit         TEXT;
10722     deposit_amount  TEXT;
10723     ref             TEXT;
10724     holdable        TEXT;
10725     price           TEXT;
10726     barcode         TEXT;
10727     circ_modifier   TEXT;
10728     circ_as_type    TEXT;
10729     alert_message   TEXT;
10730     opac_visible    TEXT;
10731     pub_note        TEXT;
10732     priv_note       TEXT;
10733
10734     attr_def        RECORD;
10735     tmp_attr_set    RECORD;
10736     attr_set        vandelay.import_item%ROWTYPE;
10737
10738     xpath           TEXT;
10739
10740 BEGIN
10741
10742     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
10743
10744     IF FOUND THEN
10745
10746         attr_set.definition := attr_def.id; 
10747     
10748         -- Build the combined XPath
10749     
10750         owning_lib :=
10751             CASE
10752                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
10753                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
10754                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
10755             END;
10756     
10757         circ_lib :=
10758             CASE
10759                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
10760                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
10761                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
10762             END;
10763     
10764         call_number :=
10765             CASE
10766                 WHEN attr_def.call_number IS NULL THEN 'null()'
10767                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
10768                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
10769             END;
10770     
10771         copy_number :=
10772             CASE
10773                 WHEN attr_def.copy_number IS NULL THEN 'null()'
10774                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
10775                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
10776             END;
10777     
10778         status :=
10779             CASE
10780                 WHEN attr_def.status IS NULL THEN 'null()'
10781                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
10782                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
10783             END;
10784     
10785         location :=
10786             CASE
10787                 WHEN attr_def.location IS NULL THEN 'null()'
10788                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
10789                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
10790             END;
10791     
10792         circulate :=
10793             CASE
10794                 WHEN attr_def.circulate IS NULL THEN 'null()'
10795                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
10796                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
10797             END;
10798     
10799         deposit :=
10800             CASE
10801                 WHEN attr_def.deposit IS NULL THEN 'null()'
10802                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
10803                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
10804             END;
10805     
10806         deposit_amount :=
10807             CASE
10808                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
10809                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
10810                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
10811             END;
10812     
10813         ref :=
10814             CASE
10815                 WHEN attr_def.ref IS NULL THEN 'null()'
10816                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
10817                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
10818             END;
10819     
10820         holdable :=
10821             CASE
10822                 WHEN attr_def.holdable IS NULL THEN 'null()'
10823                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
10824                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
10825             END;
10826     
10827         price :=
10828             CASE
10829                 WHEN attr_def.price IS NULL THEN 'null()'
10830                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
10831                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
10832             END;
10833     
10834         barcode :=
10835             CASE
10836                 WHEN attr_def.barcode IS NULL THEN 'null()'
10837                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
10838                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
10839             END;
10840     
10841         circ_modifier :=
10842             CASE
10843                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
10844                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
10845                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
10846             END;
10847     
10848         circ_as_type :=
10849             CASE
10850                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
10851                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
10852                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
10853             END;
10854     
10855         alert_message :=
10856             CASE
10857                 WHEN attr_def.alert_message IS NULL THEN 'null()'
10858                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
10859                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
10860             END;
10861     
10862         opac_visible :=
10863             CASE
10864                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
10865                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
10866                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
10867             END;
10868
10869         pub_note :=
10870             CASE
10871                 WHEN attr_def.pub_note IS NULL THEN 'null()'
10872                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
10873                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
10874             END;
10875         priv_note :=
10876             CASE
10877                 WHEN attr_def.priv_note IS NULL THEN 'null()'
10878                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
10879                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
10880             END;
10881     
10882     
10883         xpath := 
10884             owning_lib      || '|' || 
10885             circ_lib        || '|' || 
10886             call_number     || '|' || 
10887             copy_number     || '|' || 
10888             status          || '|' || 
10889             location        || '|' || 
10890             circulate       || '|' || 
10891             deposit         || '|' || 
10892             deposit_amount  || '|' || 
10893             ref             || '|' || 
10894             holdable        || '|' || 
10895             price           || '|' || 
10896             barcode         || '|' || 
10897             circ_modifier   || '|' || 
10898             circ_as_type    || '|' || 
10899             alert_message   || '|' || 
10900             pub_note        || '|' || 
10901             priv_note       || '|' || 
10902             opac_visible;
10903
10904         -- RAISE NOTICE 'XPath: %', xpath;
10905         
10906         FOR tmp_attr_set IN
10907                 SELECT  *
10908                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
10909                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
10910                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
10911                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
10912         LOOP
10913     
10914             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
10915             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
10916
10917             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
10918             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
10919     
10920             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
10921             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
10922             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
10923     
10924             SELECT  id INTO attr_set.location
10925               FROM  asset.copy_location
10926               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
10927                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
10928     
10929             attr_set.circulate      :=
10930                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
10931                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
10932
10933             attr_set.deposit        :=
10934                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
10935                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
10936
10937             attr_set.holdable       :=
10938                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
10939                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
10940
10941             attr_set.opac_visible   :=
10942                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
10943                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
10944
10945             attr_set.ref            :=
10946                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
10947                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
10948     
10949             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
10950             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
10951             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
10952     
10953             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
10954             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
10955             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
10956             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
10957             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
10958             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
10959             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
10960             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
10961     
10962             RETURN NEXT attr_set;
10963     
10964         END LOOP;
10965     
10966     END IF;
10967
10968     RETURN;
10969
10970 END;
10971 $$ LANGUAGE PLPGSQL;
10972
10973 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
10974 DECLARE
10975     attr_def    BIGINT;
10976     item_data   vandelay.import_item%ROWTYPE;
10977 BEGIN
10978
10979     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
10980
10981     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
10982         INSERT INTO vandelay.import_item (
10983             record,
10984             definition,
10985             owning_lib,
10986             circ_lib,
10987             call_number,
10988             copy_number,
10989             status,
10990             location,
10991             circulate,
10992             deposit,
10993             deposit_amount,
10994             ref,
10995             holdable,
10996             price,
10997             barcode,
10998             circ_modifier,
10999             circ_as_type,
11000             alert_message,
11001             pub_note,
11002             priv_note,
11003             opac_visible
11004         ) VALUES (
11005             NEW.id,
11006             item_data.definition,
11007             item_data.owning_lib,
11008             item_data.circ_lib,
11009             item_data.call_number,
11010             item_data.copy_number,
11011             item_data.status,
11012             item_data.location,
11013             item_data.circulate,
11014             item_data.deposit,
11015             item_data.deposit_amount,
11016             item_data.ref,
11017             item_data.holdable,
11018             item_data.price,
11019             item_data.barcode,
11020             item_data.circ_modifier,
11021             item_data.circ_as_type,
11022             item_data.alert_message,
11023             item_data.pub_note,
11024             item_data.priv_note,
11025             item_data.opac_visible
11026         );
11027     END LOOP;
11028
11029     RETURN NULL;
11030 END;
11031 $func$ LANGUAGE PLPGSQL;
11032
11033 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11034 BEGIN
11035     EXECUTE $$
11036         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
11037     $$;
11038         RETURN TRUE;
11039 END;
11040 $creator$ LANGUAGE 'plpgsql';
11041
11042 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11043 BEGIN
11044     EXECUTE $$
11045         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
11046             audit_id    BIGINT                          PRIMARY KEY,
11047             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
11048             audit_action        TEXT                            NOT NULL,
11049             LIKE $$ || sch || $$.$$ || tbl || $$
11050         );
11051     $$;
11052         RETURN TRUE;
11053 END;
11054 $creator$ LANGUAGE 'plpgsql';
11055
11056 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11057 BEGIN
11058     EXECUTE $$
11059         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11060         RETURNS TRIGGER AS $func$
11061         BEGIN
11062             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11063                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11064                     now(),
11065                     SUBSTR(TG_OP,1,1),
11066                     OLD.*;
11067             RETURN NULL;
11068         END;
11069         $func$ LANGUAGE 'plpgsql';
11070     $$;
11071         RETURN TRUE;
11072 END;
11073 $creator$ LANGUAGE 'plpgsql';
11074
11075 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11076 BEGIN
11077     EXECUTE $$
11078         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11079             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11080             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11081     $$;
11082         RETURN TRUE;
11083 END;
11084 $creator$ LANGUAGE 'plpgsql';
11085
11086 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11087 BEGIN
11088     EXECUTE $$
11089         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11090             SELECT      -1, now() as audit_time, '-' as audit_action, *
11091               FROM      $$ || sch || $$.$$ || tbl || $$
11092                 UNION ALL
11093             SELECT      *
11094               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11095     $$;
11096         RETURN TRUE;
11097 END;
11098 $creator$ LANGUAGE 'plpgsql';
11099
11100 -- The main event
11101
11102 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11103 BEGIN
11104     PERFORM acq.create_acq_seq(sch, tbl);
11105     PERFORM acq.create_acq_history(sch, tbl);
11106     PERFORM acq.create_acq_func(sch, tbl);
11107     PERFORM acq.create_acq_update_trigger(sch, tbl);
11108     PERFORM acq.create_acq_lifecycle(sch, tbl);
11109     RETURN TRUE;
11110 END;
11111 $creator$ LANGUAGE 'plpgsql';
11112
11113 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
11114 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
11115
11116 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
11117 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
11118
11119 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11120     SELECT  fund.id AS fund,
11121             fund_debit.encumbrance AS encumbrance,
11122             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11123       FROM acq.fund AS fund
11124                         LEFT JOIN acq.fund_debit AS fund_debit
11125                                 ON ( fund.id = fund_debit.fund )
11126       GROUP BY 1,2;
11127
11128 CREATE TABLE acq.debit_attribution (
11129         id                     INT         NOT NULL PRIMARY KEY,
11130         fund_debit             INT         NOT NULL
11131                                            REFERENCES acq.fund_debit
11132                                            DEFERRABLE INITIALLY DEFERRED,
11133     debit_amount           NUMERIC     NOT NULL,
11134         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11135                                            DEFERRABLE INITIALLY DEFERRED,
11136     credit_amount          NUMERIC
11137 );
11138
11139 CREATE INDEX acq_attribution_debit_idx
11140         ON acq.debit_attribution( fund_debit );
11141
11142 CREATE INDEX acq_attribution_credit_idx
11143         ON acq.debit_attribution( funding_source_credit );
11144
11145 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11146 /*
11147 Function to attribute expenditures and encumbrances to funding source credits,
11148 and thereby to funding sources.
11149
11150 Read the debits in chonological order, attributing each one to one or
11151 more funding source credits.  Constraints:
11152
11153 1. Don't attribute more to a credit than the amount of the credit.
11154
11155 2. For a given fund, don't attribute more to a funding source than the
11156 source has allocated to that fund.
11157
11158 3. Attribute debits to credits with deadlines before attributing them to
11159 credits without deadlines.  Otherwise attribute to the earliest credits
11160 first, based on the deadline date when present, or on the effective date
11161 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11162 This ordering is defined by an ORDER BY clause on the view
11163 acq.ordered_funding_source_credit.
11164
11165 Start by truncating the table acq.debit_attribution.  Then insert a row
11166 into that table for each attribution.  If a debit cannot be fully
11167 attributed, insert a row for the unattributable balance, with the 
11168 funding_source_credit and credit_amount columns NULL.
11169 */
11170 DECLARE
11171         curr_fund_source_bal RECORD;
11172         seqno                INT;     -- sequence num for credits applicable to a fund
11173         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11174         fc                   RECORD;  -- used for loading t_fund_credit table
11175         sc                   RECORD;  -- used for loading t_fund_credit table
11176         --
11177         -- Used exclusively in the main loop:
11178         --
11179         deb                 RECORD;   -- current row from acq.fund_debit table
11180         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11181         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11182         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11183         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11184         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11185         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11186         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11187         attrib_count        INT;      -- populates id of acq.debit_attribution
11188 BEGIN
11189         --
11190         -- Load a temporary table.  For each combination of fund and funding source,
11191         -- load an entry with the total amount allocated to that fund by that source.
11192         -- This sum may reflect transfers as well as original allocations.  We will
11193         -- reduce this balance whenever we attribute debits to it.
11194         --
11195         CREATE TEMP TABLE t_fund_source_bal
11196         ON COMMIT DROP AS
11197                 SELECT
11198                         fund AS fund,
11199                         funding_source AS source,
11200                         sum( amount ) AS balance
11201                 FROM
11202                         acq.fund_allocation
11203                 GROUP BY
11204                         fund,
11205                         funding_source
11206                 HAVING
11207                         sum( amount ) > 0;
11208         --
11209         CREATE INDEX t_fund_source_bal_idx
11210                 ON t_fund_source_bal( fund, source );
11211         -------------------------------------------------------------------------------
11212         --
11213         -- Load another temporary table.  For each fund, load zero or more
11214         -- funding source credits from which that fund can get money.
11215         --
11216         CREATE TEMP TABLE t_fund_credit (
11217                 fund        INT,
11218                 seq         INT,
11219                 credit      INT
11220         ) ON COMMIT DROP;
11221         --
11222         FOR fc IN
11223                 SELECT DISTINCT fund
11224                 FROM acq.fund_allocation
11225                 ORDER BY fund
11226         LOOP                  -- Loop over the funds
11227                 seqno := 1;
11228                 FOR sc IN
11229                         SELECT
11230                                 ofsc.id
11231                         FROM
11232                                 acq.ordered_funding_source_credit AS ofsc
11233                         WHERE
11234                                 ofsc.funding_source IN
11235                                 (
11236                                         SELECT funding_source
11237                                         FROM acq.fund_allocation
11238                                         WHERE fund = fc.fund
11239                                 )
11240                 ORDER BY
11241                     ofsc.sort_priority,
11242                     ofsc.sort_date,
11243                     ofsc.id
11244                 LOOP                        -- Add each credit to the list
11245                         INSERT INTO t_fund_credit (
11246                                 fund,
11247                                 seq,
11248                                 credit
11249                         ) VALUES (
11250                                 fc.fund,
11251                                 seqno,
11252                                 sc.id
11253                         );
11254                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11255                         seqno := seqno + 1;
11256                 END LOOP;     -- Loop over credits for a given fund
11257         END LOOP;         -- Loop over funds
11258         --
11259         CREATE INDEX t_fund_credit_idx
11260                 ON t_fund_credit( fund, seq );
11261         -------------------------------------------------------------------------------
11262         --
11263         -- Load yet another temporary table.  This one is a list of funding source
11264         -- credits, with their balances.  We shall reduce those balances as we
11265         -- attribute debits to them.
11266         --
11267         CREATE TEMP TABLE t_credit
11268         ON COMMIT DROP AS
11269         SELECT
11270             fsc.id AS credit,
11271             fsc.funding_source AS source,
11272             fsc.amount AS balance,
11273             fs.currency_type AS currency_type
11274         FROM
11275             acq.funding_source_credit AS fsc,
11276             acq.funding_source fs
11277         WHERE
11278             fsc.funding_source = fs.id
11279                         AND fsc.amount > 0;
11280         --
11281         CREATE INDEX t_credit_idx
11282                 ON t_credit( credit );
11283         --
11284         -------------------------------------------------------------------------------
11285         --
11286         -- Now that we have loaded the lookup tables: loop through the debits,
11287         -- attributing each one to one or more funding source credits.
11288         -- 
11289         truncate table acq.debit_attribution;
11290         --
11291         attrib_count := 0;
11292         FOR deb in
11293                 SELECT
11294                         fd.id,
11295                         fd.fund,
11296                         fd.amount,
11297                         f.currency_type,
11298                         fd.encumbrance
11299                 FROM
11300                         acq.fund_debit fd,
11301                         acq.fund f
11302                 WHERE
11303                         fd.fund = f.id
11304                 ORDER BY
11305                         fd.id
11306         LOOP
11307                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11308                 --
11309                 debit_balance := deb.amount;
11310                 --
11311                 -- Loop over the funding source credits that are eligible
11312                 -- to pay for this debit
11313                 --
11314                 FOR fund_credit IN
11315                         SELECT
11316                                 credit
11317                         FROM
11318                                 t_fund_credit
11319                         WHERE
11320                                 fund = deb.fund
11321                         ORDER BY
11322                                 seq
11323                 LOOP
11324                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11325                         --
11326                         -- Look up the balance for this credit.  If it's zero, then
11327                         -- it's not useful, so treat it as if you didn't find it.
11328                         -- (Actually there shouldn't be any zero balances in the table,
11329                         -- but we check just to make sure.)
11330                         --
11331                         SELECT *
11332                         INTO curr_credit_bal
11333                         FROM t_credit
11334                         WHERE
11335                                 credit = fund_credit.credit
11336                                 AND balance > 0;
11337                         --
11338                         IF curr_credit_bal IS NULL THEN
11339                                 --
11340                                 -- This credit is exhausted; try the next one.
11341                                 --
11342                                 CONTINUE;
11343                         END IF;
11344                         --
11345                         --
11346                         -- At this point we have an applicable credit with some money left.
11347                         -- Now see if the relevant funding_source has any money left.
11348                         --
11349                         -- Look up the balance of the allocation for this combination of
11350                         -- fund and source.  If you find such an entry, but it has a zero
11351                         -- balance, then it's not useful, so treat it as unfound.
11352                         -- (Actually there shouldn't be any zero balances in the table,
11353                         -- but we check just to make sure.)
11354                         --
11355                         SELECT *
11356                         INTO curr_fund_source_bal
11357                         FROM t_fund_source_bal
11358                         WHERE
11359                                 fund = deb.fund
11360                                 AND source = curr_credit_bal.source
11361                                 AND balance > 0;
11362                         --
11363                         IF curr_fund_source_bal IS NULL THEN
11364                                 --
11365                                 -- This fund/source doesn't exist or is already exhausted,
11366                                 -- so we can't use this credit.  Go on to the next one.
11367                                 --
11368                                 CONTINUE;
11369                         END IF;
11370                         --
11371                         -- Convert the available balances to the currency of the fund
11372                         --
11373                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11374                                 curr_credit_bal.currency_type, deb.currency_type );
11375                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11376                                 curr_credit_bal.currency_type, deb.currency_type );
11377                         --
11378                         -- Determine how much we can attribute to this credit: the minimum
11379                         -- of the debit amount, the fund/source balance, and the
11380                         -- credit balance
11381                         --
11382                         --RAISE NOTICE '   deb bal %', debit_balance;
11383                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11384                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11385                         --
11386                         conv_attr_amount := NULL;
11387                         attr_amount := debit_balance;
11388                         --
11389                         IF attr_amount > conv_alloc_balance THEN
11390                                 attr_amount := conv_alloc_balance;
11391                                 conv_attr_amount := curr_fund_source_bal.balance;
11392                         END IF;
11393                         IF attr_amount > conv_cred_balance THEN
11394                                 attr_amount := conv_cred_balance;
11395                                 conv_attr_amount := curr_credit_bal.balance;
11396                         END IF;
11397                         --
11398                         -- If we're attributing all of one of the balances, then that's how
11399                         -- much we will deduct from the balances, and we already captured
11400                         -- that amount above.  Otherwise we must convert the amount of the
11401                         -- attribution from the currency of the fund back to the currency of
11402                         -- the funding source.
11403                         --
11404                         IF conv_attr_amount IS NULL THEN
11405                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11406                                         deb.currency_type, curr_credit_bal.currency_type );
11407                         END IF;
11408                         --
11409                         -- Insert a row to record the attribution
11410                         --
11411                         attrib_count := attrib_count + 1;
11412                         INSERT INTO acq.debit_attribution (
11413                                 id,
11414                                 fund_debit,
11415                                 debit_amount,
11416                                 funding_source_credit,
11417                                 credit_amount
11418                         ) VALUES (
11419                                 attrib_count,
11420                                 deb.id,
11421                                 attr_amount,
11422                                 curr_credit_bal.credit,
11423                                 conv_attr_amount
11424                         );
11425                         --
11426                         -- Subtract the attributed amount from the various balances
11427                         --
11428                         debit_balance := debit_balance - attr_amount;
11429                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11430                         --
11431                         IF curr_fund_source_bal.balance <= 0 THEN
11432                                 --
11433                                 -- This allocation is exhausted.  Delete it so
11434                                 -- that we don't waste time looking at it again.
11435                                 --
11436                                 DELETE FROM t_fund_source_bal
11437                                 WHERE
11438                                         fund = curr_fund_source_bal.fund
11439                                         AND source = curr_fund_source_bal.source;
11440                         ELSE
11441                                 UPDATE t_fund_source_bal
11442                                 SET balance = balance - conv_attr_amount
11443                                 WHERE
11444                                         fund = curr_fund_source_bal.fund
11445                                         AND source = curr_fund_source_bal.source;
11446                         END IF;
11447                         --
11448                         IF curr_credit_bal.balance <= 0 THEN
11449                                 --
11450                                 -- This funding source credit is exhausted.  Delete it
11451                                 -- so that we don't waste time looking at it again.
11452                                 --
11453                                 --DELETE FROM t_credit
11454                                 --WHERE
11455                                 --      credit = curr_credit_bal.credit;
11456                                 --
11457                                 DELETE FROM t_fund_credit
11458                                 WHERE
11459                                         credit = curr_credit_bal.credit;
11460                         ELSE
11461                                 UPDATE t_credit
11462                                 SET balance = curr_credit_bal.balance
11463                                 WHERE
11464                                         credit = curr_credit_bal.credit;
11465                         END IF;
11466                         --
11467                         -- Are we done with this debit yet?
11468                         --
11469                         IF debit_balance <= 0 THEN
11470                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11471                         END IF;
11472                 END LOOP;       -- End loop over credits
11473                 --
11474                 IF debit_balance <> 0 THEN
11475                         --
11476                         -- We weren't able to attribute this debit, or at least not
11477                         -- all of it.  Insert a row for the unattributed balance.
11478                         --
11479                         attrib_count := attrib_count + 1;
11480                         INSERT INTO acq.debit_attribution (
11481                                 id,
11482                                 fund_debit,
11483                                 debit_amount,
11484                                 funding_source_credit,
11485                                 credit_amount
11486                         ) VALUES (
11487                                 attrib_count,
11488                                 deb.id,
11489                                 debit_balance,
11490                                 NULL,
11491                                 NULL
11492                         );
11493                 END IF;
11494         END LOOP;   -- End of loop over debits
11495 END;
11496 $$ LANGUAGE 'plpgsql';
11497
11498 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11499 DECLARE
11500     query TEXT;
11501     output TEXT;
11502 BEGIN
11503     query := $q$
11504         SELECT  regexp_replace(
11505                     oils_xpath_string(
11506                         $q$ || quote_literal($3) || $q$,
11507                         marc,
11508                         ' '
11509                     ),
11510                     $q$ || quote_literal($4) || $q$,
11511                     '',
11512                     'g')
11513           FROM  $q$ || $1 || $q$
11514           WHERE id = $q$ || $2;
11515
11516     EXECUTE query INTO output;
11517
11518     -- RAISE NOTICE 'query: %, output; %', query, output;
11519
11520     RETURN output;
11521 END;
11522 $$ LANGUAGE PLPGSQL IMMUTABLE;
11523
11524 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
11525     SELECT extract_marc_field($1,$2,$3,'');
11526 $$ LANGUAGE SQL IMMUTABLE;
11527
11528 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
11529 DECLARE
11530     moved_objects INT := 0;
11531     source_cn     asset.call_number%ROWTYPE;
11532     target_cn     asset.call_number%ROWTYPE;
11533     metarec       metabib.metarecord%ROWTYPE;
11534     hold          action.hold_request%ROWTYPE;
11535     ser_rec       serial.record_entry%ROWTYPE;
11536     uri_count     INT := 0;
11537     counter       INT := 0;
11538     uri_datafield TEXT;
11539     uri_text      TEXT := '';
11540 BEGIN
11541
11542     -- move any 856 entries on records that have at least one MARC-mapped URI entry
11543     SELECT  INTO uri_count COUNT(*)
11544       FROM  asset.uri_call_number_map m
11545             JOIN asset.call_number cn ON (m.call_number = cn.id)
11546       WHERE cn.record = source_record;
11547
11548     IF uri_count > 0 THEN
11549
11550         SELECT  COUNT(*) INTO counter
11551           FROM  oils_xpath_table(
11552                     'id',
11553                     'marc',
11554                     'biblio.record_entry',
11555                     '//*[@tag="856"]',
11556                     'id=' || source_record
11557                 ) as t(i int,c text);
11558
11559         FOR i IN 1 .. counter LOOP
11560             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
11561                         ' tag="856"' || 
11562                         ' ind1="' || FIRST(ind1) || '"'  || 
11563                         ' ind2="' || FIRST(ind2) || '">' || 
11564                         array_to_string(
11565                             array_accum(
11566                                 '<subfield code="' || subfield || '">' ||
11567                                 regexp_replace(
11568                                     regexp_replace(
11569                                         regexp_replace(data,'&','&amp;','g'),
11570                                         '>', '&gt;', 'g'
11571                                     ),
11572                                     '<', '&lt;', 'g'
11573                                 ) || '</subfield>'
11574                             ), ''
11575                         ) || '</datafield>' INTO uri_datafield
11576               FROM  oils_xpath_table(
11577                         'id',
11578                         'marc',
11579                         'biblio.record_entry',
11580                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
11581                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
11582                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
11583                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
11584                         'id=' || source_record
11585                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
11586
11587             uri_text := uri_text || uri_datafield;
11588         END LOOP;
11589
11590         IF uri_text <> '' THEN
11591             UPDATE  biblio.record_entry
11592               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
11593               WHERE id = target_record;
11594         END IF;
11595
11596     END IF;
11597
11598     -- Find and move metarecords to the target record
11599     SELECT  INTO metarec *
11600       FROM  metabib.metarecord
11601       WHERE master_record = source_record;
11602
11603     IF FOUND THEN
11604         UPDATE  metabib.metarecord
11605           SET   master_record = target_record,
11606             mods = NULL
11607           WHERE id = metarec.id;
11608
11609         moved_objects := moved_objects + 1;
11610     END IF;
11611
11612     -- Find call numbers attached to the source ...
11613     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
11614
11615         SELECT  INTO target_cn *
11616           FROM  asset.call_number
11617           WHERE label = source_cn.label
11618             AND owning_lib = source_cn.owning_lib
11619             AND record = target_record;
11620
11621         -- ... and if there's a conflicting one on the target ...
11622         IF FOUND THEN
11623
11624             -- ... move the copies to that, and ...
11625             UPDATE  asset.copy
11626               SET   call_number = target_cn.id
11627               WHERE call_number = source_cn.id;
11628
11629             -- ... move V holds to the move-target call number
11630             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
11631
11632                 UPDATE  action.hold_request
11633                   SET   target = target_cn.id
11634                   WHERE id = hold.id;
11635
11636                 moved_objects := moved_objects + 1;
11637             END LOOP;
11638
11639         -- ... if not ...
11640         ELSE
11641             -- ... just move the call number to the target record
11642             UPDATE  asset.call_number
11643               SET   record = target_record
11644               WHERE id = source_cn.id;
11645         END IF;
11646
11647         moved_objects := moved_objects + 1;
11648     END LOOP;
11649
11650     -- Find T holds targeting the source record ...
11651     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
11652
11653         -- ... and move them to the target record
11654         UPDATE  action.hold_request
11655           SET   target = target_record
11656           WHERE id = hold.id;
11657
11658         moved_objects := moved_objects + 1;
11659     END LOOP;
11660
11661     -- Find serial records targeting the source record ...
11662     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
11663         -- ... and move them to the target record
11664         UPDATE  serial.record_entry
11665           SET   record = target_record
11666           WHERE id = ser_rec.id;
11667
11668         moved_objects := moved_objects + 1;
11669     END LOOP;
11670
11671     -- Finally, "delete" the source record
11672     DELETE FROM biblio.record_entry WHERE id = source_record;
11673
11674     -- That's all, folks!
11675     RETURN moved_objects;
11676 END;
11677 $func$ LANGUAGE plpgsql;
11678
11679 CREATE OR REPLACE FUNCTION acq.transfer_fund(
11680         old_fund   IN INT,
11681         old_amount IN NUMERIC,     -- in currency of old fund
11682         new_fund   IN INT,
11683         new_amount IN NUMERIC,     -- in currency of new fund
11684         user_id    IN INT,
11685         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
11686         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
11687 ) RETURNS VOID AS $$
11688 /* -------------------------------------------------------------------------------
11689
11690 Function to transfer money from one fund to another.
11691
11692 A transfer is represented as a pair of entries in acq.fund_allocation, with a
11693 negative amount for the old (losing) fund and a positive amount for the new
11694 (gaining) fund.  In some cases there may be more than one such pair of entries
11695 in order to pull the money from different funding sources, or more specifically
11696 from different funding source credits.  For each such pair there is also an
11697 entry in acq.fund_transfer.
11698
11699 Since funding_source is a non-nullable column in acq.fund_allocation, we must
11700 choose a funding source for the transferred money to come from.  This choice
11701 must meet two constraints, so far as possible:
11702
11703 1. The amount transferred from a given funding source must not exceed the
11704 amount allocated to the old fund by the funding source.  To that end we
11705 compare the amount being transferred to the amount allocated.
11706
11707 2. We shouldn't transfer money that has already been spent or encumbered, as
11708 defined by the funding attribution process.  We attribute expenses to the
11709 oldest funding source credits first.  In order to avoid transferring that
11710 attributed money, we reverse the priority, transferring from the newest funding
11711 source credits first.  There can be no guarantee that this approach will
11712 avoid overcommitting a fund, but no other approach can do any better.
11713
11714 In this context the age of a funding source credit is defined by the
11715 deadline_date for credits with deadline_dates, and by the effective_date for
11716 credits without deadline_dates, with the proviso that credits with deadline_dates
11717 are all considered "older" than those without.
11718
11719 ----------
11720
11721 In the signature for this function, there is one last parameter commented out,
11722 named "funding_source_in".  Correspondingly, the WHERE clause for the query
11723 driving the main loop has an OR clause commented out, which references the
11724 funding_source_in parameter.
11725
11726 If these lines are uncommented, this function will allow the user optionally to
11727 restrict a fund transfer to a specified funding source.  If the source
11728 parameter is left NULL, then there will be no such restriction.
11729
11730 ------------------------------------------------------------------------------- */ 
11731 DECLARE
11732         same_currency      BOOLEAN;
11733         currency_ratio     NUMERIC;
11734         old_fund_currency  TEXT;
11735         old_remaining      NUMERIC;  -- in currency of old fund
11736         new_fund_currency  TEXT;
11737         new_fund_active    BOOLEAN;
11738         new_remaining      NUMERIC;  -- in currency of new fund
11739         curr_old_amt       NUMERIC;  -- in currency of old fund
11740         curr_new_amt       NUMERIC;  -- in currency of new fund
11741         source_addition    NUMERIC;  -- in currency of funding source
11742         source_deduction   NUMERIC;  -- in currency of funding source
11743         orig_allocated_amt NUMERIC;  -- in currency of funding source
11744         allocated_amt      NUMERIC;  -- in currency of fund
11745         source             RECORD;
11746 BEGIN
11747         --
11748         -- Sanity checks
11749         --
11750         IF old_fund IS NULL THEN
11751                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
11752         END IF;
11753         --
11754         IF old_amount IS NULL THEN
11755                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
11756         END IF;
11757         --
11758         -- The new fund and its amount must be both NULL or both not NULL.
11759         --
11760         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
11761                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
11762         END IF;
11763         --
11764         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
11765                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
11766         END IF;
11767         --
11768         IF user_id IS NULL THEN
11769                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
11770         END IF;
11771         --
11772         -- Initialize the amounts to be transferred, each denominated
11773         -- in the currency of its respective fund.  They will be
11774         -- reduced on each iteration of the loop.
11775         --
11776         old_remaining := old_amount;
11777         new_remaining := new_amount;
11778         --
11779         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
11780         --      old_amount, old_fund, new_amount, new_fund;
11781         --
11782         -- Get the currency types of the old and new funds.
11783         --
11784         SELECT
11785                 currency_type
11786         INTO
11787                 old_fund_currency
11788         FROM
11789                 acq.fund
11790         WHERE
11791                 id = old_fund;
11792         --
11793         IF old_fund_currency IS NULL THEN
11794                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
11795         END IF;
11796         --
11797         IF new_fund IS NOT NULL THEN
11798                 SELECT
11799                         currency_type,
11800                         active
11801                 INTO
11802                         new_fund_currency,
11803                         new_fund_active
11804                 FROM
11805                         acq.fund
11806                 WHERE
11807                         id = new_fund;
11808                 --
11809                 IF new_fund_currency IS NULL THEN
11810                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
11811                 ELSIF NOT new_fund_active THEN
11812                         --
11813                         -- No point in putting money into a fund from whence you can't spend it
11814                         --
11815                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
11816                 END IF;
11817                 --
11818                 IF new_amount = old_amount THEN
11819                         same_currency := true;
11820                         currency_ratio := 1;
11821                 ELSE
11822                         --
11823                         -- We'll have to translate currency between funds.  We presume that
11824                         -- the calling code has already applied an appropriate exchange rate,
11825                         -- so we'll apply the same conversion to each sub-transfer.
11826                         --
11827                         same_currency := false;
11828                         currency_ratio := new_amount / old_amount;
11829                 END IF;
11830         END IF;
11831         --
11832         -- Identify the funding source(s) from which we want to transfer the money.
11833         -- The principle is that we want to transfer the newest money first, because
11834         -- we spend the oldest money first.  The priority for spending is defined
11835         -- by a sort of the view acq.ordered_funding_source_credit.
11836         --
11837         FOR source in
11838                 SELECT
11839                         ofsc.id,
11840                         ofsc.funding_source,
11841                         ofsc.amount,
11842                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
11843                                 AS converted_amt,
11844                         fs.currency_type
11845                 FROM
11846                         acq.ordered_funding_source_credit AS ofsc,
11847                         acq.funding_source fs
11848                 WHERE
11849                         ofsc.funding_source = fs.id
11850                         and ofsc.funding_source IN
11851                         (
11852                                 SELECT funding_source
11853                                 FROM acq.fund_allocation
11854                                 WHERE fund = old_fund
11855                         )
11856                         -- and
11857                         -- (
11858                         --      ofsc.funding_source = funding_source_in
11859                         --      OR funding_source_in IS NULL
11860                         -- )
11861                 ORDER BY
11862                         ofsc.sort_priority desc,
11863                         ofsc.sort_date desc,
11864                         ofsc.id desc
11865         LOOP
11866                 --
11867                 -- Determine how much money the old fund got from this funding source,
11868                 -- denominated in the currency types of the source and of the fund.
11869                 -- This result may reflect transfers from previous iterations.
11870                 --
11871                 SELECT
11872                         COALESCE( sum( amount ), 0 ),
11873                         COALESCE( sum( amount )
11874                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
11875                 INTO
11876                         orig_allocated_amt,     -- in currency of the source
11877                         allocated_amt           -- in currency of the old fund
11878                 FROM
11879                         acq.fund_allocation
11880                 WHERE
11881                         fund = old_fund
11882                         and funding_source = source.funding_source;
11883                 --      
11884                 -- Determine how much to transfer from this credit, in the currency
11885                 -- of the fund.   Begin with the amount remaining to be attributed:
11886                 --
11887                 curr_old_amt := old_remaining;
11888                 --
11889                 -- Can't attribute more than was allocated from the fund:
11890                 --
11891                 IF curr_old_amt > allocated_amt THEN
11892                         curr_old_amt := allocated_amt;
11893                 END IF;
11894                 --
11895                 -- Can't attribute more than the amount of the current credit:
11896                 --
11897                 IF curr_old_amt > source.converted_amt THEN
11898                         curr_old_amt := source.converted_amt;
11899                 END IF;
11900                 --
11901                 curr_old_amt := trunc( curr_old_amt, 2 );
11902                 --
11903                 old_remaining := old_remaining - curr_old_amt;
11904                 --
11905                 -- Determine the amount to be deducted, if any,
11906                 -- from the old allocation.
11907                 --
11908                 IF old_remaining > 0 THEN
11909                         --
11910                         -- In this case we're using the whole allocation, so use that
11911                         -- amount directly instead of applying a currency translation
11912                         -- and thereby inviting round-off errors.
11913                         --
11914                         source_deduction := - orig_allocated_amt;
11915                 ELSE 
11916                         source_deduction := trunc(
11917                                 ( - curr_old_amt ) *
11918                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
11919                                 2 );
11920                 END IF;
11921                 --
11922                 IF source_deduction <> 0 THEN
11923                         --
11924                         -- Insert negative allocation for old fund in fund_allocation,
11925                         -- converted into the currency of the funding source
11926                         --
11927                         INSERT INTO acq.fund_allocation (
11928                                 funding_source,
11929                                 fund,
11930                                 amount,
11931                                 allocator,
11932                                 note
11933                         ) VALUES (
11934                                 source.funding_source,
11935                                 old_fund,
11936                                 source_deduction,
11937                                 user_id,
11938                                 'Transfer to fund ' || new_fund
11939                         );
11940                 END IF;
11941                 --
11942                 IF new_fund IS NOT NULL THEN
11943                         --
11944                         -- Determine how much to add to the new fund, in
11945                         -- its currency, and how much remains to be added:
11946                         --
11947                         IF same_currency THEN
11948                                 curr_new_amt := curr_old_amt;
11949                         ELSE
11950                                 IF old_remaining = 0 THEN
11951                                         --
11952                                         -- This is the last iteration, so nothing should be left
11953                                         --
11954                                         curr_new_amt := new_remaining;
11955                                         new_remaining := 0;
11956                                 ELSE
11957                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
11958                                         new_remaining := new_remaining - curr_new_amt;
11959                                 END IF;
11960                         END IF;
11961                         --
11962                         -- Determine how much to add, if any,
11963                         -- to the new fund's allocation.
11964                         --
11965                         IF old_remaining > 0 THEN
11966                                 --
11967                                 -- In this case we're using the whole allocation, so use that amount
11968                                 -- amount directly instead of applying a currency translation and
11969                                 -- thereby inviting round-off errors.
11970                                 --
11971                                 source_addition := orig_allocated_amt;
11972                         ELSIF source.currency_type = old_fund_currency THEN
11973                                 --
11974                                 -- In this case we don't need a round trip currency translation,
11975                                 -- thereby inviting round-off errors:
11976                                 --
11977                                 source_addition := curr_old_amt;
11978                         ELSE 
11979                                 source_addition := trunc(
11980                                         curr_new_amt *
11981                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
11982                                         2 );
11983                         END IF;
11984                         --
11985                         IF source_addition <> 0 THEN
11986                                 --
11987                                 -- Insert positive allocation for new fund in fund_allocation,
11988                                 -- converted to the currency of the founding source
11989                                 --
11990                                 INSERT INTO acq.fund_allocation (
11991                                         funding_source,
11992                                         fund,
11993                                         amount,
11994                                         allocator,
11995                                         note
11996                                 ) VALUES (
11997                                         source.funding_source,
11998                                         new_fund,
11999                                         source_addition,
12000                                         user_id,
12001                                         'Transfer from fund ' || old_fund
12002                                 );
12003                         END IF;
12004                 END IF;
12005                 --
12006                 IF trunc( curr_old_amt, 2 ) <> 0
12007                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
12008                         --
12009                         -- Insert row in fund_transfer, using amounts in the currency of the funds
12010                         --
12011                         INSERT INTO acq.fund_transfer (
12012                                 src_fund,
12013                                 src_amount,
12014                                 dest_fund,
12015                                 dest_amount,
12016                                 transfer_user,
12017                                 note,
12018                                 funding_source_credit
12019                         ) VALUES (
12020                                 old_fund,
12021                                 trunc( curr_old_amt, 2 ),
12022                                 new_fund,
12023                                 trunc( curr_new_amt, 2 ),
12024                                 user_id,
12025                                 xfer_note,
12026                                 source.id
12027                         );
12028                 END IF;
12029                 --
12030                 if old_remaining <= 0 THEN
12031                         EXIT;                   -- Nothing more to be transferred
12032                 END IF;
12033         END LOOP;
12034 END;
12035 $$ LANGUAGE plpgsql;
12036
12037 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
12038         old_year INTEGER,
12039         user_id INTEGER,
12040         org_unit_id INTEGER
12041 ) RETURNS VOID AS $$
12042 DECLARE
12043 --
12044 new_id      INT;
12045 old_fund    RECORD;
12046 org_found   BOOLEAN;
12047 --
12048 BEGIN
12049         --
12050         -- Sanity checks
12051         --
12052         IF old_year IS NULL THEN
12053                 RAISE EXCEPTION 'Input year argument is NULL';
12054         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12055                 RAISE EXCEPTION 'Input year is out of range';
12056         END IF;
12057         --
12058         IF user_id IS NULL THEN
12059                 RAISE EXCEPTION 'Input user id argument is NULL';
12060         END IF;
12061         --
12062         IF org_unit_id IS NULL THEN
12063                 RAISE EXCEPTION 'Org unit id argument is NULL';
12064         ELSE
12065                 SELECT TRUE INTO org_found
12066                 FROM actor.org_unit
12067                 WHERE id = org_unit_id;
12068                 --
12069                 IF org_found IS NULL THEN
12070                         RAISE EXCEPTION 'Org unit id is invalid';
12071                 END IF;
12072         END IF;
12073         --
12074         -- Loop over the applicable funds
12075         --
12076         FOR old_fund in SELECT * FROM acq.fund
12077         WHERE
12078                 year = old_year
12079                 AND propagate
12080                 AND org = org_unit_id
12081         LOOP
12082                 BEGIN
12083                         INSERT INTO acq.fund (
12084                                 org,
12085                                 name,
12086                                 year,
12087                                 currency_type,
12088                                 code,
12089                                 rollover,
12090                                 propagate,
12091                                 balance_warning_percent,
12092                                 balance_stop_percent
12093                         ) VALUES (
12094                                 old_fund.org,
12095                                 old_fund.name,
12096                                 old_year + 1,
12097                                 old_fund.currency_type,
12098                                 old_fund.code,
12099                                 old_fund.rollover,
12100                                 true,
12101                                 old_fund.balance_warning_percent,
12102                                 old_fund.balance_stop_percent
12103                         )
12104                         RETURNING id INTO new_id;
12105                 EXCEPTION
12106                         WHEN unique_violation THEN
12107                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12108                                 CONTINUE;
12109                 END;
12110                 --RAISE NOTICE 'Propagating fund % to fund %',
12111                 --      old_fund.code, new_id;
12112         END LOOP;
12113 END;
12114 $$ LANGUAGE plpgsql;
12115
12116 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12117         old_year INTEGER,
12118         user_id INTEGER,
12119         org_unit_id INTEGER
12120 ) RETURNS VOID AS $$
12121 DECLARE
12122 --
12123 new_id      INT;
12124 old_fund    RECORD;
12125 org_found   BOOLEAN;
12126 --
12127 BEGIN
12128         --
12129         -- Sanity checks
12130         --
12131         IF old_year IS NULL THEN
12132                 RAISE EXCEPTION 'Input year argument is NULL';
12133         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12134                 RAISE EXCEPTION 'Input year is out of range';
12135         END IF;
12136         --
12137         IF user_id IS NULL THEN
12138                 RAISE EXCEPTION 'Input user id argument is NULL';
12139         END IF;
12140         --
12141         IF org_unit_id IS NULL THEN
12142                 RAISE EXCEPTION 'Org unit id argument is NULL';
12143         ELSE
12144                 SELECT TRUE INTO org_found
12145                 FROM actor.org_unit
12146                 WHERE id = org_unit_id;
12147                 --
12148                 IF org_found IS NULL THEN
12149                         RAISE EXCEPTION 'Org unit id is invalid';
12150                 END IF;
12151         END IF;
12152         --
12153         -- Loop over the applicable funds
12154         --
12155         FOR old_fund in SELECT * FROM acq.fund
12156         WHERE
12157                 year = old_year
12158                 AND propagate
12159                 AND org in (
12160                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12161                 )
12162         LOOP
12163                 BEGIN
12164                         INSERT INTO acq.fund (
12165                                 org,
12166                                 name,
12167                                 year,
12168                                 currency_type,
12169                                 code,
12170                                 rollover,
12171                                 propagate,
12172                                 balance_warning_percent,
12173                                 balance_stop_percent
12174                         ) VALUES (
12175                                 old_fund.org,
12176                                 old_fund.name,
12177                                 old_year + 1,
12178                                 old_fund.currency_type,
12179                                 old_fund.code,
12180                                 old_fund.rollover,
12181                                 true,
12182                                 old_fund.balance_warning_percent,
12183                                 old_fund.balance_stop_percent
12184                         )
12185                         RETURNING id INTO new_id;
12186                 EXCEPTION
12187                         WHEN unique_violation THEN
12188                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12189                                 CONTINUE;
12190                 END;
12191                 --RAISE NOTICE 'Propagating fund % to fund %',
12192                 --      old_fund.code, new_id;
12193         END LOOP;
12194 END;
12195 $$ LANGUAGE plpgsql;
12196
12197 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12198         old_year INTEGER,
12199         user_id INTEGER,
12200         org_unit_id INTEGER
12201 ) RETURNS VOID AS $$
12202 DECLARE
12203 --
12204 new_fund    INT;
12205 new_year    INT := old_year + 1;
12206 org_found   BOOL;
12207 xfer_amount NUMERIC;
12208 roll_fund   RECORD;
12209 deb         RECORD;
12210 detail      RECORD;
12211 --
12212 BEGIN
12213         --
12214         -- Sanity checks
12215         --
12216         IF old_year IS NULL THEN
12217                 RAISE EXCEPTION 'Input year argument is NULL';
12218     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12219         RAISE EXCEPTION 'Input year is out of range';
12220         END IF;
12221         --
12222         IF user_id IS NULL THEN
12223                 RAISE EXCEPTION 'Input user id argument is NULL';
12224         END IF;
12225         --
12226         IF org_unit_id IS NULL THEN
12227                 RAISE EXCEPTION 'Org unit id argument is NULL';
12228         ELSE
12229                 --
12230                 -- Validate the org unit
12231                 --
12232                 SELECT TRUE
12233                 INTO org_found
12234                 FROM actor.org_unit
12235                 WHERE id = org_unit_id;
12236                 --
12237                 IF org_found IS NULL THEN
12238                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12239                 END IF;
12240         END IF;
12241         --
12242         -- Loop over the propagable funds to identify the details
12243         -- from the old fund plus the id of the new one, if it exists.
12244         --
12245         FOR roll_fund in
12246         SELECT
12247             oldf.id AS old_fund,
12248             oldf.org,
12249             oldf.name,
12250             oldf.currency_type,
12251             oldf.code,
12252                 oldf.rollover,
12253             newf.id AS new_fund_id
12254         FROM
12255         acq.fund AS oldf
12256         LEFT JOIN acq.fund AS newf
12257                 ON ( oldf.code = newf.code )
12258         WHERE
12259                     oldf.org = org_unit_id
12260                 and oldf.year = old_year
12261                 and oldf.propagate
12262         and newf.year = new_year
12263         LOOP
12264                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12265                 --
12266                 IF roll_fund.new_fund_id IS NULL THEN
12267                         --
12268                         -- The old fund hasn't been propagated yet.  Propagate it now.
12269                         --
12270                         INSERT INTO acq.fund (
12271                                 org,
12272                                 name,
12273                                 year,
12274                                 currency_type,
12275                                 code,
12276                                 rollover,
12277                                 propagate,
12278                                 balance_warning_percent,
12279                                 balance_stop_percent
12280                         ) VALUES (
12281                                 roll_fund.org,
12282                                 roll_fund.name,
12283                                 new_year,
12284                                 roll_fund.currency_type,
12285                                 roll_fund.code,
12286                                 true,
12287                                 true,
12288                                 roll_fund.balance_warning_percent,
12289                                 roll_fund.balance_stop_percent
12290                         )
12291                         RETURNING id INTO new_fund;
12292                 ELSE
12293                         new_fund = roll_fund.new_fund_id;
12294                 END IF;
12295                 --
12296                 -- Determine the amount to transfer
12297                 --
12298                 SELECT amount
12299                 INTO xfer_amount
12300                 FROM acq.fund_spent_balance
12301                 WHERE fund = roll_fund.old_fund;
12302                 --
12303                 IF xfer_amount <> 0 THEN
12304                         IF roll_fund.rollover THEN
12305                                 --
12306                                 -- Transfer balance from old fund to new
12307                                 --
12308                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12309                                 --
12310                                 PERFORM acq.transfer_fund(
12311                                         roll_fund.old_fund,
12312                                         xfer_amount,
12313                                         new_fund,
12314                                         xfer_amount,
12315                                         user_id,
12316                                         'Rollover'
12317                                 );
12318                         ELSE
12319                                 --
12320                                 -- Transfer balance from old fund to the void
12321                                 --
12322                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12323                                 --
12324                                 PERFORM acq.transfer_fund(
12325                                         roll_fund.old_fund,
12326                                         xfer_amount,
12327                                         NULL,
12328                                         NULL,
12329                                         user_id,
12330                                         'Rollover'
12331                                 );
12332                         END IF;
12333                 END IF;
12334                 --
12335                 IF roll_fund.rollover THEN
12336                         --
12337                         -- Move any lineitems from the old fund to the new one
12338                         -- where the associated debit is an encumbrance.
12339                         --
12340                         -- Any other tables tying expenditure details to funds should
12341                         -- receive similar treatment.  At this writing there are none.
12342                         --
12343                         UPDATE acq.lineitem_detail
12344                         SET fund = new_fund
12345                         WHERE
12346                         fund = roll_fund.old_fund -- this condition may be redundant
12347                         AND fund_debit in
12348                         (
12349                                 SELECT id
12350                                 FROM acq.fund_debit
12351                                 WHERE
12352                                 fund = roll_fund.old_fund
12353                                 AND encumbrance
12354                         );
12355                         --
12356                         -- Move encumbrance debits from the old fund to the new fund
12357                         --
12358                         UPDATE acq.fund_debit
12359                         SET fund = new_fund
12360                         wHERE
12361                                 fund = roll_fund.old_fund
12362                                 AND encumbrance;
12363                 END IF;
12364                 --
12365                 -- Mark old fund as inactive, now that we've closed it
12366                 --
12367                 UPDATE acq.fund
12368                 SET active = FALSE
12369                 WHERE id = roll_fund.old_fund;
12370         END LOOP;
12371 END;
12372 $$ LANGUAGE plpgsql;
12373
12374 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12375         old_year INTEGER,
12376         user_id INTEGER,
12377         org_unit_id INTEGER
12378 ) RETURNS VOID AS $$
12379 DECLARE
12380 --
12381 new_fund    INT;
12382 new_year    INT := old_year + 1;
12383 org_found   BOOL;
12384 xfer_amount NUMERIC;
12385 roll_fund   RECORD;
12386 deb         RECORD;
12387 detail      RECORD;
12388 --
12389 BEGIN
12390         --
12391         -- Sanity checks
12392         --
12393         IF old_year IS NULL THEN
12394                 RAISE EXCEPTION 'Input year argument is NULL';
12395     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12396         RAISE EXCEPTION 'Input year is out of range';
12397         END IF;
12398         --
12399         IF user_id IS NULL THEN
12400                 RAISE EXCEPTION 'Input user id argument is NULL';
12401         END IF;
12402         --
12403         IF org_unit_id IS NULL THEN
12404                 RAISE EXCEPTION 'Org unit id argument is NULL';
12405         ELSE
12406                 --
12407                 -- Validate the org unit
12408                 --
12409                 SELECT TRUE
12410                 INTO org_found
12411                 FROM actor.org_unit
12412                 WHERE id = org_unit_id;
12413                 --
12414                 IF org_found IS NULL THEN
12415                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12416                 END IF;
12417         END IF;
12418         --
12419         -- Loop over the propagable funds to identify the details
12420         -- from the old fund plus the id of the new one, if it exists.
12421         --
12422         FOR roll_fund in
12423         SELECT
12424             oldf.id AS old_fund,
12425             oldf.org,
12426             oldf.name,
12427             oldf.currency_type,
12428             oldf.code,
12429                 oldf.rollover,
12430             newf.id AS new_fund_id
12431         FROM
12432         acq.fund AS oldf
12433         LEFT JOIN acq.fund AS newf
12434                 ON ( oldf.code = newf.code )
12435         WHERE
12436                     oldf.year = old_year
12437                 AND oldf.propagate
12438         AND newf.year = new_year
12439                 AND oldf.org in (
12440                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12441                 )
12442         LOOP
12443                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12444                 --
12445                 IF roll_fund.new_fund_id IS NULL THEN
12446                         --
12447                         -- The old fund hasn't been propagated yet.  Propagate it now.
12448                         --
12449                         INSERT INTO acq.fund (
12450                                 org,
12451                                 name,
12452                                 year,
12453                                 currency_type,
12454                                 code,
12455                                 rollover,
12456                                 propagate,
12457                                 balance_warning_percent,
12458                                 balance_stop_percent
12459                         ) VALUES (
12460                                 roll_fund.org,
12461                                 roll_fund.name,
12462                                 new_year,
12463                                 roll_fund.currency_type,
12464                                 roll_fund.code,
12465                                 true,
12466                                 true,
12467                                 roll_fund.balance_warning_percent,
12468                                 roll_fund.balance_stop_percent
12469                         )
12470                         RETURNING id INTO new_fund;
12471                 ELSE
12472                         new_fund = roll_fund.new_fund_id;
12473                 END IF;
12474                 --
12475                 -- Determine the amount to transfer
12476                 --
12477                 SELECT amount
12478                 INTO xfer_amount
12479                 FROM acq.fund_spent_balance
12480                 WHERE fund = roll_fund.old_fund;
12481                 --
12482                 IF xfer_amount <> 0 THEN
12483                         IF roll_fund.rollover THEN
12484                                 --
12485                                 -- Transfer balance from old fund to new
12486                                 --
12487                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12488                                 --
12489                                 PERFORM acq.transfer_fund(
12490                                         roll_fund.old_fund,
12491                                         xfer_amount,
12492                                         new_fund,
12493                                         xfer_amount,
12494                                         user_id,
12495                                         'Rollover'
12496                                 );
12497                         ELSE
12498                                 --
12499                                 -- Transfer balance from old fund to the void
12500                                 --
12501                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12502                                 --
12503                                 PERFORM acq.transfer_fund(
12504                                         roll_fund.old_fund,
12505                                         xfer_amount,
12506                                         NULL,
12507                                         NULL,
12508                                         user_id,
12509                                         'Rollover'
12510                                 );
12511                         END IF;
12512                 END IF;
12513                 --
12514                 IF roll_fund.rollover THEN
12515                         --
12516                         -- Move any lineitems from the old fund to the new one
12517                         -- where the associated debit is an encumbrance.
12518                         --
12519                         -- Any other tables tying expenditure details to funds should
12520                         -- receive similar treatment.  At this writing there are none.
12521                         --
12522                         UPDATE acq.lineitem_detail
12523                         SET fund = new_fund
12524                         WHERE
12525                         fund = roll_fund.old_fund -- this condition may be redundant
12526                         AND fund_debit in
12527                         (
12528                                 SELECT id
12529                                 FROM acq.fund_debit
12530                                 WHERE
12531                                 fund = roll_fund.old_fund
12532                                 AND encumbrance
12533                         );
12534                         --
12535                         -- Move encumbrance debits from the old fund to the new fund
12536                         --
12537                         UPDATE acq.fund_debit
12538                         SET fund = new_fund
12539                         wHERE
12540                                 fund = roll_fund.old_fund
12541                                 AND encumbrance;
12542                 END IF;
12543                 --
12544                 -- Mark old fund as inactive, now that we've closed it
12545                 --
12546                 UPDATE acq.fund
12547                 SET active = FALSE
12548                 WHERE id = roll_fund.old_fund;
12549         END LOOP;
12550 END;
12551 $$ LANGUAGE plpgsql;
12552
12553 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
12554     SELECT regexp_replace($1, ',', '', 'g');
12555 $$ LANGUAGE SQL STRICT IMMUTABLE;
12556
12557 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
12558     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
12559 $$ LANGUAGE SQL STRICT IMMUTABLE;
12560
12561 CREATE TABLE acq.distribution_formula_application (
12562     id BIGSERIAL PRIMARY KEY,
12563     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
12564     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
12565     formula INT NOT NULL
12566         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
12567     lineitem INT NOT NULL
12568         REFERENCES acq.lineitem( id )
12569                 ON DELETE CASCADE
12570                 DEFERRABLE INITIALLY DEFERRED
12571 );
12572
12573 CREATE INDEX acqdfa_df_idx
12574     ON acq.distribution_formula_application(formula);
12575 CREATE INDEX acqdfa_li_idx
12576     ON acq.distribution_formula_application(lineitem);
12577 CREATE INDEX acqdfa_creator_idx
12578     ON acq.distribution_formula_application(creator);
12579
12580 CREATE TABLE acq.user_request_type (
12581     id      SERIAL  PRIMARY KEY,
12582     label   TEXT    NOT NULL UNIQUE -- i18n-ize
12583 );
12584
12585 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
12586 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
12587 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
12588 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
12589 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
12590
12591 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
12592
12593 CREATE TABLE acq.cancel_reason (
12594         id            SERIAL            PRIMARY KEY,
12595         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
12596                                         DEFERRABLE INITIALLY DEFERRED,
12597         label         TEXT              NOT NULL,
12598         description   TEXT              NOT NULL,
12599         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
12600         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
12601 );
12602
12603 -- Reserve ids 1-999 for stock reasons
12604 -- Reserve ids 1000-1999 for EDI reasons
12605 -- 2000+ are available for staff to create
12606
12607 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
12608
12609 CREATE TABLE acq.user_request (
12610     id                  SERIAL  PRIMARY KEY,
12611     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
12612     hold                BOOL    NOT NULL DEFAULT TRUE,
12613
12614     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
12615     holdable_formats    TEXT,           -- nullable, for use in hold creation
12616     phone_notify        TEXT,
12617     email_notify        BOOL    NOT NULL DEFAULT TRUE,
12618     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
12619     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
12620     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
12621     need_before         TIMESTAMPTZ,    -- don't create holds after this
12622     max_fee             TEXT,
12623
12624     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
12625     isxn                TEXT,
12626     title               TEXT,
12627     volume              TEXT,
12628     author              TEXT,
12629     article_title       TEXT,
12630     article_pages       TEXT,
12631     publisher           TEXT,
12632     location            TEXT,
12633     pubdate             TEXT,
12634     mentioned           TEXT,
12635     other_info          TEXT,
12636         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
12637                                              DEFERRABLE INITIALLY DEFERRED
12638 );
12639
12640 CREATE TABLE acq.lineitem_alert_text (
12641         id               SERIAL         PRIMARY KEY,
12642         code             TEXT           UNIQUE NOT NULL,
12643         description      TEXT,
12644         owning_lib       INT            NOT NULL
12645                                         REFERENCES actor.org_unit(id)
12646                                         DEFERRABLE INITIALLY DEFERRED,
12647         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
12648 );
12649
12650 ALTER TABLE acq.lineitem_note
12651         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
12652                                          DEFERRABLE INITIALLY DEFERRED;
12653
12654 -- add ON DELETE CASCADE clause
12655
12656 ALTER TABLE acq.lineitem_note
12657         DROP CONSTRAINT lineitem_note_lineitem_fkey;
12658
12659 ALTER TABLE acq.lineitem_note
12660         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
12661                 ON DELETE CASCADE
12662                 DEFERRABLE INITIALLY DEFERRED;
12663
12664 ALTER TABLE acq.lineitem_note
12665         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
12666
12667 CREATE TABLE acq.invoice_method (
12668     code    TEXT    PRIMARY KEY,
12669     name    TEXT    NOT NULL -- i18n-ize
12670 );
12671 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
12672 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
12673
12674 CREATE TABLE acq.invoice_payment_method (
12675         code      TEXT     PRIMARY KEY,
12676         name      TEXT     NOT NULL
12677 );
12678
12679 CREATE TABLE acq.invoice (
12680     id             SERIAL      PRIMARY KEY,
12681     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
12682     provider       INT         NOT NULL REFERENCES acq.provider (id),
12683     shipper        INT         NOT NULL REFERENCES acq.provider (id),
12684     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
12685     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
12686     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
12687     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
12688         payment_auth   TEXT,
12689         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
12690                                    DEFERRABLE INITIALLY DEFERRED,
12691         note           TEXT,
12692     complete       BOOL        NOT NULL DEFAULT FALSE,
12693     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
12694 );
12695
12696 CREATE TABLE acq.invoice_entry (
12697     id              SERIAL      PRIMARY KEY,
12698     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
12699     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
12700     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
12701     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
12702     phys_item_count INT, -- and how many did staff count
12703     note            TEXT,
12704     billed_per_item BOOL,
12705     cost_billed     NUMERIC(8,2),
12706     actual_cost     NUMERIC(8,2),
12707         amount_paid     NUMERIC (8,2)
12708 );
12709
12710 CREATE TABLE acq.invoice_item_type (
12711     code    TEXT    PRIMARY KEY,
12712     name    TEXT    NOT NULL, -- i18n-ize
12713         prorate BOOL    NOT NULL DEFAULT FALSE
12714 );
12715
12716 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
12717 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
12718 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
12719 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
12720 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
12721 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Searial Subscription', 'aiit', 'name'));
12722
12723 CREATE TABLE acq.po_item (
12724         id              SERIAL      PRIMARY KEY,
12725         purchase_order  INT         REFERENCES acq.purchase_order (id)
12726                                     ON UPDATE CASCADE ON DELETE SET NULL
12727                                     DEFERRABLE INITIALLY DEFERRED,
12728         fund_debit      INT         REFERENCES acq.fund_debit (id)
12729                                     DEFERRABLE INITIALLY DEFERRED,
12730         inv_item_type   TEXT        NOT NULL
12731                                     REFERENCES acq.invoice_item_type (code)
12732                                     DEFERRABLE INITIALLY DEFERRED,
12733         title           TEXT,
12734         author          TEXT,
12735         note            TEXT,
12736         estimated_cost  NUMERIC(8,2),
12737         fund            INT         REFERENCES acq.fund (id)
12738                                     DEFERRABLE INITIALLY DEFERRED,
12739         target          BIGINT
12740 );
12741
12742 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
12743     id              SERIAL      PRIMARY KEY,
12744     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
12745     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
12746     fund_debit      INT         REFERENCES acq.fund_debit (id),
12747     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
12748     title           TEXT,
12749     author          TEXT,
12750     note            TEXT,
12751     cost_billed     NUMERIC(8,2),
12752     actual_cost     NUMERIC(8,2),
12753     fund            INT         REFERENCES acq.fund (id)
12754                                 DEFERRABLE INITIALLY DEFERRED,
12755     amount_paid     NUMERIC (8,2),
12756     po_item         INT         REFERENCES acq.po_item (id)
12757                                 DEFERRABLE INITIALLY DEFERRED,
12758     target          BIGINT
12759 );
12760
12761 CREATE TABLE acq.edi_message (
12762     id               SERIAL          PRIMARY KEY,
12763     account          INTEGER         REFERENCES acq.edi_account(id)
12764                                      DEFERRABLE INITIALLY DEFERRED,
12765     remote_file      TEXT,
12766     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
12767     translate_time   TIMESTAMPTZ,
12768     process_time     TIMESTAMPTZ,
12769     error_time       TIMESTAMPTZ,
12770     status           TEXT            NOT NULL DEFAULT 'new'
12771                                      CONSTRAINT status_value CHECK
12772                                      ( status IN (
12773                                         'new',          -- needs to be translated
12774                                         'translated',   -- needs to be processed
12775                                         'trans_error',  -- error in translation step
12776                                         'processed',    -- needs to have remote_file deleted
12777                                         'proc_error',   -- error in processing step
12778                                         'delete_error', -- error in deletion
12779                                         'retry',        -- need to retry
12780                                         'complete'      -- done
12781                                      )),
12782     edi              TEXT,
12783     jedi             TEXT,
12784     error            TEXT,
12785     purchase_order   INT             REFERENCES acq.purchase_order
12786                                      DEFERRABLE INITIALLY DEFERRED,
12787     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
12788                                      CHECK ( message_type IN (
12789                                         'ORDERS',
12790                                         'ORDRSP',
12791                                         'INVOIC',
12792                                         'OSTENQ',
12793                                         'OSTRPT'
12794                                      ))
12795 );
12796
12797 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
12798
12799 ALTER TABLE acq.provider_address
12800         ADD COLUMN fax_phone TEXT;
12801
12802 ALTER TABLE acq.provider_contact_address
12803         ADD COLUMN fax_phone TEXT;
12804
12805 CREATE TABLE acq.provider_note (
12806     id      SERIAL              PRIMARY KEY,
12807     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
12808     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
12809     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
12810     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
12811     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
12812     value       TEXT            NOT NULL
12813 );
12814 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
12815 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
12816 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
12817
12818 -- For each fund: the total allocation from all sources, in the
12819 -- currency of the fund (or 0 if there are no allocations)
12820
12821 CREATE VIEW acq.all_fund_allocation_total AS
12822 SELECT
12823     f.id AS fund,
12824     COALESCE( SUM( a.amount * acq.exchange_ratio(
12825         s.currency_type, f.currency_type))::numeric(100,2), 0 )
12826     AS amount
12827 FROM
12828     acq.fund f
12829         LEFT JOIN acq.fund_allocation a
12830             ON a.fund = f.id
12831         LEFT JOIN acq.funding_source s
12832             ON a.funding_source = s.id
12833 GROUP BY
12834     f.id;
12835
12836 -- For every fund: the total encumbrances (or 0 if none),
12837 -- in the currency of the fund.
12838
12839 CREATE VIEW acq.all_fund_encumbrance_total AS
12840 SELECT
12841         f.id AS fund,
12842         COALESCE( encumb.amount, 0 ) AS amount
12843 FROM
12844         acq.fund AS f
12845                 LEFT JOIN (
12846                         SELECT
12847                                 fund,
12848                                 sum( amount ) AS amount
12849                         FROM
12850                                 acq.fund_debit
12851                         WHERE
12852                                 encumbrance
12853                         GROUP BY fund
12854                 ) AS encumb
12855                         ON f.id = encumb.fund;
12856
12857 -- For every fund: the total spent (or 0 if none),
12858 -- in the currency of the fund.
12859
12860 CREATE VIEW acq.all_fund_spent_total AS
12861 SELECT
12862     f.id AS fund,
12863     COALESCE( spent.amount, 0 ) AS amount
12864 FROM
12865     acq.fund AS f
12866         LEFT JOIN (
12867             SELECT
12868                 fund,
12869                 sum( amount ) AS amount
12870             FROM
12871                 acq.fund_debit
12872             WHERE
12873                 NOT encumbrance
12874             GROUP BY fund
12875         ) AS spent
12876             ON f.id = spent.fund;
12877
12878 -- For each fund: the amount not yet spent, in the currency
12879 -- of the fund.  May include encumbrances.
12880
12881 CREATE VIEW acq.all_fund_spent_balance AS
12882 SELECT
12883         c.fund,
12884         c.amount - d.amount AS amount
12885 FROM acq.all_fund_allocation_total c
12886     LEFT JOIN acq.all_fund_spent_total d USING (fund);
12887
12888 -- For each fund: the amount neither spent nor encumbered,
12889 -- in the currency of the fund
12890
12891 CREATE VIEW acq.all_fund_combined_balance AS
12892 SELECT
12893      a.fund,
12894      a.amount - COALESCE( c.amount, 0 ) AS amount
12895 FROM
12896      acq.all_fund_allocation_total a
12897         LEFT OUTER JOIN (
12898             SELECT
12899                 fund,
12900                 SUM( amount ) AS amount
12901             FROM
12902                 acq.fund_debit
12903             GROUP BY
12904                 fund
12905         ) AS c USING ( fund );
12906
12907 CREATE OR REPLACE FUNCTION actor.usr_merge(
12908         src_usr INT,
12909         dest_usr INT,
12910         del_addrs BOOLEAN,
12911         del_cards BOOLEAN,
12912         deactivate_cards BOOLEAN
12913 ) RETURNS VOID AS $$
12914 DECLARE
12915         suffix TEXT;
12916         bucket_row RECORD;
12917         picklist_row RECORD;
12918         queue_row RECORD;
12919         folder_row RECORD;
12920 BEGIN
12921
12922     -- do some initial cleanup 
12923     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
12924     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
12925     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
12926
12927     -- actor.*
12928     IF del_cards THEN
12929         DELETE FROM actor.card where usr = src_usr;
12930     ELSE
12931         IF deactivate_cards THEN
12932             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
12933         END IF;
12934         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
12935     END IF;
12936
12937
12938     IF del_addrs THEN
12939         DELETE FROM actor.usr_address WHERE usr = src_usr;
12940     ELSE
12941         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
12942     END IF;
12943
12944     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
12945     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
12946     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
12947     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
12948     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
12949
12950     -- permission.*
12951     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
12952     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
12953     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
12954     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
12955
12956
12957     -- container.*
12958         
12959         -- For each *_bucket table: transfer every bucket belonging to src_usr
12960         -- into the custody of dest_usr.
12961         --
12962         -- In order to avoid colliding with an existing bucket owned by
12963         -- the destination user, append the source user's id (in parenthesese)
12964         -- to the name.  If you still get a collision, add successive
12965         -- spaces to the name and keep trying until you succeed.
12966         --
12967         FOR bucket_row in
12968                 SELECT id, name
12969                 FROM   container.biblio_record_entry_bucket
12970                 WHERE  owner = src_usr
12971         LOOP
12972                 suffix := ' (' || src_usr || ')';
12973                 LOOP
12974                         BEGIN
12975                                 UPDATE  container.biblio_record_entry_bucket
12976                                 SET     owner = dest_usr, name = name || suffix
12977                                 WHERE   id = bucket_row.id;
12978                         EXCEPTION WHEN unique_violation THEN
12979                                 suffix := suffix || ' ';
12980                                 CONTINUE;
12981                         END;
12982                         EXIT;
12983                 END LOOP;
12984         END LOOP;
12985
12986         FOR bucket_row in
12987                 SELECT id, name
12988                 FROM   container.call_number_bucket
12989                 WHERE  owner = src_usr
12990         LOOP
12991                 suffix := ' (' || src_usr || ')';
12992                 LOOP
12993                         BEGIN
12994                                 UPDATE  container.call_number_bucket
12995                                 SET     owner = dest_usr, name = name || suffix
12996                                 WHERE   id = bucket_row.id;
12997                         EXCEPTION WHEN unique_violation THEN
12998                                 suffix := suffix || ' ';
12999                                 CONTINUE;
13000                         END;
13001                         EXIT;
13002                 END LOOP;
13003         END LOOP;
13004
13005         FOR bucket_row in
13006                 SELECT id, name
13007                 FROM   container.copy_bucket
13008                 WHERE  owner = src_usr
13009         LOOP
13010                 suffix := ' (' || src_usr || ')';
13011                 LOOP
13012                         BEGIN
13013                                 UPDATE  container.copy_bucket
13014                                 SET     owner = dest_usr, name = name || suffix
13015                                 WHERE   id = bucket_row.id;
13016                         EXCEPTION WHEN unique_violation THEN
13017                                 suffix := suffix || ' ';
13018                                 CONTINUE;
13019                         END;
13020                         EXIT;
13021                 END LOOP;
13022         END LOOP;
13023
13024         FOR bucket_row in
13025                 SELECT id, name
13026                 FROM   container.user_bucket
13027                 WHERE  owner = src_usr
13028         LOOP
13029                 suffix := ' (' || src_usr || ')';
13030                 LOOP
13031                         BEGIN
13032                                 UPDATE  container.user_bucket
13033                                 SET     owner = dest_usr, name = name || suffix
13034                                 WHERE   id = bucket_row.id;
13035                         EXCEPTION WHEN unique_violation THEN
13036                                 suffix := suffix || ' ';
13037                                 CONTINUE;
13038                         END;
13039                         EXIT;
13040                 END LOOP;
13041         END LOOP;
13042
13043         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
13044
13045     -- vandelay.*
13046         -- transfer queues the same way we transfer buckets (see above)
13047         FOR queue_row in
13048                 SELECT id, name
13049                 FROM   vandelay.queue
13050                 WHERE  owner = src_usr
13051         LOOP
13052                 suffix := ' (' || src_usr || ')';
13053                 LOOP
13054                         BEGIN
13055                                 UPDATE  vandelay.queue
13056                                 SET     owner = dest_usr, name = name || suffix
13057                                 WHERE   id = queue_row.id;
13058                         EXCEPTION WHEN unique_violation THEN
13059                                 suffix := suffix || ' ';
13060                                 CONTINUE;
13061                         END;
13062                         EXIT;
13063                 END LOOP;
13064         END LOOP;
13065
13066     -- money.*
13067     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13068     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13069     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13070     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13071     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13072
13073     -- action.*
13074     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13075     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13076     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13077
13078     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13079     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13080     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13081     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13082
13083     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13084     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13085     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13086     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13087     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13088
13089     -- acq.*
13090     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13091     UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13092
13093         -- transfer picklists the same way we transfer buckets (see above)
13094         FOR picklist_row in
13095                 SELECT id, name
13096                 FROM   acq.picklist
13097                 WHERE  owner = src_usr
13098         LOOP
13099                 suffix := ' (' || src_usr || ')';
13100                 LOOP
13101                         BEGIN
13102                                 UPDATE  acq.picklist
13103                                 SET     owner = dest_usr, name = name || suffix
13104                                 WHERE   id = picklist_row.id;
13105                         EXCEPTION WHEN unique_violation THEN
13106                                 suffix := suffix || ' ';
13107                                 CONTINUE;
13108                         END;
13109                         EXIT;
13110                 END LOOP;
13111         END LOOP;
13112
13113     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13114     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13115     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13116         UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13117         UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13118     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13119     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13120     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13121
13122     -- asset.*
13123     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13124     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13125     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13126     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13127     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13128     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13129
13130     -- serial.*
13131     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13132     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13133
13134     -- reporter.*
13135     -- It's not uncommon to define the reporter schema in a replica 
13136     -- DB only, so don't assume these tables exist in the write DB.
13137     BEGIN
13138         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13139     EXCEPTION WHEN undefined_table THEN
13140         -- do nothing
13141     END;
13142     BEGIN
13143         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13144     EXCEPTION WHEN undefined_table THEN
13145         -- do nothing
13146     END;
13147     BEGIN
13148         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13149     EXCEPTION WHEN undefined_table THEN
13150         -- do nothing
13151     END;
13152     BEGIN
13153                 -- transfer folders the same way we transfer buckets (see above)
13154                 FOR folder_row in
13155                         SELECT id, name
13156                         FROM   reporter.template_folder
13157                         WHERE  owner = src_usr
13158                 LOOP
13159                         suffix := ' (' || src_usr || ')';
13160                         LOOP
13161                                 BEGIN
13162                                         UPDATE  reporter.template_folder
13163                                         SET     owner = dest_usr, name = name || suffix
13164                                         WHERE   id = folder_row.id;
13165                                 EXCEPTION WHEN unique_violation THEN
13166                                         suffix := suffix || ' ';
13167                                         CONTINUE;
13168                                 END;
13169                                 EXIT;
13170                         END LOOP;
13171                 END LOOP;
13172     EXCEPTION WHEN undefined_table THEN
13173         -- do nothing
13174     END;
13175     BEGIN
13176                 -- transfer folders the same way we transfer buckets (see above)
13177                 FOR folder_row in
13178                         SELECT id, name
13179                         FROM   reporter.report_folder
13180                         WHERE  owner = src_usr
13181                 LOOP
13182                         suffix := ' (' || src_usr || ')';
13183                         LOOP
13184                                 BEGIN
13185                                         UPDATE  reporter.report_folder
13186                                         SET     owner = dest_usr, name = name || suffix
13187                                         WHERE   id = folder_row.id;
13188                                 EXCEPTION WHEN unique_violation THEN
13189                                         suffix := suffix || ' ';
13190                                         CONTINUE;
13191                                 END;
13192                                 EXIT;
13193                         END LOOP;
13194                 END LOOP;
13195     EXCEPTION WHEN undefined_table THEN
13196         -- do nothing
13197     END;
13198     BEGIN
13199                 -- transfer folders the same way we transfer buckets (see above)
13200                 FOR folder_row in
13201                         SELECT id, name
13202                         FROM   reporter.output_folder
13203                         WHERE  owner = src_usr
13204                 LOOP
13205                         suffix := ' (' || src_usr || ')';
13206                         LOOP
13207                                 BEGIN
13208                                         UPDATE  reporter.output_folder
13209                                         SET     owner = dest_usr, name = name || suffix
13210                                         WHERE   id = folder_row.id;
13211                                 EXCEPTION WHEN unique_violation THEN
13212                                         suffix := suffix || ' ';
13213                                         CONTINUE;
13214                                 END;
13215                                 EXIT;
13216                         END LOOP;
13217                 END LOOP;
13218     EXCEPTION WHEN undefined_table THEN
13219         -- do nothing
13220     END;
13221
13222     -- Finally, delete the source user
13223     DELETE FROM actor.usr WHERE id = src_usr;
13224
13225 END;
13226 $$ LANGUAGE plpgsql;
13227
13228 -- The "add" trigger functions should protect against existing NULLed values, just in case
13229 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13230 BEGIN
13231     IF NOT NEW.voided THEN
13232         UPDATE  money.materialized_billable_xact_summary
13233           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13234             last_billing_ts = NEW.billing_ts,
13235             last_billing_note = NEW.note,
13236             last_billing_type = NEW.billing_type,
13237             balance_owed = balance_owed + NEW.amount
13238           WHERE id = NEW.xact;
13239     END IF;
13240
13241     RETURN NEW;
13242 END;
13243 $$ LANGUAGE PLPGSQL;
13244
13245 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13246 BEGIN
13247     IF NOT NEW.voided THEN
13248         UPDATE  money.materialized_billable_xact_summary
13249           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13250             last_payment_ts = NEW.payment_ts,
13251             last_payment_note = NEW.note,
13252             last_payment_type = TG_ARGV[0],
13253             balance_owed = balance_owed - NEW.amount
13254           WHERE id = NEW.xact;
13255     END IF;
13256
13257     RETURN NEW;
13258 END;
13259 $$ LANGUAGE PLPGSQL;
13260
13261 -- Refresh the mat view with the corrected underlying view
13262 TRUNCATE money.materialized_billable_xact_summary;
13263 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13264
13265 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13266     user_id    IN INTEGER,
13267     perm_code  IN TEXT
13268 )
13269 RETURNS SETOF INTEGER AS $$
13270 --
13271 -- Return a set of all the org units for which a given user has a given
13272 -- permission, granted directly (not through inheritance from a parent
13273 -- org unit).
13274 --
13275 -- The permissions apply to a minimum depth of the org unit hierarchy,
13276 -- for the org unit(s) to which the user is assigned.  (They also apply
13277 -- to the subordinates of those org units, but we don't report the
13278 -- subordinates here.)
13279 --
13280 -- For purposes of this function, the permission.usr_work_ou_map table
13281 -- defines which users belong to which org units.  I.e. we ignore the
13282 -- home_ou column of actor.usr.
13283 --
13284 -- The result set may contain duplicates, which should be eliminated
13285 -- by a DISTINCT clause.
13286 --
13287 DECLARE
13288     b_super       BOOLEAN;
13289     n_perm        INTEGER;
13290     n_min_depth   INTEGER;
13291     n_work_ou     INTEGER;
13292     n_curr_ou     INTEGER;
13293     n_depth       INTEGER;
13294     n_curr_depth  INTEGER;
13295 BEGIN
13296     --
13297     -- Check for superuser
13298     --
13299     SELECT INTO b_super
13300         super_user
13301     FROM
13302         actor.usr
13303     WHERE
13304         id = user_id;
13305     --
13306     IF NOT FOUND THEN
13307         return;             -- No user?  No permissions.
13308     ELSIF b_super THEN
13309         --
13310         -- Super user has all permissions everywhere
13311         --
13312         FOR n_work_ou IN
13313             SELECT
13314                 id
13315             FROM
13316                 actor.org_unit
13317             WHERE
13318                 parent_ou IS NULL
13319         LOOP
13320             RETURN NEXT n_work_ou;
13321         END LOOP;
13322         RETURN;
13323     END IF;
13324     --
13325     -- Translate the permission name
13326     -- to a numeric permission id
13327     --
13328     SELECT INTO n_perm
13329         id
13330     FROM
13331         permission.perm_list
13332     WHERE
13333         code = perm_code;
13334     --
13335     IF NOT FOUND THEN
13336         RETURN;               -- No such permission
13337     END IF;
13338     --
13339     -- Find the highest-level org unit (i.e. the minimum depth)
13340     -- to which the permission is applied for this user
13341     --
13342     -- This query is modified from the one in permission.usr_perms().
13343     --
13344     SELECT INTO n_min_depth
13345         min( depth )
13346     FROM    (
13347         SELECT depth
13348           FROM permission.usr_perm_map upm
13349          WHERE upm.usr = user_id
13350            AND (upm.perm = n_perm OR upm.perm = -1)
13351                     UNION
13352         SELECT  gpm.depth
13353           FROM  permission.grp_perm_map gpm
13354           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13355             AND gpm.grp IN (
13356                SELECT   (permission.grp_ancestors(
13357                     (SELECT profile FROM actor.usr WHERE id = user_id)
13358                 )).id
13359             )
13360                     UNION
13361         SELECT  p.depth
13362           FROM  permission.grp_perm_map p
13363           WHERE (p.perm = n_perm OR p.perm = -1)
13364             AND p.grp IN (
13365                 SELECT (permission.grp_ancestors(m.grp)).id
13366                 FROM   permission.usr_grp_map m
13367                 WHERE  m.usr = user_id
13368             )
13369     ) AS x;
13370     --
13371     IF NOT FOUND THEN
13372         RETURN;                -- No such permission for this user
13373     END IF;
13374     --
13375     -- Identify the org units to which the user is assigned.  Note that
13376     -- we pay no attention to the home_ou column in actor.usr.
13377     --
13378     FOR n_work_ou IN
13379         SELECT
13380             work_ou
13381         FROM
13382             permission.usr_work_ou_map
13383         WHERE
13384             usr = user_id
13385     LOOP            -- For each org unit to which the user is assigned
13386         --
13387         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13388         -- We take it on faith that this depth agrees with the actual hierarchy
13389         -- defined in actor.org_unit.
13390         --
13391         SELECT INTO n_depth
13392             type.depth
13393         FROM
13394             actor.org_unit_type type
13395                 INNER JOIN actor.org_unit ou
13396                     ON ( ou.ou_type = type.id )
13397         WHERE
13398             ou.id = n_work_ou;
13399         --
13400         IF NOT FOUND THEN
13401             CONTINUE;        -- Maybe raise exception?
13402         END IF;
13403         --
13404         -- Compare the depth of the work org unit to the
13405         -- minimum depth, and branch accordingly
13406         --
13407         IF n_depth = n_min_depth THEN
13408             --
13409             -- The org unit is at the right depth, so return it.
13410             --
13411             RETURN NEXT n_work_ou;
13412         ELSIF n_depth > n_min_depth THEN
13413             --
13414             -- Traverse the org unit tree toward the root,
13415             -- until you reach the minimum depth determined above
13416             --
13417             n_curr_depth := n_depth;
13418             n_curr_ou := n_work_ou;
13419             WHILE n_curr_depth > n_min_depth LOOP
13420                 SELECT INTO n_curr_ou
13421                     parent_ou
13422                 FROM
13423                     actor.org_unit
13424                 WHERE
13425                     id = n_curr_ou;
13426                 --
13427                 IF FOUND THEN
13428                     n_curr_depth := n_curr_depth - 1;
13429                 ELSE
13430                     --
13431                     -- This can happen only if the hierarchy defined in
13432                     -- actor.org_unit is corrupted, or out of sync with
13433                     -- the depths defined in actor.org_unit_type.
13434                     -- Maybe we should raise an exception here, instead
13435                     -- of silently ignoring the problem.
13436                     --
13437                     n_curr_ou = NULL;
13438                     EXIT;
13439                 END IF;
13440             END LOOP;
13441             --
13442             IF n_curr_ou IS NOT NULL THEN
13443                 RETURN NEXT n_curr_ou;
13444             END IF;
13445         ELSE
13446             --
13447             -- The permission applies only at a depth greater than the work org unit.
13448             -- Use connectby() to find all dependent org units at the specified depth.
13449             --
13450             FOR n_curr_ou IN
13451                 SELECT ou::INTEGER
13452                 FROM connectby(
13453                         'actor.org_unit',         -- table name
13454                         'id',                     -- key column
13455                         'parent_ou',              -- recursive foreign key
13456                         n_work_ou::TEXT,          -- id of starting point
13457                         (n_min_depth - n_depth)   -- max depth to search, relative
13458                     )                             --   to starting point
13459                     AS t(
13460                         ou text,            -- dependent org unit
13461                         parent_ou text,     -- (ignore)
13462                         level int           -- depth relative to starting point
13463                     )
13464                 WHERE
13465                     level = n_min_depth - n_depth
13466             LOOP
13467                 RETURN NEXT n_curr_ou;
13468             END LOOP;
13469         END IF;
13470         --
13471     END LOOP;
13472     --
13473     RETURN;
13474     --
13475 END;
13476 $$ LANGUAGE 'plpgsql';
13477
13478 ALTER TABLE acq.purchase_order
13479         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13480                                             DEFERRABLE INITIALLY DEFERRED;
13481
13482 ALTER TABLE acq.acq_purchase_order_history
13483         ADD COLUMN cancel_reason INTEGER;
13484
13485 ALTER TABLE acq.purchase_order
13486         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13487
13488 ALTER TABLE acq.acq_purchase_order_history
13489         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13490
13491 ALTER TABLE acq.lineitem
13492         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13493                                             DEFERRABLE INITIALLY DEFERRED;
13494
13495 ALTER TABLE acq.acq_lineitem_history
13496         ADD COLUMN cancel_reason INTEGER;
13497
13498 ALTER TABLE acq.lineitem
13499         ADD COLUMN estimated_unit_price NUMERIC;
13500
13501 ALTER TABLE acq.acq_lineitem_history
13502         ADD COLUMN estimated_unit_price NUMERIC;
13503
13504 ALTER TABLE acq.lineitem
13505         ADD COLUMN claim_policy INT
13506                 REFERENCES acq.claim_policy
13507                 DEFERRABLE INITIALLY DEFERRED;
13508
13509 ALTER TABLE acq.acq_lineitem_history
13510         ADD COLUMN claim_policy INT
13511                 REFERENCES acq.claim_policy
13512                 DEFERRABLE INITIALLY DEFERRED;
13513
13514 ALTER TABLE acq.lineitem_detail
13515         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13516                                             DEFERRABLE INITIALLY DEFERRED;
13517
13518 ALTER TABLE acq.lineitem_detail
13519         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13520
13521 ALTER TABLE acq.lineitem_detail
13522         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13523                 ON DELETE CASCADE
13524                 DEFERRABLE INITIALLY DEFERRED;
13525
13526 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
13527
13528 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13529         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
13530
13531 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13532         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
13533
13534 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13535
13536     use MARC::Record;
13537     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13538     use strict;
13539
13540     my $target_xml = shift;
13541     my $source_xml = shift;
13542     my $field_spec = shift;
13543
13544     my $target_r = MARC::Record->new_from_xml( $target_xml );
13545     my $source_r = MARC::Record->new_from_xml( $source_xml );
13546
13547     return $target_xml unless ($target_r && $source_r);
13548
13549     my @field_list = split(',', $field_spec);
13550
13551     my %fields;
13552     for my $f (@field_list) {
13553         $f =~ s/^\s*//; $f =~ s/\s*$//;
13554         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13555             my $field = $1;
13556             $field =~ s/\s+//;
13557             my $sf = $2;
13558             $sf =~ s/\s+//;
13559             my $match = $3;
13560             $match =~ s/^\s*//; $match =~ s/\s*$//;
13561             $fields{$field} = { sf => [ split('', $sf) ] };
13562             if ($match) {
13563                 my ($msf,$mre) = split('~', $match);
13564                 if (length($msf) > 0 and length($mre) > 0) {
13565                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13566                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13567                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13568                 }
13569             }
13570         }
13571     }
13572
13573     for my $f ( keys %fields) {
13574         if ( @{$fields{$f}{sf}} ) {
13575             for my $from_field ($source_r->field( $f )) {
13576                 for my $to_field ($target_r->field( $f )) {
13577                     if (exists($fields{$f}{match})) {
13578                         next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13579                     }
13580                     my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
13581                     $to_field->add_subfields( @new_sf );
13582                 }
13583             }
13584         } else {
13585             my @new_fields = map { $_->clone } $source_r->field( $f );
13586             $target_r->insert_fields_ordered( @new_fields );
13587         }
13588     }
13589
13590     $target_xml = $target_r->as_xml_record;
13591     $target_xml =~ s/^<\?.+?\?>$//mo;
13592     $target_xml =~ s/\n//sgo;
13593     $target_xml =~ s/>\s+</></sgo;
13594
13595     return $target_xml;
13596
13597 $_$ LANGUAGE PLPERLU;
13598
13599 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13600
13601     use MARC::Record;
13602     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13603     use strict;
13604
13605     my $xml = shift;
13606     my $r = MARC::Record->new_from_xml( $xml );
13607
13608     return $xml unless ($r);
13609
13610     my $field_spec = shift;
13611     my @field_list = split(',', $field_spec);
13612
13613     my %fields;
13614     for my $f (@field_list) {
13615         $f =~ s/^\s*//; $f =~ s/\s*$//;
13616         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13617             my $field = $1;
13618             $field =~ s/\s+//;
13619             my $sf = $2;
13620             $sf =~ s/\s+//;
13621             my $match = $3;
13622             $match =~ s/^\s*//; $match =~ s/\s*$//;
13623             $fields{$field} = { sf => [ split('', $sf) ] };
13624             if ($match) {
13625                 my ($msf,$mre) = split('~', $match);
13626                 if (length($msf) > 0 and length($mre) > 0) {
13627                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13628                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13629                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13630                 }
13631             }
13632         }
13633     }
13634
13635     for my $f ( keys %fields) {
13636         for my $to_field ($r->field( $f )) {
13637             if (exists($fields{$f}{match})) {
13638                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13639             }
13640
13641             if ( @{$fields{$f}{sf}} ) {
13642                 $to_field->delete_subfield(code => $fields{$f}{sf});
13643             } else {
13644                 $r->delete_field( $to_field );
13645             }
13646         }
13647     }
13648
13649     $xml = $r->as_xml_record;
13650     $xml =~ s/^<\?.+?\?>$//mo;
13651     $xml =~ s/\n//sgo;
13652     $xml =~ s/>\s+</></sgo;
13653
13654     return $xml;
13655
13656 $_$ LANGUAGE PLPERLU;
13657
13658 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13659     SELECT vandelay.add_field( vandelay.strip_field( $1, $3), $2, $3 );
13660 $_$ LANGUAGE SQL;
13661
13662 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13663     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
13664 $_$ LANGUAGE SQL;
13665
13666 CREATE VIEW action.unfulfilled_hold_max_loop AS
13667         SELECT  hold,
13668                 max(count) AS max
13669         FROM    action.unfulfilled_hold_loops
13670         GROUP BY 1;
13671
13672 ALTER TABLE acq.lineitem_attr
13673         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
13674
13675 ALTER TABLE acq.lineitem_attr
13676         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13677                 ON DELETE CASCADE
13678                 DEFERRABLE INITIALLY DEFERRED;
13679
13680 ALTER TABLE acq.po_note
13681         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13682
13683 CREATE TABLE vandelay.merge_profile (
13684     id              BIGSERIAL   PRIMARY KEY,
13685     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
13686     name            TEXT        NOT NULL,
13687     add_spec        TEXT,
13688     replace_spec    TEXT,
13689     strip_spec      TEXT,
13690     preserve_spec   TEXT,
13691     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
13692     CONSTRAINT add_replace_strip_or_preserve CHECK ((preserve_spec IS NOT NULL OR replace_spec IS NOT NULL) OR (preserve_spec IS NULL AND replace_spec IS NULL))
13693 );
13694
13695 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
13696 DECLARE
13697     attr        RECORD;
13698     attr_def    RECORD;
13699     eg_rec      RECORD;
13700     id_value    TEXT;
13701     exact_id    BIGINT;
13702 BEGIN
13703
13704     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
13705
13706     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
13707
13708     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
13709         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
13710
13711         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
13712             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
13713             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
13714             IF exact_id IS NOT NULL THEN
13715                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
13716             END IF;
13717         END IF;
13718     END IF;
13719
13720     IF exact_id IS NULL THEN
13721         FOR attr IN SELECT a.* FROM vandelay.queued_bib_record_attr a JOIN vandelay.bib_attr_definition d ON (d.id = a.field) WHERE record = NEW.id AND d.ident IS TRUE LOOP
13722
13723             -- All numbers? check for an id match
13724             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
13725                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
13726                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
13727                 END LOOP;
13728             END IF;
13729
13730             -- Looks like an ISBN? check for an isbn match
13731             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
13732                 FOR eg_rec IN EXECUTE $$SELECT * FROM metabib.full_rec fr WHERE fr.value LIKE LOWER('$$ || attr.attr_value || $$%') AND fr.tag = '020' AND fr.subfield = 'a'$$ LOOP
13733                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
13734                     IF FOUND THEN
13735                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
13736                     END IF;
13737                 END LOOP;
13738
13739                 -- subcheck for isbn-as-tcn
13740                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
13741                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13742                 END LOOP;
13743             END IF;
13744
13745             -- check for an OCLC tcn_value match
13746             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
13747                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') AND deleted IS FALSE LOOP
13748                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13749                 END LOOP;
13750             END IF;
13751
13752             -- check for a direct tcn_value match
13753             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
13754                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13755             END LOOP;
13756
13757             -- check for a direct item barcode match
13758             FOR eg_rec IN
13759                     SELECT  DISTINCT b.*
13760                       FROM  biblio.record_entry b
13761                             JOIN asset.call_number cn ON (cn.record = b.id)
13762                             JOIN asset.copy cp ON (cp.call_number = cn.id)
13763                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
13764             LOOP
13765                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
13766             END LOOP;
13767
13768         END LOOP;
13769     END IF;
13770
13771     RETURN NULL;
13772 END;
13773 $func$ LANGUAGE PLPGSQL;
13774
13775 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_xml TEXT, source_xml TEXT, add_rule TEXT, replace_preserve_rule TEXT, strip_rule TEXT ) RETURNS TEXT AS $_$
13776     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
13777 $_$ LANGUAGE SQL;
13778
13779 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
13780 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
13781 DECLARE
13782     output              vandelay.compile_profile%ROWTYPE;
13783     profile             vandelay.merge_profile%ROWTYPE;
13784     profile_tmpl        TEXT;
13785     profile_tmpl_owner  TEXT;
13786     add_rule            TEXT := '';
13787     strip_rule          TEXT := '';
13788     replace_rule        TEXT := '';
13789     preserve_rule       TEXT := '';
13790
13791 BEGIN
13792
13793     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
13794     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
13795
13796     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
13797         SELECT  p.* INTO profile
13798           FROM  vandelay.merge_profile p
13799                 JOIN actor.org_unit u ON (u.id = p.owner)
13800           WHERE p.name = profile_tmpl
13801                 AND u.shortname = profile_tmpl_owner;
13802
13803         IF profile.id IS NOT NULL THEN
13804             add_rule := COALESCE(profile.add_spec,'');
13805             strip_rule := COALESCE(profile.strip_spec,'');
13806             replace_rule := COALESCE(profile.replace_spec,'');
13807             preserve_rule := COALESCE(profile.preserve_spec,'');
13808         END IF;
13809     END IF;
13810
13811     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),''),'');
13812     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),''),'');
13813     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),''),'');
13814     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),''),'');
13815
13816     output.add_rule := BTRIM(add_rule,',');
13817     output.replace_rule := BTRIM(replace_rule,',');
13818     output.strip_rule := BTRIM(strip_rule,',');
13819     output.preserve_rule := BTRIM(preserve_rule,',');
13820
13821     RETURN output;
13822 END;
13823 $_$ LANGUAGE PLPGSQL;
13824
13825 -- Template-based marc munging functions
13826 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13827 DECLARE
13828     merge_profile   vandelay.merge_profile%ROWTYPE;
13829     dyn_profile     vandelay.compile_profile%ROWTYPE;
13830     editor_string   TEXT;
13831     editor_id       INT;
13832     source_marc     TEXT;
13833     target_marc     TEXT;
13834     eg_marc         TEXT;
13835     replace_rule    TEXT;
13836     match_count     INT;
13837 BEGIN
13838
13839     SELECT  b.marc INTO eg_marc
13840       FROM  biblio.record_entry b
13841       WHERE b.id = eg_id
13842       LIMIT 1;
13843
13844     IF eg_marc IS NULL OR v_marc IS NULL THEN
13845         -- RAISE NOTICE 'no marc for template or bib record';
13846         RETURN FALSE;
13847     END IF;
13848
13849     dyn_profile := vandelay.compile_profile( v_marc );
13850
13851     IF merge_profile_id IS NOT NULL THEN
13852         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
13853         IF FOUND THEN
13854             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
13855             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
13856             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
13857             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
13858         END IF;
13859     END IF;
13860
13861     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
13862         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
13863         RETURN FALSE;
13864     END IF;
13865
13866     IF dyn_profile.replace_rule <> '' THEN
13867         source_marc = v_marc;
13868         target_marc = eg_marc;
13869         replace_rule = dyn_profile.replace_rule;
13870     ELSE
13871         source_marc = eg_marc;
13872         target_marc = v_marc;
13873         replace_rule = dyn_profile.preserve_rule;
13874     END IF;
13875
13876     UPDATE  biblio.record_entry
13877       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
13878       WHERE id = eg_id;
13879
13880     IF NOT FOUND THEN
13881         -- RAISE NOTICE 'update of biblio.record_entry failed';
13882         RETURN FALSE;
13883     END IF;
13884
13885     RETURN TRUE;
13886
13887 END;
13888 $$ LANGUAGE PLPGSQL;
13889
13890 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
13891     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
13892 $$ LANGUAGE SQL;
13893
13894 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13895 DECLARE
13896     merge_profile   vandelay.merge_profile%ROWTYPE;
13897     dyn_profile     vandelay.compile_profile%ROWTYPE;
13898     editor_string   TEXT;
13899     editor_id       INT;
13900     source_marc     TEXT;
13901     target_marc     TEXT;
13902     eg_marc         TEXT;
13903     v_marc          TEXT;
13904     replace_rule    TEXT;
13905     match_count     INT;
13906 BEGIN
13907
13908     SELECT  q.marc INTO v_marc
13909       FROM  vandelay.queued_record q
13910             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
13911       LIMIT 1;
13912
13913     IF v_marc IS NULL THEN
13914         -- RAISE NOTICE 'no marc for vandelay or bib record';
13915         RETURN FALSE;
13916     END IF;
13917
13918     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
13919         UPDATE  vandelay.queued_bib_record
13920           SET   imported_as = eg_id,
13921                 import_time = NOW()
13922           WHERE id = import_id;
13923
13924         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
13925
13926         IF editor_string IS NOT NULL AND editor_string <> '' THEN
13927             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
13928
13929             IF editor_id IS NULL THEN
13930                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
13931             END IF;
13932
13933             IF editor_id IS NOT NULL THEN
13934                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
13935             END IF;
13936         END IF;
13937
13938         RETURN TRUE;
13939     END IF;
13940
13941     -- RAISE NOTICE 'update of biblio.record_entry failed';
13942
13943     RETURN FALSE;
13944
13945 END;
13946 $$ LANGUAGE PLPGSQL;
13947
13948 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13949 DECLARE
13950     eg_id           BIGINT;
13951     match_count     INT;
13952     match_attr      vandelay.bib_attr_definition%ROWTYPE;
13953 BEGIN
13954
13955     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
13956
13957     IF FOUND THEN
13958         -- RAISE NOTICE 'already imported, cannot auto-overlay'
13959         RETURN FALSE;
13960     END IF;
13961
13962     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
13963
13964     IF match_count <> 1 THEN
13965         -- RAISE NOTICE 'not an exact match';
13966         RETURN FALSE;
13967     END IF;
13968
13969     SELECT  d.* INTO match_attr
13970       FROM  vandelay.bib_attr_definition d
13971             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
13972             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
13973       WHERE m.queued_record = import_id;
13974
13975     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
13976         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
13977         RETURN FALSE;
13978     END IF;
13979
13980     SELECT  m.eg_record INTO eg_id
13981       FROM  vandelay.bib_match m
13982       WHERE m.queued_record = import_id
13983       LIMIT 1;
13984
13985     IF eg_id IS NULL THEN
13986         RETURN FALSE;
13987     END IF;
13988
13989     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
13990 END;
13991 $$ LANGUAGE PLPGSQL;
13992
13993 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
13994 DECLARE
13995     queued_record   vandelay.queued_bib_record%ROWTYPE;
13996 BEGIN
13997
13998     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
13999
14000         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
14001             RETURN NEXT queued_record.id;
14002         END IF;
14003
14004     END LOOP;
14005
14006     RETURN;
14007
14008 END;
14009 $$ LANGUAGE PLPGSQL;
14010
14011 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14012     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
14013 $$ LANGUAGE SQL;
14014
14015 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14016 DECLARE
14017     merge_profile   vandelay.merge_profile%ROWTYPE;
14018     dyn_profile     vandelay.compile_profile%ROWTYPE;
14019     source_marc     TEXT;
14020     target_marc     TEXT;
14021     eg_marc         TEXT;
14022     v_marc          TEXT;
14023     replace_rule    TEXT;
14024     match_count     INT;
14025 BEGIN
14026
14027     SELECT  b.marc INTO eg_marc
14028       FROM  authority.record_entry b
14029             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
14030       LIMIT 1;
14031
14032     SELECT  q.marc INTO v_marc
14033       FROM  vandelay.queued_record q
14034             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
14035       LIMIT 1;
14036
14037     IF eg_marc IS NULL OR v_marc IS NULL THEN
14038         -- RAISE NOTICE 'no marc for vandelay or authority record';
14039         RETURN FALSE;
14040     END IF;
14041
14042     dyn_profile := vandelay.compile_profile( v_marc );
14043
14044     IF merge_profile_id IS NOT NULL THEN
14045         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14046         IF FOUND THEN
14047             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14048             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14049             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14050             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14051         END IF;
14052     END IF;
14053
14054     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14055         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14056         RETURN FALSE;
14057     END IF;
14058
14059     IF dyn_profile.replace_rule <> '' THEN
14060         source_marc = v_marc;
14061         target_marc = eg_marc;
14062         replace_rule = dyn_profile.replace_rule;
14063     ELSE
14064         source_marc = eg_marc;
14065         target_marc = v_marc;
14066         replace_rule = dyn_profile.preserve_rule;
14067     END IF;
14068
14069     UPDATE  authority.record_entry
14070       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14071       WHERE id = eg_id;
14072
14073     IF FOUND THEN
14074         UPDATE  vandelay.queued_authority_record
14075           SET   imported_as = eg_id,
14076                 import_time = NOW()
14077           WHERE id = import_id;
14078         RETURN TRUE;
14079     END IF;
14080
14081     -- RAISE NOTICE 'update of authority.record_entry failed';
14082
14083     RETURN FALSE;
14084
14085 END;
14086 $$ LANGUAGE PLPGSQL;
14087
14088 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14089 DECLARE
14090     eg_id           BIGINT;
14091     match_count     INT;
14092 BEGIN
14093     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14094
14095     IF match_count <> 1 THEN
14096         -- RAISE NOTICE 'not an exact match';
14097         RETURN FALSE;
14098     END IF;
14099
14100     SELECT  m.eg_record INTO eg_id
14101       FROM  vandelay.authority_match m
14102       WHERE m.queued_record = import_id
14103       LIMIT 1;
14104
14105     IF eg_id IS NULL THEN
14106         RETURN FALSE;
14107     END IF;
14108
14109     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14110 END;
14111 $$ LANGUAGE PLPGSQL;
14112
14113 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14114 DECLARE
14115     queued_record   vandelay.queued_authority_record%ROWTYPE;
14116 BEGIN
14117
14118     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14119
14120         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14121             RETURN NEXT queued_record.id;
14122         END IF;
14123
14124     END LOOP;
14125
14126     RETURN;
14127
14128 END;
14129 $$ LANGUAGE PLPGSQL;
14130
14131 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14132     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14133 $$ LANGUAGE SQL;
14134
14135 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14136 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14137 DECLARE
14138     eg_tcn          TEXT;
14139     eg_tcn_source   TEXT;
14140     output          vandelay.tcn_data%ROWTYPE;
14141 BEGIN
14142
14143     -- 001/003
14144     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14145     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14146
14147         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14148         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14149             eg_tcn_source := 'System Local';
14150         END IF;
14151
14152         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14153
14154         IF NOT FOUND THEN
14155             output.used := FALSE;
14156         ELSE
14157             output.used := TRUE;
14158         END IF;
14159
14160         output.tcn := eg_tcn;
14161         output.tcn_source := eg_tcn_source;
14162         RETURN NEXT output;
14163
14164     END IF;
14165
14166     -- 901 ab
14167     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14168     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14169
14170         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14171         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14172             eg_tcn_source := 'System Local';
14173         END IF;
14174
14175         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14176
14177         IF NOT FOUND THEN
14178             output.used := FALSE;
14179         ELSE
14180             output.used := TRUE;
14181         END IF;
14182
14183         output.tcn := eg_tcn;
14184         output.tcn_source := eg_tcn_source;
14185         RETURN NEXT output;
14186
14187     END IF;
14188
14189     -- 039 ab
14190     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14191     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14192
14193         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14194         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14195             eg_tcn_source := 'System Local';
14196         END IF;
14197
14198         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14199
14200         IF NOT FOUND THEN
14201             output.used := FALSE;
14202         ELSE
14203             output.used := TRUE;
14204         END IF;
14205
14206         output.tcn := eg_tcn;
14207         output.tcn_source := eg_tcn_source;
14208         RETURN NEXT output;
14209
14210     END IF;
14211
14212     -- 020 a
14213     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14214     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14215
14216         eg_tcn_source := 'ISBN';
14217
14218         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14219
14220         IF NOT FOUND THEN
14221             output.used := FALSE;
14222         ELSE
14223             output.used := TRUE;
14224         END IF;
14225
14226         output.tcn := eg_tcn;
14227         output.tcn_source := eg_tcn_source;
14228         RETURN NEXT output;
14229
14230     END IF;
14231
14232     -- 022 a
14233     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14234     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14235
14236         eg_tcn_source := 'ISSN';
14237
14238         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14239
14240         IF NOT FOUND THEN
14241             output.used := FALSE;
14242         ELSE
14243             output.used := TRUE;
14244         END IF;
14245
14246         output.tcn := eg_tcn;
14247         output.tcn_source := eg_tcn_source;
14248         RETURN NEXT output;
14249
14250     END IF;
14251
14252     -- 010 a
14253     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14254     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14255
14256         eg_tcn_source := 'LCCN';
14257
14258         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14259
14260         IF NOT FOUND THEN
14261             output.used := FALSE;
14262         ELSE
14263             output.used := TRUE;
14264         END IF;
14265
14266         output.tcn := eg_tcn;
14267         output.tcn_source := eg_tcn_source;
14268         RETURN NEXT output;
14269
14270     END IF;
14271
14272     -- 035 a
14273     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14274     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14275
14276         eg_tcn_source := 'System Legacy';
14277
14278         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14279
14280         IF NOT FOUND THEN
14281             output.used := FALSE;
14282         ELSE
14283             output.used := TRUE;
14284         END IF;
14285
14286         output.tcn := eg_tcn;
14287         output.tcn_source := eg_tcn_source;
14288         RETURN NEXT output;
14289
14290     END IF;
14291
14292     RETURN;
14293 END;
14294 $_$ LANGUAGE PLPGSQL;
14295
14296 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14297
14298 CREATE OR REPLACE RULE protect_bib_rec_delete AS ON DELETE TO biblio.record_entry DO INSTEAD (UPDATE biblio.record_entry SET deleted = TRUE WHERE OLD.id = biblio.record_entry.id; DELETE FROM metabib.metarecord_source_map WHERE source = OLD.id);
14299
14300 UPDATE biblio.record_entry SET marc = '<record xmlns="http://www.loc.gov/MARC21/slim"/>' WHERE id = -1;
14301
14302 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14303 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14304 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14305 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14306 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14307
14308 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14309 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14310 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14311 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14312
14313 ALTER TABLE metabib.series_field_entry
14314         ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source)
14315                 REFERENCES biblio.record_entry (id)
14316                 ON DELETE CASCADE
14317                 DEFERRABLE INITIALLY DEFERRED;
14318
14319 ALTER TABLE metabib.series_field_entry
14320         ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field)
14321                 REFERENCES config.metabib_field (id)
14322                 ON DELETE CASCADE
14323                 DEFERRABLE INITIALLY DEFERRED;
14324
14325 CREATE TABLE acq.claim_policy_action (
14326         id              SERIAL       PRIMARY KEY,
14327         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14328                                  ON DELETE CASCADE
14329                                      DEFERRABLE INITIALLY DEFERRED,
14330         action_interval INTERVAL     NOT NULL,
14331         action          INT          NOT NULL REFERENCES acq.claim_event_type
14332                                      DEFERRABLE INITIALLY DEFERRED,
14333         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14334 );
14335
14336 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14337 DECLARE
14338     value       TEXT;
14339     atype       TEXT;
14340     prov        INT;
14341     pos         INT;
14342     adef        RECORD;
14343     xpath_string    TEXT;
14344 BEGIN
14345     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14346  
14347         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14348  
14349         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14350             IF (atype = 'lineitem_provider_attr_definition') THEN
14351                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14352                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14353             END IF;
14354  
14355             IF (atype = 'lineitem_provider_attr_definition') THEN
14356                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14357             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14358                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14359             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14360                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14361             END IF;
14362  
14363             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14364  
14365             pos := 1;
14366  
14367             LOOP
14368                 SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14369  
14370                 IF (value IS NOT NULL AND value <> '') THEN
14371                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14372                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14373                 ELSE
14374                     EXIT;
14375                 END IF;
14376  
14377                 pos := pos + 1;
14378             END LOOP;
14379  
14380         END IF;
14381  
14382     END LOOP;
14383  
14384     RETURN NULL;
14385 END;
14386 $function$ LANGUAGE PLPGSQL;
14387
14388 UPDATE config.metabib_field SET label = name;
14389 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14390
14391 ALTER TABLE config.metabib_field ADD CONSTRAINT field_class_fkey FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14392
14393 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14394
14395 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14396
14397 CREATE TABLE config.metabib_search_alias (
14398     alias       TEXT    PRIMARY KEY,
14399     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14400     field       INT     REFERENCES config.metabib_field (id)
14401 );
14402
14403 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14404 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14405 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14406 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14407 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14408 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14409 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14410 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14411
14412 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14413 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14414 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14415 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14416 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14417 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14418 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14419 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14420 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14421 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14422 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14423 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14424 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14425
14426 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14427 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14428 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14429 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14430 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14431 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14432 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14433 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14434
14435 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14436 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14437 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14438 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14439 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14440 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
14441
14442 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14443 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14444 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14445
14446 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14447 UPDATE config.metabib_field SET xpath=$$//mods32:mods/mods32:name[@type='corporate' and mods32:role/mods32:roleTerm[text()='creator']]$$, facet_field=TRUE, facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 7;
14448 UPDATE config.metabib_field SET xpath=$$//mods32:mods/mods32:name[@type='personal' and mods32:role/mods32:roleTerm[text()='creator']]$$, facet_field=TRUE, facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 8;
14449 UPDATE config.metabib_field SET xpath=$$//mods32:mods/mods32:name[@type='conference' and mods32:role/mods32:roleTerm[text()='creator']]$$, facet_field=TRUE, facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 9;
14450 UPDATE config.metabib_field SET xpath=$$//mods32:mods/mods32:name[@type='personal' and not(mods32:role)]$$, facet_field=TRUE, facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 10;
14451
14452 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14453 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14454 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14455 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14456
14457 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14458 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14459 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14460 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14461 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14462 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14463 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14464 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14465 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14466 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14467 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14468 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14469 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14470 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14471
14472 CREATE TABLE asset.opac_visible_copies (
14473   id        BIGINT primary key, -- copy id
14474   record    BIGINT,
14475   circ_lib  INTEGER
14476 );
14477 COMMENT ON TABLE asset.opac_visible_copies IS $$
14478 Materialized view of copies that are visible in the OPAC, used by
14479 search.query_parser_fts() to speed up OPAC visibility checks on large
14480 databases.  Contents are maintained by a set of triggers.
14481 $$;
14482 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
14483
14484 CREATE OR REPLACE FUNCTION search.query_parser_fts (
14485
14486     param_search_ou INT,
14487     param_depth     INT,
14488     param_query     TEXT,
14489     param_statuses  INT[],
14490     param_locations INT[],
14491     param_offset    INT,
14492     param_check     INT,
14493     param_limit     INT,
14494     metarecord      BOOL,
14495     staff           BOOL
14496  
14497 ) RETURNS SETOF search.search_result AS $func$
14498 DECLARE
14499
14500     current_res         search.search_result%ROWTYPE;
14501     search_org_list     INT[];
14502
14503     check_limit         INT;
14504     core_limit          INT;
14505     core_offset         INT;
14506     tmp_int             INT;
14507
14508     core_result         RECORD;
14509     core_cursor         REFCURSOR;
14510     core_rel_query      TEXT;
14511
14512     total_count         INT := 0;
14513     check_count         INT := 0;
14514     deleted_count       INT := 0;
14515     visible_count       INT := 0;
14516     excluded_count      INT := 0;
14517
14518 BEGIN
14519
14520     check_limit := COALESCE( param_check, 1000 );
14521     core_limit  := COALESCE( param_limit, 25000 );
14522     core_offset := COALESCE( param_offset, 0 );
14523
14524     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
14525
14526     IF param_search_ou > 0 THEN
14527         IF param_depth IS NOT NULL THEN
14528             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
14529         ELSE
14530             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
14531         END IF;
14532     ELSIF param_search_ou < 0 THEN
14533         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
14534     ELSIF param_search_ou = 0 THEN
14535         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
14536     END IF;
14537
14538     OPEN core_cursor FOR EXECUTE param_query;
14539
14540     LOOP
14541
14542         FETCH core_cursor INTO core_result;
14543         EXIT WHEN NOT FOUND;
14544         EXIT WHEN total_count >= core_limit;
14545
14546         total_count := total_count + 1;
14547
14548         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
14549
14550         check_count := check_count + 1;
14551
14552         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14553         IF NOT FOUND THEN
14554             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
14555             deleted_count := deleted_count + 1;
14556             CONTINUE;
14557         END IF;
14558
14559         PERFORM 1
14560           FROM  biblio.record_entry b
14561                 JOIN config.bib_source s ON (b.source = s.id)
14562           WHERE s.transcendant
14563                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14564
14565         IF FOUND THEN
14566             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
14567             visible_count := visible_count + 1;
14568
14569             current_res.id = core_result.id;
14570             current_res.rel = core_result.rel;
14571
14572             tmp_int := 1;
14573             IF metarecord THEN
14574                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14575             END IF;
14576
14577             IF tmp_int = 1 THEN
14578                 current_res.record = core_result.records[1];
14579             ELSE
14580                 current_res.record = NULL;
14581             END IF;
14582
14583             RETURN NEXT current_res;
14584
14585             CONTINUE;
14586         END IF;
14587
14588         PERFORM 1
14589           FROM  asset.call_number cn
14590                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
14591                 JOIN asset.uri uri ON (map.uri = uri.id)
14592           WHERE NOT cn.deleted
14593                 AND cn.label = '##URI##'
14594                 AND uri.active
14595                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
14596                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14597                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14598           LIMIT 1;
14599
14600         IF FOUND THEN
14601             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
14602             visible_count := visible_count + 1;
14603
14604             current_res.id = core_result.id;
14605             current_res.rel = core_result.rel;
14606
14607             tmp_int := 1;
14608             IF metarecord THEN
14609                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14610             END IF;
14611
14612             IF tmp_int = 1 THEN
14613                 current_res.record = core_result.records[1];
14614             ELSE
14615                 current_res.record = NULL;
14616             END IF;
14617
14618             RETURN NEXT current_res;
14619
14620             CONTINUE;
14621         END IF;
14622
14623         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
14624
14625             PERFORM 1
14626               FROM  asset.call_number cn
14627                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14628               WHERE NOT cn.deleted
14629                     AND NOT cp.deleted
14630                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
14631                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14632                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14633               LIMIT 1;
14634
14635             IF NOT FOUND THEN
14636                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
14637                 excluded_count := excluded_count + 1;
14638                 CONTINUE;
14639             END IF;
14640
14641         END IF;
14642
14643         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
14644
14645             PERFORM 1
14646               FROM  asset.call_number cn
14647                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14648               WHERE NOT cn.deleted
14649                     AND NOT cp.deleted
14650                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
14651                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14652                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14653               LIMIT 1;
14654
14655             IF NOT FOUND THEN
14656                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
14657                 excluded_count := excluded_count + 1;
14658                 CONTINUE;
14659             END IF;
14660
14661         END IF;
14662
14663         IF staff IS NULL OR NOT staff THEN
14664
14665             PERFORM 1
14666               FROM  asset.opac_visible_copies
14667               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14668                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14669               LIMIT 1;
14670
14671             IF NOT FOUND THEN
14672                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14673                 excluded_count := excluded_count + 1;
14674                 CONTINUE;
14675             END IF;
14676
14677         ELSE
14678
14679             PERFORM 1
14680               FROM  asset.call_number cn
14681                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14682                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
14683               WHERE NOT cn.deleted
14684                     AND NOT cp.deleted
14685                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14686                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14687               LIMIT 1;
14688
14689             IF NOT FOUND THEN
14690
14691                 PERFORM 1
14692                   FROM  asset.call_number cn
14693                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14694                   LIMIT 1;
14695
14696                 IF FOUND THEN
14697                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14698                     excluded_count := excluded_count + 1;
14699                     CONTINUE;
14700                 END IF;
14701
14702             END IF;
14703
14704         END IF;
14705
14706         visible_count := visible_count + 1;
14707
14708         current_res.id = core_result.id;
14709         current_res.rel = core_result.rel;
14710
14711         tmp_int := 1;
14712         IF metarecord THEN
14713             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14714         END IF;
14715
14716         IF tmp_int = 1 THEN
14717             current_res.record = core_result.records[1];
14718         ELSE
14719             current_res.record = NULL;
14720         END IF;
14721
14722         RETURN NEXT current_res;
14723
14724         IF visible_count % 1000 = 0 THEN
14725             -- RAISE NOTICE ' % visible so far ... ', visible_count;
14726         END IF;
14727
14728     END LOOP;
14729
14730     current_res.id = NULL;
14731     current_res.rel = NULL;
14732     current_res.record = NULL;
14733     current_res.total = total_count;
14734     current_res.checked = check_count;
14735     current_res.deleted = deleted_count;
14736     current_res.visible = visible_count;
14737     current_res.excluded = excluded_count;
14738
14739     CLOSE core_cursor;
14740
14741     RETURN NEXT current_res;
14742
14743 END;
14744 $func$ LANGUAGE PLPGSQL;
14745
14746 ALTER TABLE biblio.record_entry ADD COLUMN owner INT REFERENCES actor.org_unit (id);
14747 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
14748
14749 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
14750 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
14751
14752 DROP VIEW auditor.biblio_record_entry_lifecycle;
14753
14754 SELECT auditor.create_auditor_lifecycle( 'biblio', 'record_entry' );
14755
14756 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
14757         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
14758 $$ LANGUAGE SQL STRICT IMMUTABLE;
14759
14760 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
14761     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
14762 $$ LANGUAGE SQL STRICT IMMUTABLE;
14763
14764 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
14765     return lc(shift);
14766 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14767
14768 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
14769     return uc(shift);
14770 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14771
14772 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
14773     use Unicode::Normalize;
14774
14775     my $x = NFD(shift);
14776     $x =~ s/\pM+//go;
14777     return $x;
14778
14779 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14780
14781 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
14782     use Unicode::Normalize;
14783
14784     my $x = NFC(shift);
14785     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
14786     return $x;
14787
14788 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14789
14790 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
14791 DECLARE
14792     setting RECORD;
14793     cur_org INT;
14794 BEGIN
14795     cur_org := org_id;
14796     LOOP
14797         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
14798         IF FOUND THEN
14799             RETURN NEXT setting;
14800         END IF;
14801         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
14802         EXIT WHEN cur_org IS NULL;
14803     END LOOP;
14804     RETURN;
14805 END;
14806 $$ LANGUAGE plpgsql STABLE;
14807
14808 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
14809 DECLARE
14810     counter INT;
14811     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
14812 BEGIN
14813
14814     SELECT  COUNT(*) INTO counter
14815       FROM  oils_xpath_table(
14816                 'id',
14817                 'marc',
14818                 'acq.lineitem',
14819                 '//*[@tag="' || tag || '"]',
14820                 'id=' || lineitem
14821             ) as t(i int,c text);
14822
14823     FOR i IN 1 .. counter LOOP
14824         FOR lida IN
14825             SELECT  *
14826               FROM  (   SELECT  id,i,t,v
14827                           FROM  oils_xpath_table(
14828                                     'id',
14829                                     'marc',
14830                                     'acq.lineitem',
14831                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
14832                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
14833                                     'id=' || lineitem
14834                                 ) as t(id int,t text,v text)
14835                     )x
14836         LOOP
14837             RETURN NEXT lida;
14838         END LOOP;
14839     END LOOP;
14840
14841     RETURN;
14842 END;
14843 $$ LANGUAGE PLPGSQL;
14844
14845 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
14846 DECLARE
14847     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
14848     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
14849     result      config.i18n_core%ROWTYPE;
14850     fallback    TEXT;
14851     keyfield    TEXT := keyclass || '.' || keycol;
14852 BEGIN
14853
14854     -- Try the full locale
14855     SELECT  * INTO result
14856       FROM  config.i18n_core
14857       WHERE fq_field = keyfield
14858             AND identity_value = keyvalue
14859             AND translation = locale;
14860
14861     -- Try just the language
14862     IF NOT FOUND THEN
14863         SELECT  * INTO result
14864           FROM  config.i18n_core
14865           WHERE fq_field = keyfield
14866                 AND identity_value = keyvalue
14867                 AND translation = language;
14868     END IF;
14869
14870     -- Fall back to the string we passed in in the first place
14871     IF NOT FOUND THEN
14872     EXECUTE
14873             'SELECT ' ||
14874                 keycol ||
14875             ' FROM ' || keytable ||
14876             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
14877                 INTO fallback;
14878         RETURN fallback;
14879     END IF;
14880
14881     RETURN result.string;
14882 END;
14883 $func$ LANGUAGE PLPGSQL STABLE;
14884
14885 SELECT auditor.create_auditor ( 'acq', 'invoice' );
14886
14887 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
14888
14889 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
14890
14891 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
14892     3, 1, 'delivered_but_lost',
14893     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
14894
14895 CREATE TABLE config.global_flag (
14896     label   TEXT    NOT NULL
14897 ) INHERITS (config.internal_flag);
14898 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
14899
14900 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
14901     VALUES (
14902         'cat.bib.use_id_for_tcn',
14903         oils_i18n_gettext(
14904             'cat.bib.use_id_for_tcn',
14905             'Cat: Use Internal ID for TCN Value',
14906             'cgf', 
14907             'label'
14908         )
14909     );
14910
14911 -- resolves performance issue noted by EG Indiana
14912
14913 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
14914
14915 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
14916
14917 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14918     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
14919 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14920     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14921 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14922     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14923 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14924     (20, 'identifier', 'upc', oils_i18n_gettext(20, 'UPC', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="024" and ind1="1"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14925 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14926     (21, 'identifier', 'ismn', oils_i18n_gettext(21, 'ISMN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="024" and ind1="2"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14927 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14928     (22, 'identifier', 'ean', oils_i18n_gettext(22, 'EAN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="024" and ind1="3"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14929 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14930     (23, 'identifier', 'isrc', oils_i18n_gettext(23, 'ISRC', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="024" and ind1="0"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14931 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14932     (24, 'identifier', 'sici', oils_i18n_gettext(24, 'SICI', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="024" and ind1="4"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14933 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14934     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
14935
14936 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
14937  
14938
14939 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
14940
14941 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
14942 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
14943 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
14944 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
14945 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
14946 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
14947
14948 CREATE TABLE metabib.identifier_field_entry (
14949         id              BIGSERIAL       PRIMARY KEY,
14950         source          BIGINT          NOT NULL,
14951         field           INT             NOT NULL,
14952         value           TEXT            NOT NULL,
14953         index_vector    tsvector        NOT NULL
14954 );
14955 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
14956         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
14957         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
14958
14959 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
14960 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
14961     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14962 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
14963
14964 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
14965     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
14966 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
14967     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
14968
14969 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
14970     use Business::ISBN;
14971     use strict;
14972     use warnings;
14973
14974     # For each ISBN found in a single string containing a set of ISBNs:
14975     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
14976     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
14977
14978     my $input = shift;
14979     my $output = '';
14980
14981     foreach my $word (split(/\s/, $input)) {
14982         my $isbn = Business::ISBN->new($word);
14983
14984         # First check the checksum; if it is not valid, fix it and add the original
14985         # bad-checksum ISBN to the output
14986         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
14987             $output .= $isbn->isbn() . " ";
14988             $isbn->fix_checksum();
14989         }
14990
14991         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
14992         # and add the normalized original ISBN to the output
14993         if ($isbn && $isbn->is_valid()) {
14994             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
14995             $output .= $isbn->isbn . " ";
14996
14997             # If we successfully converted the ISBN to its counterpart, add the
14998             # converted ISBN to the output as well
14999             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
15000         }
15001     }
15002     return $output if $output;
15003
15004     # If there were no valid ISBNs, just return the raw input
15005     return $input;
15006 $func$ LANGUAGE PLPERLU;
15007
15008 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
15009 /*
15010  * Copyright (C) 2010 Merrimack Valley Library Consortium
15011  * Jason Stephenson <jstephenson@mvlc.org>
15012  * Copyright (C) 2010 Laurentian University
15013  * Dan Scott <dscott@laurentian.ca>
15014  *
15015  * The translate_isbn1013 function takes an input ISBN and returns the
15016  * following in a single space-delimited string if the input ISBN is valid:
15017  *   - The normalized input ISBN (hyphens stripped)
15018  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
15019  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
15020  */
15021 $$;
15022
15023 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
15024 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
15025 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
15026 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
15027 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
15028 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
15029
15030 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15031         'ISBN 10/13 conversion',
15032         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
15033         'translate_isbn1013',
15034         0
15035 );
15036
15037 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15038         'Replace',
15039         'Replace all occurances of first parameter in the string with the second parameter.',
15040         'replace',
15041         2
15042 );
15043
15044 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15045     SELECT  m.id, i.id, 1
15046       FROM  config.metabib_field m,
15047             config.index_normalizer i
15048       WHERE i.func IN ('first_word')
15049             AND m.id IN (18);
15050
15051 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15052     SELECT  m.id, i.id, 2
15053       FROM  config.metabib_field m,
15054             config.index_normalizer i
15055       WHERE i.func IN ('translate_isbn1013')
15056             AND m.id IN (18);
15057
15058 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15059     SELECT  m.id, i.id, $$['-','']$$
15060       FROM  config.metabib_field m,
15061             config.index_normalizer i
15062       WHERE i.func IN ('replace')
15063             AND m.id IN (19);
15064
15065 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15066     SELECT  m.id, i.id, $$[' ','']$$
15067       FROM  config.metabib_field m,
15068             config.index_normalizer i
15069       WHERE i.func IN ('replace')
15070             AND m.id IN (19);
15071
15072 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15073
15074 UPDATE  config.metabib_field_index_norm_map
15075   SET   params = REPLACE(params,E'\'','"')
15076   WHERE params IS NOT NULL AND params <> '';
15077
15078 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15079
15080 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15081
15082 ALTER TABLE config.circ_modifier
15083         ADD COLUMN avg_wait_time INTERVAL;
15084
15085 --CREATE TABLE actor.usr_password_reset (
15086 --  id SERIAL PRIMARY KEY,
15087 --  uuid TEXT NOT NULL, 
15088 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15089 --  request_time TIMESTAMP NOT NULL DEFAULT NOW(), 
15090 --  has_been_reset BOOL NOT NULL DEFAULT false
15091 --);
15092 --COMMENT ON TABLE actor.usr_password_reset IS $$
15093 --/*
15094 -- * Copyright (C) 2010 Laurentian University
15095 -- * Dan Scott <dscott@laurentian.ca>
15096 -- *
15097 -- * Self-serve password reset requests
15098 -- *
15099 -- * ****
15100 -- *
15101 -- * This program is free software; you can redistribute it and/or
15102 -- * modify it under the terms of the GNU General Public License
15103 -- * as published by the Free Software Foundation; either version 2
15104 -- * of the License, or (at your option) any later version.
15105 -- *
15106 -- * This program is distributed in the hope that it will be useful,
15107 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15108 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15109 -- * GNU General Public License for more details.
15110 -- */
15111 --$$;
15112 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15113 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15114 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15115 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15116
15117 -- Use the identifier search class tsconfig
15118 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15119 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15120     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15121     FOR EACH ROW
15122     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15123
15124 INSERT INTO config.global_flag (name,label,enabled)
15125     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15126 INSERT INTO config.global_flag (name,label,enabled)
15127     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15128
15129 -- turn a JSON scalar into an SQL TEXT value
15130 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15131     use JSON::XS;                    
15132     my $json = shift();
15133     my $txt;
15134     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15135     return undef if ($@);
15136     return $txt
15137 $f$ LANGUAGE PLPERLU;
15138
15139 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15140 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15141 DECLARE
15142     c               action.circulation%ROWTYPE;
15143     view_age        INTERVAL;
15144     usr_view_age    actor.usr_setting%ROWTYPE;
15145     usr_view_start  actor.usr_setting%ROWTYPE;
15146 BEGIN
15147     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15148     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15149
15150     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15151         -- User opted in and supplied a retention age
15152         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15153             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15154         ELSE
15155             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15156         END IF;
15157     ELSIF usr_view_start.value IS NOT NULL THEN
15158         -- User opted in
15159         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15160     ELSE
15161         -- User did not opt in
15162         RETURN;
15163     END IF;
15164
15165     FOR c IN
15166         SELECT  *
15167           FROM  action.circulation
15168           WHERE usr = usr_id
15169                 AND parent_circ IS NULL
15170                 AND xact_start > NOW() - view_age
15171           ORDER BY xact_start
15172     LOOP
15173         RETURN NEXT c;
15174     END LOOP;
15175
15176     RETURN;
15177 END;
15178 $func$ LANGUAGE PLPGSQL;
15179
15180 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15181 DECLARE
15182     usr_keep_age    actor.usr_setting%ROWTYPE;
15183     usr_keep_start  actor.usr_setting%ROWTYPE;
15184     org_keep_age    INTERVAL;
15185     org_keep_count  INT;
15186
15187     keep_age        INTERVAL;
15188
15189     target_acp      RECORD;
15190     circ_chain_head action.circulation%ROWTYPE;
15191     circ_chain_tail action.circulation%ROWTYPE;
15192
15193     purge_position  INT;
15194     count_purged    INT;
15195 BEGIN
15196
15197     count_purged := 0;
15198
15199     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15200
15201     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15202     IF org_keep_count IS NULL THEN
15203         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15204     END IF;
15205
15206     -- First, find copies with more than keep_count non-renewal circs
15207     FOR target_acp IN
15208         SELECT  target_copy,
15209                 COUNT(*) AS total_real_circs
15210           FROM  action.circulation
15211           WHERE parent_circ IS NULL
15212                 AND xact_finish IS NOT NULL
15213           GROUP BY target_copy
15214           HAVING COUNT(*) > org_keep_count
15215     LOOP
15216         purge_position := 0;
15217         -- And, for those, select circs that are finished and older than keep_age
15218         FOR circ_chain_head IN
15219             SELECT  *
15220               FROM  action.circulation
15221               WHERE target_copy = target_acp.target_copy
15222                     AND parent_circ IS NULL
15223               ORDER BY xact_start
15224         LOOP
15225
15226             -- Stop once we've purged enough circs to hit org_keep_count
15227             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15228
15229             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15230             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15231
15232             -- Now get the user setings, if any, to block purging if the user wants to keep more circs
15233             usr_keep_age.value := NULL;
15234             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15235
15236             usr_keep_start.value := NULL;
15237             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start_date';
15238
15239             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15240                 IF oils_json_to_string(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ) THEN
15241                     keep_age := AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ);
15242                 ELSE
15243                     keep_age := oils_json_to_string(usr_keep_age.value)::INTERVAL;
15244                 END IF;
15245             ELSIF usr_keep_start.value IS NOT NULL THEN
15246                 keep_age := AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ);
15247             ELSE
15248                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTEVAL );
15249             END IF;
15250
15251             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15252
15253             -- We've passed the purging tests, purge the circ chain starting at the end
15254             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15255             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15256                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15257                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15258             END LOOP;
15259
15260             count_purged := count_purged + 1;
15261             purge_position := purge_position + 1;
15262
15263         END LOOP;
15264     END LOOP;
15265 END;
15266 $func$ LANGUAGE PLPGSQL;
15267
15268 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15269 DECLARE
15270     h               action.hold_request%ROWTYPE;
15271     view_age        INTERVAL;
15272     view_count      INT;
15273     usr_view_count  actor.usr_setting%ROWTYPE;
15274     usr_view_age    actor.usr_setting%ROWTYPE;
15275     usr_view_start  actor.usr_setting%ROWTYPE;
15276 BEGIN
15277     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15278     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15279     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15280
15281     FOR h IN
15282         SELECT  *
15283           FROM  action.hold_request
15284           WHERE usr = usr_id
15285                 AND fulfillment_time IS NULL
15286                 AND cancel_time IS NULL
15287           ORDER BY request_time DESC
15288     LOOP
15289         RETURN NEXT h;
15290     END LOOP;
15291
15292     IF usr_view_start.value IS NULL THEN
15293         RETURN;
15294     END IF;
15295
15296     IF usr_view_age.value IS NOT NULL THEN
15297         -- User opted in and supplied a retention age
15298         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15299             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15300         ELSE
15301             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15302         END IF;
15303     ELSE
15304         -- User opted in
15305         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15306     END IF;
15307
15308     IF usr_view_count.value IS NOT NULL THEN
15309         view_count := oils_json_to_text(usr_view_count.value)::INT;
15310     ELSE
15311         view_count := 1000;
15312     END IF;
15313
15314     -- show some fulfilled/canceled holds
15315     FOR h IN
15316         SELECT  *
15317           FROM  action.hold_request
15318           WHERE usr = usr_id
15319                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15320                 AND request_time > NOW() - view_age
15321           ORDER BY request_time DESC
15322           LIMIT view_count
15323     LOOP
15324         RETURN NEXT h;
15325     END LOOP;
15326
15327     RETURN;
15328 END;
15329 $func$ LANGUAGE PLPGSQL;
15330
15331 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15332
15333 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15334
15335 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15336
15337 DROP TABLE IF EXISTS serial.issuance CASCADE;
15338
15339 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15340
15341 DROP TABLE IF EXISTS serial.subscription CASCADE;
15342
15343 CREATE TABLE asset.copy_template (
15344         id             SERIAL   PRIMARY KEY,
15345         owning_lib     INT      NOT NULL
15346                                 REFERENCES actor.org_unit (id)
15347                                 DEFERRABLE INITIALLY DEFERRED,
15348         creator        BIGINT   NOT NULL
15349                                 REFERENCES actor.usr (id)
15350                                 DEFERRABLE INITIALLY DEFERRED,
15351         editor         BIGINT   NOT NULL
15352                                 REFERENCES actor.usr (id)
15353                                 DEFERRABLE INITIALLY DEFERRED,
15354         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15355         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15356         name           TEXT     NOT NULL,
15357         -- columns above this point are attributes of the template itself
15358         -- columns after this point are attributes of the copy this template modifies/creates
15359         circ_lib       INT      REFERENCES actor.org_unit (id)
15360                                 DEFERRABLE INITIALLY DEFERRED,
15361         status         INT      REFERENCES config.copy_status (id)
15362                                 DEFERRABLE INITIALLY DEFERRED,
15363         location       INT      REFERENCES asset.copy_location (id)
15364                                 DEFERRABLE INITIALLY DEFERRED,
15365         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15366                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15367         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15368                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15369         age_protect    INT,
15370         circulate      BOOL,
15371         deposit        BOOL,
15372         ref            BOOL,
15373         holdable       BOOL,
15374         deposit_amount NUMERIC(6,2),
15375         price          NUMERIC(8,2),
15376         circ_modifier  TEXT,
15377         circ_as_type   TEXT,
15378         alert_message  TEXT,
15379         opac_visible   BOOL,
15380         floating       BOOL,
15381         mint_condition BOOL
15382 );
15383
15384 CREATE TABLE serial.subscription (
15385         id                     SERIAL       PRIMARY KEY,
15386         owning_lib             INT          NOT NULL DEFAULT 1
15387                                             REFERENCES actor.org_unit (id)
15388                                             ON DELETE SET NULL
15389                                             DEFERRABLE INITIALLY DEFERRED,
15390         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15391         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15392         record_entry           BIGINT       REFERENCES biblio.record_entry (id)
15393                                             ON DELETE SET NULL
15394                                             DEFERRABLE INITIALLY DEFERRED,
15395         expected_date_offset   INTERVAL
15396         -- acquisitions/business-side tables link to here
15397 );
15398
15399 --at least one distribution per org_unit holding issues
15400 CREATE TABLE serial.distribution (
15401         id                    SERIAL  PRIMARY KEY,
15402         record_entry          BIGINT  REFERENCES serial.record_entry (id)
15403                                       ON DELETE SET NULL
15404                                       DEFERRABLE INITIALLY DEFERRED,
15405         summary_method        TEXT    CONSTRAINT sdist_summary_method_check CHECK (
15406                                           summary_method IS NULL
15407                                           OR summary_method IN ( 'add_to_sre',
15408                                           'merge_with_sre', 'use_sre_only',
15409                                           'use_sdist_only')),
15410         subscription          INT     NOT NULL
15411                                       REFERENCES serial.subscription (id)
15412                                                                   ON DELETE CASCADE
15413                                                                   DEFERRABLE INITIALLY DEFERRED,
15414         holding_lib           INT     NOT NULL
15415                                       REFERENCES actor.org_unit (id)
15416                                                                   DEFERRABLE INITIALLY DEFERRED,
15417         label                 TEXT    NOT NULL,
15418         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
15419                                       DEFERRABLE INITIALLY DEFERRED,
15420         receive_unit_template INT     REFERENCES asset.copy_template (id)
15421                                       DEFERRABLE INITIALLY DEFERRED,
15422         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
15423                                       DEFERRABLE INITIALLY DEFERRED,
15424         bind_unit_template    INT     REFERENCES asset.copy_template (id)
15425                                       DEFERRABLE INITIALLY DEFERRED,
15426         unit_label_prefix     TEXT,
15427         unit_label_suffix     TEXT
15428 );
15429
15430 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
15431
15432 CREATE TABLE serial.stream (
15433         id              SERIAL  PRIMARY KEY,
15434         distribution    INT     NOT NULL
15435                                 REFERENCES serial.distribution (id)
15436                                 ON DELETE CASCADE
15437                                 DEFERRABLE INITIALLY DEFERRED,
15438         routing_label   TEXT
15439 );
15440
15441 CREATE UNIQUE INDEX label_once_per_dist
15442         ON serial.stream (distribution, routing_label)
15443         WHERE routing_label IS NOT NULL;
15444
15445 CREATE TABLE serial.routing_list_user (
15446         id             SERIAL       PRIMARY KEY,
15447         stream         INT          NOT NULL
15448                                     REFERENCES serial.stream
15449                                     ON DELETE CASCADE
15450                                     DEFERRABLE INITIALLY DEFERRED,
15451         pos            INT          NOT NULL DEFAULT 1,
15452         reader         INT          REFERENCES actor.usr
15453                                     ON DELETE CASCADE
15454                                     DEFERRABLE INITIALLY DEFERRED,
15455         department     TEXT,
15456         note           TEXT,
15457         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
15458         CONSTRAINT reader_or_dept CHECK
15459         (
15460             -- Recipient is a person or a department, but not both
15461                 (reader IS NOT NULL AND department IS NULL) OR
15462                 (reader IS NULL AND department IS NOT NULL)
15463         )
15464 );
15465
15466 CREATE TABLE serial.caption_and_pattern (
15467         id           SERIAL       PRIMARY KEY,
15468         subscription INT          NOT NULL REFERENCES serial.subscription (id)
15469                                   ON DELETE CASCADE
15470                                   DEFERRABLE INITIALLY DEFERRED,
15471         type         TEXT         NOT NULL
15472                                   CONSTRAINT cap_type CHECK ( type in
15473                                   ( 'basic', 'supplement', 'index' )),
15474         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
15475         start_date   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
15476         end_date     TIMESTAMP WITH TIME ZONE,
15477         active       BOOL         NOT NULL DEFAULT FALSE,
15478         pattern_code TEXT         NOT NULL,       -- must contain JSON
15479         enum_1       TEXT,
15480         enum_2       TEXT,
15481         enum_3       TEXT,
15482         enum_4       TEXT,
15483         enum_5       TEXT,
15484         enum_6       TEXT,
15485         chron_1      TEXT,
15486         chron_2      TEXT,
15487         chron_3      TEXT,
15488         chron_4      TEXT,
15489         chron_5      TEXT
15490 );
15491
15492 CREATE TABLE serial.issuance (
15493         id              SERIAL    PRIMARY KEY,
15494         creator         INT       NOT NULL
15495                                   REFERENCES actor.usr (id)
15496                                                           DEFERRABLE INITIALLY DEFERRED,
15497         editor          INT       NOT NULL
15498                                   REFERENCES actor.usr (id)
15499                                   DEFERRABLE INITIALLY DEFERRED,
15500         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15501         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15502         subscription    INT       NOT NULL
15503                                   REFERENCES serial.subscription (id)
15504                                   ON DELETE CASCADE
15505                                   DEFERRABLE INITIALLY DEFERRED,
15506         label           TEXT,
15507         date_published  TIMESTAMP WITH TIME ZONE,
15508         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
15509                               DEFERRABLE INITIALLY DEFERRED,
15510         holding_code    TEXT,
15511         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
15512                                   (
15513                                       holding_type IS NULL
15514                                       OR holding_type IN ('basic','supplement','index')
15515                                   ),
15516         holding_link_id INT
15517         -- TODO: add columns for separate enumeration/chronology values
15518 );
15519
15520 CREATE TABLE serial.unit (
15521         label           TEXT,
15522         label_sort_key  TEXT,
15523         contents        TEXT    NOT NULL
15524 ) INHERITS (asset.copy);
15525
15526 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
15527
15528 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
15529
15530 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15531
15532 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15533
15534 CREATE TABLE serial.item (
15535         id              SERIAL  PRIMARY KEY,
15536         creator         INT     NOT NULL
15537                                 REFERENCES actor.usr (id)
15538                                 DEFERRABLE INITIALLY DEFERRED,
15539         editor          INT     NOT NULL
15540                                 REFERENCES actor.usr (id)
15541                                 DEFERRABLE INITIALLY DEFERRED,
15542         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15543         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15544         issuance        INT     NOT NULL
15545                                 REFERENCES serial.issuance (id)
15546                                 ON DELETE CASCADE
15547                                 DEFERRABLE INITIALLY DEFERRED,
15548         stream          INT     NOT NULL
15549                                 REFERENCES serial.stream (id)
15550                                 ON DELETE CASCADE
15551                                 DEFERRABLE INITIALLY DEFERRED,
15552         unit            INT     REFERENCES serial.unit (id)
15553                                 ON DELETE SET NULL
15554                                 DEFERRABLE INITIALLY DEFERRED,
15555         uri             INT     REFERENCES asset.uri (id)
15556                                 ON DELETE SET NULL
15557                                 DEFERRABLE INITIALLY DEFERRED,
15558         date_expected   TIMESTAMP WITH TIME ZONE,
15559         date_received   TIMESTAMP WITH TIME ZONE,
15560         status          TEXT    CONSTRAINT valid_status CHECK (
15561                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
15562                                'Expected', 'Not Held', 'Not Published', 'Received'))
15563                             DEFAULT 'Expected',
15564         shadowed        BOOL    NOT NULL DEFAULT FALSE
15565 );
15566
15567 CREATE TABLE serial.item_note (
15568         id          SERIAL  PRIMARY KEY,
15569         item        INT     NOT NULL
15570                             REFERENCES serial.item (id)
15571                             ON DELETE CASCADE
15572                             DEFERRABLE INITIALLY DEFERRED,
15573         creator     INT     NOT NULL
15574                             REFERENCES actor.usr (id)
15575                             DEFERRABLE INITIALLY DEFERRED,
15576         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15577         pub         BOOL    NOT NULL    DEFAULT FALSE,
15578         title       TEXT    NOT NULL,
15579         value       TEXT    NOT NULL
15580 );
15581
15582 CREATE TABLE serial.basic_summary (
15583         id                  SERIAL  PRIMARY KEY,
15584         distribution        INT     NOT NULL
15585                                     REFERENCES serial.distribution (id)
15586                                     ON DELETE CASCADE
15587                                     DEFERRABLE INITIALLY DEFERRED,
15588         generated_coverage  TEXT    NOT NULL,
15589         textual_holdings    TEXT,
15590         show_generated      BOOL    NOT NULL DEFAULT TRUE
15591 );
15592
15593 CREATE TABLE serial.supplement_summary (
15594         id                  SERIAL  PRIMARY KEY,
15595         distribution        INT     NOT NULL
15596                                     REFERENCES serial.distribution (id)
15597                                     ON DELETE CASCADE
15598                                     DEFERRABLE INITIALLY DEFERRED,
15599         generated_coverage  TEXT    NOT NULL,
15600         textual_holdings    TEXT,
15601         show_generated      BOOL    NOT NULL DEFAULT TRUE
15602 );
15603
15604 CREATE TABLE serial.index_summary (
15605         id                  SERIAL  PRIMARY KEY,
15606         distribution        INT     NOT NULL
15607                                     REFERENCES serial.distribution (id)
15608                                     ON DELETE CASCADE
15609                                     DEFERRABLE INITIALLY DEFERRED,
15610         generated_coverage  TEXT    NOT NULL,
15611         textual_holdings    TEXT,
15612         show_generated      BOOL    NOT NULL DEFAULT TRUE
15613 );
15614
15615 -- DELETE FROM action_trigger.environment WHERE event_def IN (29,30); DELETE FROM action_trigger.event where event_def IN (29,30); DELETE FROM action_trigger.event_definition WHERE id IN (29,30); DELETE FROM action_trigger.hook WHERE key IN ('money.format.payment_receipt.email','money.format.payment_receipt.print'); DELETE FROM config.upgrade_log WHERE version = '0289'; -- from testing, this sql will remove these events, etc.
15616
15617 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
15618 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15619
15620 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
15621 CREATE UNIQUE INDEX asset_call_number_label_once_per_lib ON asset.call_number (record, owning_lib, label) WHERE deleted = FALSE OR deleted IS FALSE;
15622
15623 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
15624 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15625
15626 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
15627 RETURNS INTEGER AS $$
15628 BEGIN
15629         RETURN EXTRACT( EPOCH FROM interval_val );
15630 END;
15631 $$ LANGUAGE plpgsql;
15632
15633 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
15634 RETURNS INTEGER AS $$
15635 BEGIN
15636         RETURN config.interval_to_seconds( interval_string::INTERVAL );
15637 END;
15638 $$ LANGUAGE plpgsql;
15639
15640 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
15641     'temp',
15642     oils_i18n_gettext(
15643         'temp',
15644         'Temporary bucket which gets deleted after use.',
15645         'cbrebt',
15646         'label'
15647     )
15648 );
15649
15650 -- DELETE FROM action_trigger.environment WHERE event_def IN (31,32); DELETE FROM action_trigger.event where event_def IN (31,32); DELETE FROM action_trigger.event_definition WHERE id IN (31,32); DELETE FROM action_trigger.hook WHERE key IN ('biblio.format.record_entry.email','biblio.format.record_entry.print'); DELETE FROM action_trigger.cleanup WHERE module = 'DeleteTempBiblioBucket'; DELETE FROM container.biblio_record_entry_bucket_item WHERE bucket IN (SELECT id FROM container.biblio_record_entry_bucket WHERE btype = 'temp'); DELETE FROM container.biblio_record_entry_bucket WHERE btype = 'temp'; DELETE FROM container.biblio_record_entry_bucket_type WHERE code = 'temp'; DELETE FROM config.upgrade_log WHERE version = '0294'; -- from testing, this sql will remove these events, etc.
15651
15652 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
15653 BEGIN
15654
15655     IF xml_is_well_formed(NEW.marc) THEN
15656         RETURN NEW;
15657     ELSE
15658         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
15659     END IF;
15660     
15661 END;
15662 $func$ LANGUAGE PLPGSQL;
15663
15664 CREATE TRIGGER a_marcxml_is_well_formed BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.check_marcxml_well_formed();
15665
15666 CREATE TRIGGER a_marcxml_is_well_formed BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.check_marcxml_well_formed();
15667
15668 ALTER TABLE serial.record_entry
15669         ALTER COLUMN marc DROP NOT NULL;
15670
15671 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
15672 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
15673 <xsl:stylesheet
15674     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
15675     xmlns:marc="http://www.loc.gov/MARC21/slim"
15676     version="1.0">
15677 <!--
15678 Copyright (C) 2010  Equinox Software, Inc.
15679 Galen Charlton <gmc@esilibrary.cOM.
15680
15681 This program is free software; you can redistribute it and/or
15682 modify it under the terms of the GNU General Public License
15683 as published by the Free Software Foundation; either version 2
15684 of the License, or (at your option) any later version.
15685
15686 This program is distributed in the hope that it will be useful,
15687 but WITHOUT ANY WARRANTY; without even the implied warranty of
15688 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15689 GNU General Public License for more details.
15690
15691 marc21_expand_880.xsl - stylesheet used during indexing to
15692                         map alternative graphical representations
15693                         of MARC fields stored in 880 fields
15694                         to the corresponding tag name and value.
15695
15696 For example, if a MARC record for a Chinese book has
15697
15698 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
15699 880.00 $6 245-01/$1 $a八十三年短篇小說選
15700
15701 this stylesheet will transform it to the equivalent of
15702
15703 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
15704 245.00 $6 245-01/$1 $a八十三年短篇小說選
15705
15706 -->
15707     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
15708
15709     <xsl:template match="@*|node()">
15710         <xsl:copy>
15711             <xsl:apply-templates select="@*|node()"/>
15712         </xsl:copy>
15713     </xsl:template>
15714
15715     <xsl:template match="//marc:datafield[@tag='880']">
15716         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
15717             <marc:datafield>
15718                 <xsl:attribute name="tag">
15719                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
15720                 </xsl:attribute>
15721                 <xsl:attribute name="ind1">
15722                     <xsl:value-of select="@ind1" />
15723                 </xsl:attribute>
15724                 <xsl:attribute name="ind2">
15725                     <xsl:value-of select="@ind2" />
15726                 </xsl:attribute>
15727                 <xsl:apply-templates />
15728             </marc:datafield>
15729         </xsl:if>
15730     </xsl:template>
15731     
15732 </xsl:stylesheet>$$);
15733
15734 -- Splitting the ingest trigger up into little bits
15735
15736 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
15737     flag INTEGER PRIMARY KEY
15738 ) ON COMMIT DROP;
15739 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
15740
15741 -- cause failure if either of the tables we want to drop have rows
15742 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
15743 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
15744
15745 DROP TABLE IF EXISTS asset.copy_transparency_map;
15746 DROP TABLE IF EXISTS asset.copy_transparency;
15747
15748 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
15749
15750 -- We won't necessarily use all of these, but they are here for completeness.
15751 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
15752 -- Values are the EDI code value + 1000
15753
15754 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
15755 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
15756 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
15757 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
15758 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
15759 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
15760 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
15761 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
15762 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
15763 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
15764 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
15765 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
15766 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
15767 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
15768 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
15769 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
15770 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
15771 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
15772 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
15773 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
15774 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
15775 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
15776 ('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).'),
15777 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
15778 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
15779 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
15780 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
15781 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
15782 ('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.'),
15783 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
15784 ('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.'),
15785 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
15786 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
15787 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
15788 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
15789 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
15790 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
15791 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
15792 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
15793 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
15794 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
15795 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
15796 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
15797 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
15798 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
15799 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
15800 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
15801 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
15802 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
15803 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
15804 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
15805 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
15806 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
15807 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
15808 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
15809 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
15810 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
15811 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
15812 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
15813 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
15814 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
15815 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
15816 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
15817 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
15818 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
15819 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
15820 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
15821 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
15822 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
15823 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
15824 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
15825 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
15826 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
15827 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
15828 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
15829 ('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).'),
15830 ('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).'),
15831 ('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).'),
15832 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
15833 ('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).'),
15834 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
15835 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
15836 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
15837 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
15838 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
15839 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
15840 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
15841 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
15842 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
15843 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
15844 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
15845 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
15846 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
15847 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
15848 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
15849 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
15850 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
15851 ('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.'),
15852 ('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.'),
15853 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
15854 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
15855 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
15856 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
15857 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
15858 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
15859 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
15860 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
15861 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
15862 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
15863 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
15864 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
15865 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
15866 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
15867 ('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.'),
15868 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
15869 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
15870
15871 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
15872     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
15873  
15874 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15875  
15876 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15877         'Remove Parenthesized Substring',
15878         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
15879         'remove_paren_substring',
15880         0
15881 );
15882
15883 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15884         'Trim Surrounding Space',
15885         'Trim leading and trailing spaces from extracted text.',
15886         'btrim',
15887         0
15888 );
15889
15890 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15891     SELECT  m.id,
15892             i.id,
15893             -2
15894       FROM  config.metabib_field m,
15895             config.index_normalizer i
15896       WHERE i.func IN ('remove_paren_substring')
15897             AND m.id IN (26);
15898
15899 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15900     SELECT  m.id,
15901             i.id,
15902             -1
15903       FROM  config.metabib_field m,
15904             config.index_normalizer i
15905       WHERE i.func IN ('btrim')
15906             AND m.id IN (26);
15907
15908 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
15909 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
15910 DECLARE
15911     dyn_profile     vandelay.compile_profile%ROWTYPE;
15912     replace_rule    TEXT;
15913     tmp_marc        TEXT;
15914     trgt_marc        TEXT;
15915     tmpl_marc        TEXT;
15916     match_count     INT;
15917 BEGIN
15918
15919     IF target_marc IS NULL OR template_marc IS NULL THEN
15920         -- RAISE NOTICE 'no marc for target or template record';
15921         RETURN NULL;
15922     END IF;
15923
15924     dyn_profile := vandelay.compile_profile( template_marc );
15925
15926     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
15927         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
15928         RETURN NULL;
15929     END IF;
15930
15931     IF dyn_profile.replace_rule <> '' THEN
15932         trgt_marc = target_marc;
15933         tmpl_marc = template_marc;
15934         replace_rule = dyn_profile.replace_rule;
15935     ELSE
15936         tmp_marc = target_marc;
15937         trgt_marc = template_marc;
15938         tmpl_marc = tmp_marc;
15939         replace_rule = dyn_profile.preserve_rule;
15940     END IF;
15941
15942     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
15943
15944 END;
15945 $$ LANGUAGE PLPGSQL;
15946
15947 -- Function to generate an ephemeral overlay template from an authority record
15948 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
15949
15950     use MARC::Record;
15951     use MARC::File::XML (BinaryEncoding => 'UTF-8');
15952
15953     my $xml = shift;
15954     my $r = MARC::Record->new_from_xml( $xml );
15955
15956     return undef unless ($r);
15957
15958     my $id = shift() || $r->subfield( '901' => 'c' );
15959     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
15960     return undef unless ($id); # We need an ID!
15961
15962     my $tmpl = MARC::Record->new();
15963
15964     my @rule_fields;
15965     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
15966
15967         my $tag = $field->tag;
15968         my $i1 = $field->indicator(1);
15969         my $i2 = $field->indicator(2);
15970         my $sf = join '', map { $_->[0] } $field->subfields;
15971         my @data = map { @$_ } $field->subfields;
15972
15973         my @replace_them;
15974
15975         # Map the authority field to bib fields it can control.
15976         if ($tag >= 100 and $tag <= 111) {       # names
15977             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
15978         } elsif ($tag eq '130') {                # uniform title
15979             @replace_them = qw/130 240 440 730 830/;
15980         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
15981             @replace_them = ($tag + 500);
15982         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
15983             @replace_them = qw/100 400 600 700 800 110 410 610 710 810 111 411 611 711 811 130 240 440 730 830 650 651 655/;
15984         } else {
15985             next;
15986         }
15987
15988         # Dummy up the bib-side data
15989         $tmpl->append_fields(
15990             map {
15991                 MARC::Field->new( $_, $i1, $i2, @data )
15992             } @replace_them
15993         );
15994
15995         # Construct some 'replace' rules
15996         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
15997     }
15998
15999     # Insert the replace rules into the template
16000     $tmpl->append_fields(
16001         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
16002     );
16003
16004     $xml = $tmpl->as_xml_record;
16005     $xml =~ s/^<\?.+?\?>$//mo;
16006     $xml =~ s/\n//sgo;
16007     $xml =~ s/>\s+</></sgo;
16008
16009     return $xml;
16010
16011 $func$ LANGUAGE PLPERLU;
16012
16013 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
16014     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
16015 $func$ LANGUAGE SQL;
16016
16017 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
16018     SELECT authority.generate_overlay_template( $1, NULL );
16019 $func$ LANGUAGE SQL;
16020
16021 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
16022 DELETE FROM config.metabib_field WHERE id = 26;
16023
16024 -- Making this a global_flag (UI accessible) instead of an internal_flag
16025 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16026     VALUES (
16027         'ingest.disable_authority_linking',
16028         oils_i18n_gettext(
16029             'ingest.disable_authority_linking',
16030             'Authority Automation: Disable bib-authority link tracking',
16031             'cgf', 
16032             'label'
16033         )
16034     );
16035 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
16036 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
16037
16038 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16039     VALUES (
16040         'ingest.disable_authority_auto_update',
16041         oils_i18n_gettext(
16042             'ingest.disable_authority_auto_update',
16043             'Authority Automation: Disable automatic authority updating (requires link tracking)',
16044             'cgf', 
16045             'label'
16046         )
16047     );
16048
16049 -- Enable automated ingest of authority records; just insert the row into
16050 -- authority.record_entry and authority.full_rec will automatically be populated
16051
16052 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
16053     UPDATE  biblio.record_entry
16054       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
16055       WHERE id = $2;
16056     SELECT $1;
16057 $func$ LANGUAGE SQL;
16058
16059 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
16060     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
16061 $func$ LANGUAGE SQL;
16062
16063 -- authority.rec_descriptor appears to be unused currently
16064 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
16065 BEGIN
16066     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
16067 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
16068 --        SELECT  auth_id, ;
16069
16070     RETURN;
16071 END;
16072 $func$ LANGUAGE PLPGSQL;
16073
16074 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16075 BEGIN
16076     DELETE FROM authority.full_rec WHERE record = auth_id;
16077     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16078         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16079
16080     RETURN;
16081 END;
16082 $func$ LANGUAGE PLPGSQL;
16083
16084 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16085 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16086 BEGIN
16087
16088     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16089         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16090           -- Should remove matching $0 from controlled fields at the same time?
16091         RETURN NEW; -- and we're done
16092     END IF;
16093
16094     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16095         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16096
16097         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16098             RETURN NEW;
16099         END IF;
16100     END IF;
16101
16102     -- Flatten and insert the afr data
16103     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16104     IF NOT FOUND THEN
16105         PERFORM authority.reingest_authority_full_rec(NEW.id);
16106 -- authority.rec_descriptor is not currently used
16107 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16108 --        IF NOT FOUND THEN
16109 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16110 --        END IF;
16111     END IF;
16112
16113     RETURN NEW;
16114 END;
16115 $func$ LANGUAGE PLPGSQL;
16116
16117 CREATE TRIGGER aaa_auth_ingest_or_delete AFTER INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE authority.indexing_ingest_or_delete ();
16118
16119 -- Some records manage to get XML namespace declarations into each element,
16120 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16121 -- This broke the old maintain_901(), so we'll make the regex more robust
16122
16123 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16124 BEGIN
16125     -- Remove any existing 901 fields before we insert the authoritative one
16126     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16127     IF TG_TABLE_SCHEMA = 'biblio' THEN
16128         NEW.marc := REGEXP_REPLACE(
16129             NEW.marc,
16130             E'(</(?:[^:]*?:)?record>)',
16131             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16132                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16133                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16134                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16135                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16136                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16137                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16138              E'</datafield>\\1'
16139         );
16140     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16141         NEW.marc := REGEXP_REPLACE(
16142             NEW.marc,
16143             E'(</(?:[^:]*?:)?record>)',
16144             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16145                 '<subfield code="a">' || NEW.arn_value || E'</subfield>' ||
16146                 '<subfield code="b">' || NEW.arn_source || E'</subfield>' ||
16147                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16148                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16149              E'</datafield>\\1'
16150         );
16151     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16152         NEW.marc := REGEXP_REPLACE(
16153             NEW.marc,
16154             E'(</(?:[^:]*?:)?record>)',
16155             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16156                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16157                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16158                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16159                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16160              E'</datafield>\\1'
16161         );
16162     ELSE
16163         NEW.marc := REGEXP_REPLACE(
16164             NEW.marc,
16165             E'(</(?:[^:]*?:)?record>)',
16166             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16167                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16168                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16169              E'</datafield>\\1'
16170         );
16171     END IF;
16172
16173     RETURN NEW;
16174 END;
16175 $func$ LANGUAGE PLPGSQL;
16176
16177 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16178 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16179 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16180  
16181 -- In booking, elbow room defines:
16182 --  a) how far in the future you must make a reservation on a given item if
16183 --      that item will have to transit somewhere to fulfill the reservation.
16184 --  b) how soon a reservation must be starting for the reserved item to
16185 --      be op-captured by the checkin interface.
16186
16187 -- We don't want to clobber any default_elbow room at any level:
16188
16189 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16190 DECLARE
16191     existing    actor.org_unit_setting%ROWTYPE;
16192 BEGIN
16193     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16194     IF NOT FOUND THEN
16195         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16196             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16197             'circ.booking_reservation.default_elbow_room',
16198             '"1 day"'
16199         );
16200         RETURN 1;
16201     END IF;
16202     RETURN 0;
16203 END;
16204 $$ LANGUAGE plpgsql;
16205
16206 SELECT pg_temp.default_elbow();
16207
16208 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16209
16210 -- returns the distinct set of target copy IDs from a user's visible circulation history
16211 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16212     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16213 $$ LANGUAGE SQL;
16214
16215 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16216 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16217 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16218 ALTER TABLE action.hold_copy_map DROP CONSTRAINT hold_copy_map_target_copy_fkey;
16219
16220 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16221
16222 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16223 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16224
16225 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16226     VALUES (
16227         'cat.maintain_control_numbers',
16228         oils_i18n_gettext(
16229             'cat.maintain_control_numbers',
16230             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16231             'cgf', 
16232             'label'
16233         )
16234     );
16235
16236 INSERT INTO config.global_flag (name, label, enabled)
16237     VALUES (
16238         'circ.holds.empty_issuance_ok',
16239         oils_i18n_gettext(
16240             'circ.holds.empty_issuance_ok',
16241             'Holds: Allow holds on empty issuances',
16242             'cgf',
16243             'label'
16244         ),
16245         TRUE
16246     );
16247
16248 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16249 use strict;
16250 use MARC::Record;
16251 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16252 use Encode;
16253 use Unicode::Normalize;
16254
16255 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16256 my $schema = $_TD->{table_schema};
16257 my $rec_id = $_TD->{new}{id};
16258
16259 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16260 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16261 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16262     return;
16263 }
16264
16265 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16266 my $ou_cni = 'EVRGRN';
16267
16268 my $owner;
16269 if ($schema eq 'serial') {
16270     $owner = $_TD->{new}{owning_lib};
16271 } else {
16272     # are.owner and bre.owner can be null, so fall back to the consortial setting
16273     $owner = $_TD->{new}{owner} || 1;
16274 }
16275
16276 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16277 if ($ous_rv->{processed}) {
16278     $ou_cni = $ous_rv->{rows}[0]->{value};
16279     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16280 } else {
16281     # Fall back to the shortname of the OU if there was no OU setting
16282     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16283     if ($ous_rv->{processed}) {
16284         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16285     }
16286 }
16287
16288 my ($create, $munge) = (0, 0);
16289 my ($orig_001, $orig_003) = ('', '');
16290
16291 # Incoming MARC records may have multiple 001s or 003s, despite the spec
16292 my @control_ids = $record->field('003');
16293 my @scns = $record->field('035');
16294
16295 foreach my $id_field ('001', '003') {
16296     my $spec_value;
16297     my @controls = $record->field($id_field);
16298
16299     if ($id_field eq '001') {
16300         $spec_value = $rec_id;
16301     } else {
16302         $spec_value = $ou_cni;
16303     }
16304
16305     # Create the 001/003 if none exist
16306     if (scalar(@controls) == 0) {
16307         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
16308         $create = 1;
16309     } elsif (scalar(@controls) > 1) {
16310         # Do we already have the right 001/003 value in the existing set?
16311         unless (grep $_->data() eq $spec_value, @controls) {
16312             $munge = 1;
16313         }
16314
16315         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
16316         foreach my $control (@controls) {
16317             unless ($control->data() eq $spec_value) {
16318                 $record->delete_field($control);
16319             }
16320         }
16321     } else {
16322         # Only one field; check to see if we need to munge it
16323         unless (grep $_->data() eq $spec_value, @controls) {
16324             $munge = 1;
16325         }
16326     }
16327 }
16328
16329 # Now, if we need to munge the 001, we will first push the existing 001/003 into the 035
16330 if ($munge) {
16331     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
16332
16333     # Do not create duplicate 035 fields
16334     unless (grep $_->subfield('a') eq $scn, @scns) {
16335         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
16336     }
16337 }
16338
16339 # Set the 001/003 and update the MARC
16340 if ($create or $munge) {
16341     $record->field('001')->data($rec_id);
16342     $record->field('003')->data($ou_cni);
16343
16344     my $xml = $record->as_xml_record();
16345     $xml =~ s/\n//sgo;
16346     $xml =~ s/^<\?xml.+\?\s*>//go;
16347     $xml =~ s/>\s+</></go;
16348     $xml =~ s/\p{Cc}//go;
16349
16350     # Embed a version of OpenILS::Application::AppUtils->entityize()
16351     # to avoid having to set PERL5LIB for PostgreSQL as well
16352
16353     # If we are going to convert non-ASCII characters to XML entities,
16354     # we had better be dealing with a UTF8 string to begin with
16355     $xml = decode_utf8($xml);
16356
16357     $xml = NFC($xml);
16358
16359     # Convert raw ampersands to entities
16360     $xml =~ s/&(?!\S+;)/&amp;/gso;
16361
16362     # Convert Unicode characters to entities
16363     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
16364
16365     $xml =~ s/[\x00-\x1f]//go;
16366     $_TD->{new}{marc} = $xml;
16367
16368     return "MODIFY";
16369 }
16370
16371 return;
16372 $func$ LANGUAGE PLPERLU;
16373
16374 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16375 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16376 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16377
16378 INSERT INTO metabib.facet_entry (source, field, value)
16379     SELECT source, field, value FROM (
16380         SELECT * FROM metabib.author_field_entry
16381             UNION ALL
16382         SELECT * FROM metabib.keyword_field_entry
16383             UNION ALL
16384         SELECT * FROM metabib.identifier_field_entry
16385             UNION ALL
16386         SELECT * FROM metabib.title_field_entry
16387             UNION ALL
16388         SELECT * FROM metabib.subject_field_entry
16389             UNION ALL
16390         SELECT * FROM metabib.series_field_entry
16391         )x
16392     WHERE x.index_vector = '';
16393         
16394 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
16395 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
16396 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
16397 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
16398 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
16399 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
16400
16401 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
16402 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
16403 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
16404
16405 -- copy OPAC visibility materialized view
16406 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
16407
16408     TRUNCATE TABLE asset.opac_visible_copies;
16409
16410     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16411     SELECT  cp.id, cp.circ_lib, cn.record
16412     FROM  asset.copy cp
16413         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16414         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16415         JOIN asset.copy_location cl ON (cp.location = cl.id)
16416         JOIN config.copy_status cs ON (cp.status = cs.id)
16417         JOIN biblio.record_entry b ON (cn.record = b.id)
16418     WHERE NOT cp.deleted
16419         AND NOT cn.deleted
16420         AND NOT b.deleted
16421         AND cs.opac_visible
16422         AND cl.opac_visible
16423         AND cp.opac_visible
16424         AND a.opac_visible;
16425
16426 $$ LANGUAGE SQL;
16427 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
16428 Rebuild the copy OPAC visibility cache.  Useful during migrations.
16429 $$;
16430
16431 -- and actually populate the table
16432 SELECT asset.refresh_opac_visible_copies_mat_view();
16433
16434 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
16435 DECLARE
16436     add_query       TEXT;
16437     remove_query    TEXT;
16438     do_add          BOOLEAN := false;
16439     do_remove       BOOLEAN := false;
16440 BEGIN
16441     add_query := $$
16442             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16443                 SELECT  cp.id, cp.circ_lib, cn.record
16444                   FROM  asset.copy cp
16445                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16446                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16447                         JOIN asset.copy_location cl ON (cp.location = cl.id)
16448                         JOIN config.copy_status cs ON (cp.status = cs.id)
16449                         JOIN biblio.record_entry b ON (cn.record = b.id)
16450                   WHERE NOT cp.deleted
16451                         AND NOT cn.deleted
16452                         AND NOT b.deleted
16453                         AND cs.opac_visible
16454                         AND cl.opac_visible
16455                         AND cp.opac_visible
16456                         AND a.opac_visible
16457     $$;
16458  
16459     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
16460
16461     IF TG_OP = 'INSERT' THEN
16462
16463         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16464             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16465             EXECUTE add_query;
16466         END IF;
16467
16468         RETURN NEW;
16469
16470     END IF;
16471
16472     -- handle items first, since with circulation activity
16473     -- their statuses change frequently
16474     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16475
16476         IF OLD.location    <> NEW.location OR
16477            OLD.call_number <> NEW.call_number OR
16478            OLD.status      <> NEW.status OR
16479            OLD.circ_lib    <> NEW.circ_lib THEN
16480             -- any of these could change visibility, but
16481             -- we'll save some queries and not try to calculate
16482             -- the change directly
16483             do_remove := true;
16484             do_add := true;
16485         ELSE
16486
16487             IF OLD.deleted <> NEW.deleted THEN
16488                 IF NEW.deleted THEN
16489                     do_remove := true;
16490                 ELSE
16491                     do_add := true;
16492                 END IF;
16493             END IF;
16494
16495             IF OLD.opac_visible <> NEW.opac_visible THEN
16496                 IF OLD.opac_visible THEN
16497                     do_remove := true;
16498                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
16499                                         -- is also marked opac_visible
16500                     do_add := true;
16501                 END IF;
16502             END IF;
16503
16504         END IF;
16505
16506         IF do_remove THEN
16507             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
16508         END IF;
16509         IF do_add THEN
16510             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16511             EXECUTE add_query;
16512         END IF;
16513
16514         RETURN NEW;
16515
16516     END IF;
16517
16518     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
16519  
16520         IF OLD.deleted AND NEW.deleted THEN -- do nothing
16521
16522             RETURN NEW;
16523  
16524         ELSIF NEW.deleted THEN -- remove rows
16525  
16526             IF TG_TABLE_NAME = 'call_number' THEN
16527                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
16528             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16529                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
16530             END IF;
16531  
16532             RETURN NEW;
16533  
16534         ELSIF OLD.deleted THEN -- add rows
16535  
16536             IF TG_TABLE_NAME IN ('copy','unit') THEN
16537                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16538             ELSIF TG_TABLE_NAME = 'call_number' THEN
16539                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16540             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16541                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
16542             END IF;
16543  
16544             EXECUTE add_query;
16545             RETURN NEW;
16546  
16547         END IF;
16548  
16549     END IF;
16550
16551     IF TG_TABLE_NAME = 'call_number' THEN
16552
16553         IF OLD.record <> NEW.record THEN
16554             -- call number is linked to different bib
16555             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
16556             EXECUTE remove_query;
16557             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16558             EXECUTE add_query;
16559         END IF;
16560
16561         RETURN NEW;
16562
16563     END IF;
16564
16565     IF TG_TABLE_NAME IN ('record_entry') THEN
16566         RETURN NEW; -- don't have 'opac_visible'
16567     END IF;
16568
16569     -- actor.org_unit, asset.copy_location, asset.copy_status
16570     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
16571
16572         RETURN NEW;
16573
16574     ELSIF NEW.opac_visible THEN -- add rows
16575
16576         IF TG_TABLE_NAME = 'org_unit' THEN
16577             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
16578         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16579             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
16580         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16581             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
16582         END IF;
16583  
16584         EXECUTE add_query;
16585  
16586     ELSE -- delete rows
16587
16588         IF TG_TABLE_NAME = 'org_unit' THEN
16589             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
16590         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16591             remove_query := remove_query || 'location = ' || NEW.id || ');';
16592         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16593             remove_query := remove_query || 'status = ' || NEW.id || ');';
16594         END IF;
16595  
16596         EXECUTE remove_query;
16597  
16598     END IF;
16599  
16600     RETURN NEW;
16601 END;
16602 $func$ LANGUAGE PLPGSQL;
16603 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
16604 Trigger function to update the copy OPAC visiblity cache.
16605 $$;
16606 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16607 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16608 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.call_number FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16609 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy_location FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16610 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16611 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON config.copy_status FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16612 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON actor.org_unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16613
16614 -- must create this rule explicitly; it is not inherited from asset.copy
16615 CREATE RULE protect_serial_unit_delete AS ON DELETE TO serial.unit DO INSTEAD UPDATE serial.unit SET deleted = TRUE WHERE OLD.id = serial.unit.id;
16616
16617 CREATE RULE protect_authority_rec_delete AS ON DELETE TO authority.record_entry DO INSTEAD (UPDATE authority.record_entry SET deleted = TRUE WHERE OLD.id = authority.record_entry.id);
16618
16619 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
16620 DECLARE
16621     moved_objects INT := 0;
16622     bib_id        INT := 0;
16623     bib_rec       biblio.record_entry%ROWTYPE;
16624     auth_link     authority.bib_linking%ROWTYPE;
16625 BEGIN
16626
16627     -- 1. Make source_record MARC a copy of the target_record to get auto-sync in linked bib records
16628     UPDATE authority.record_entry
16629       SET marc = (
16630         SELECT marc
16631           FROM authority.record_entry
16632           WHERE id = target_record
16633       )
16634       WHERE id = source_record;
16635
16636     -- 2. Update all bib records with the ID from target_record in their $0
16637     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre 
16638       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
16639       WHERE abl.authority = target_record LOOP
16640
16641         UPDATE biblio.record_entry
16642           SET marc = REGEXP_REPLACE(marc, 
16643             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
16644             E'\\1' || target_record || '<', 'g')
16645           WHERE id = bib_rec.id;
16646
16647           moved_objects := moved_objects + 1;
16648     END LOOP;
16649
16650     -- 3. "Delete" source_record
16651     DELETE FROM authority.record_entry
16652       WHERE id = source_record;
16653
16654     RETURN moved_objects;
16655 END;
16656 $func$ LANGUAGE plpgsql;
16657
16658 -- serial.record_entry already had an owner column spelled "owning_lib"
16659 -- Adjust the table and affected functions accordingly
16660
16661 ALTER TABLE serial.record_entry DROP COLUMN owner;
16662
16663 CREATE TABLE actor.usr_saved_search (
16664     id              SERIAL          PRIMARY KEY,
16665         owner           INT             NOT NULL REFERENCES actor.usr (id)
16666                                         ON DELETE CASCADE
16667                                         DEFERRABLE INITIALLY DEFERRED,
16668         name            TEXT            NOT NULL,
16669         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
16670         query_text      TEXT            NOT NULL,
16671         query_type      TEXT            NOT NULL
16672                                         CONSTRAINT valid_query_text CHECK (
16673                                         query_type IN ( 'URL' )) DEFAULT 'URL',
16674                                         -- we may add other types someday
16675         target          TEXT            NOT NULL
16676                                         CONSTRAINT valid_target CHECK (
16677                                         target IN ( 'record', 'metarecord', 'callnumber' )),
16678         CONSTRAINT name_once_per_user UNIQUE (owner, name)
16679 );
16680
16681 -- Apply Dan Wells' changes to the serial schema, from the
16682 -- seials-integration branch
16683
16684 CREATE TABLE serial.subscription_note (
16685         id           SERIAL PRIMARY KEY,
16686         subscription INT    NOT NULL
16687                             REFERENCES serial.subscription (id)
16688                             ON DELETE CASCADE
16689                             DEFERRABLE INITIALLY DEFERRED,
16690         creator      INT    NOT NULL
16691                             REFERENCES actor.usr (id)
16692                             DEFERRABLE INITIALLY DEFERRED,
16693         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
16694         pub          BOOL   NOT NULL DEFAULT FALSE,
16695         title        TEXT   NOT NULL,
16696         value        TEXT   NOT NULL
16697 );
16698 CREATE INDEX serial_subscription_note_sub_idx ON serial.subscription_note (subscription);
16699
16700 CREATE TABLE serial.distribution_note (
16701         id           SERIAL PRIMARY KEY,
16702         distribution INT    NOT NULL
16703                             REFERENCES serial.distribution (id)
16704                             ON DELETE CASCADE
16705                             DEFERRABLE INITIALLY DEFERRED,
16706         creator      INT    NOT NULL
16707                             REFERENCES actor.usr (id)
16708                             DEFERRABLE INITIALLY DEFERRED,
16709         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
16710         pub          BOOL   NOT NULL DEFAULT FALSE,
16711         title        TEXT   NOT NULL,
16712         value        TEXT   NOT NULL
16713 );
16714
16715 ------- Begin surgery on serial.unit
16716
16717 ALTER TABLE serial.unit
16718         DROP COLUMN label;
16719
16720 ALTER TABLE serial.unit
16721         RENAME COLUMN label_sort_key TO sort_key;
16722
16723 ALTER TABLE serial.unit
16724         RENAME COLUMN contents TO detailed_contents;
16725
16726 ALTER TABLE serial.unit
16727         ADD COLUMN summary_contents TEXT;
16728
16729 UPDATE serial.unit
16730 SET summary_contents = detailed_contents;
16731
16732 ALTER TABLE serial.unit
16733         ALTER column summary_contents SET NOT NULL;
16734
16735 ------- End surgery on serial.unit
16736
16737 -- DELETE FROM config.upgrade_log WHERE version = 'temp'; DELETE FROM action_trigger.event WHERE event_def IN (33,34); DELETE FROM action_trigger.environment WHERE event_def IN (33,34); DELETE FROM action_trigger.event_definition WHERE id IN (33,34); DELETE FROM action_trigger.hook WHERE key IN ( 'circ.format.missing_pieces.slip.print', 'circ.format.missing_pieces.letter.print' );
16738
16739 -- Now rebuild the constraints dropped via cascade.
16740 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
16741 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
16742 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
16743
16744 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
16745
16746 DELETE FROM config.metabib_field_index_norm_map
16747     WHERE norm IN (
16748         SELECT id 
16749             FROM config.index_normalizer
16750             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
16751     )
16752     AND field = 18
16753 ;
16754
16755 -- We won't necessarily use all of these, but they are here for completeness.
16756 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
16757 -- Values are the EDI code value + 1200
16758
16759 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
16760 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
16761 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
16762 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
16763 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
16764 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
16765 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
16766 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
16767 (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.'),
16768 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
16769 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
16770 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
16771 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
16772 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
16773 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
16774 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
16775 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
16776 (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.'),
16777 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
16778 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
16779 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
16780 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
16781 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
16782 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
16783 (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.'),
16784 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
16785 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
16786 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
16787 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
16788 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
16789 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
16790 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
16791 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
16792 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
16793 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
16794 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
16795 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
16796 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
16797 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
16798 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
16799 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
16800 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
16801 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
16802 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
16803 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
16804 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
16805 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
16806 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
16807 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
16808 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
16809 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
16810 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
16811 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
16812 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
16813 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
16814 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
16815 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
16816 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
16817 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
16818 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
16819 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
16820 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
16821 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
16822 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
16823 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
16824 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
16825 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
16826 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
16827 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
16828 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
16829 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
16830 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
16831 (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.'),
16832 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
16833 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
16834 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
16835 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
16836 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
16837 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
16838 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
16839 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
16840 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
16841 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
16842 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
16843 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
16844 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
16845 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
16846 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
16847 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
16848 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
16849 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
16850 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
16851 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
16852 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
16853 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
16854 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
16855 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
16856 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
16857 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
16858 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
16859 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
16860 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
16861 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
16862 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
16863 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
16864 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
16865 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
16866 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
16867 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
16868 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
16869 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
16870 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
16871 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
16872 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
16873 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
16874 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
16875 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
16876 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
16877 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
16878 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
16879 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
16880 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
16881 (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.'),
16882 (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.'),
16883 (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.'),
16884 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
16885 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
16886 (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.'),
16887 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
16888 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
16889 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
16890 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
16891 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
16892 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
16893 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
16894 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
16895 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
16896 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
16897 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
16898 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
16899 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
16900 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
16901 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
16902 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
16903 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
16904 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
16905 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
16906 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
16907 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
16908 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
16909 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
16910 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
16911 (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.'),
16912 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
16913 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
16914 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
16915 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
16916 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
16917 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
16918 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
16919 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
16920 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
16921 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
16922 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
16923 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
16924 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
16925 (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.'),
16926 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
16927 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
16928 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
16929 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
16930 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
16931 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
16932 (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.'),
16933 (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.'),
16934 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
16935 (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.'),
16936 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
16937 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
16938 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
16939 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
16940 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
16941 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
16942 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
16943 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
16944 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
16945 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
16946 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
16947 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
16948 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
16949 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
16950 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
16951 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
16952 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
16953 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
16954 (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.'),
16955 (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.'),
16956 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
16957 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
16958 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
16959 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
16960 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
16961 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
16962 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
16963 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
16964 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
16965 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
16966 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
16967 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
16968 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
16969 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
16970 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
16971 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
16972 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
16973 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
16974 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
16975 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
16976 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
16977 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
16978 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
16979 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
16980 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
16981 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
16982 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
16983 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
16984 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
16985 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
16986 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
16987 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
16988 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
16989 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
16990 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
16991 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
16992 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
16993 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
16994 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
16995 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
16996 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
16997 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
16998 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
16999 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
17000 (1, 't', 1442, 'Number of months', 'The number of months.'),
17001 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
17002 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
17003 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
17004 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
17005 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
17006 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
17007 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
17008 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
17009 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
17010 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
17011 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
17012 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
17013 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
17014 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
17015 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
17016 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
17017 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
17018 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
17019 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
17020 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
17021 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
17022 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
17023 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
17024 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
17025 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
17026 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
17027 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
17028 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
17029 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
17030 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
17031 (1, 't', 1473, 'Agents', 'The number of agents.'),
17032 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
17033 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
17034 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
17035 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
17036 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
17037 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
17038 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
17039 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
17040 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
17041 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
17042 (1, 't', 1484, 'Departments', 'The number of departments.'),
17043 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
17044 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
17045 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
17046 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
17047 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
17048 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
17049 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
17050 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
17051 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
17052 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
17053 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
17054 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
17055 (1, 't', 1497, 'Executives', 'The number of executives.'),
17056 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
17057 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
17058 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
17059 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
17060 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
17061 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
17062 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
17063 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
17064 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
17065 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
17066 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
17067 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
17068 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
17069 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
17070 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17071 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17072 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17073 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17074 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17075 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17076 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17077 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17078 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17079 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17080 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17081 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17082 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17083 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17084 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17085 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17086 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17087 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17088 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17089 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17090 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17091 (1, 't', 1533, 'Seats',        'The number of seats.'),
17092 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17093 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17094 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17095 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17096 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17097 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17098 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17099 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17100 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17101 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17102 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17103 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17104 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17105 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17106 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17107 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17108 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17109 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17110 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17111 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17112 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17113 (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.'),
17114 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17115 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17116 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17117 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17118 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17119 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17120 (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.'),
17121 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17122 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17123 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17124 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17125 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17126 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17127 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17128 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17129 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17130 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17131 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17132 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17133 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17134 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17135 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17136 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17137 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17138 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17139 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17140 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17141 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17142 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17143 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17144 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17145 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17146 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17147 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17148 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17149 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17150 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17151 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17152 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17153 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17154 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17155 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17156 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17157 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17158 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17159 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17160 (1, 't', 1602, 'Patients',         'Number of patients.'),
17161 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17162 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17163 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17164 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17165 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17166 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17167 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17168 (1, 't', 1610, 'Operators',        'Number of operators.'),
17169 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17170 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17171 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17172 (1, 't', 1614, 'Machines',         'Number of machines.'),
17173 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17174 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17175 (1, 't', 1617, 'Directors',        'Number of directors.'),
17176 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17177 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17178 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17179 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17180 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17181 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17182 (1, 't', 1624, 'Beds', 'Number of beds.'),
17183 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17184 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17185 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17186 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17187 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17188 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17189 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17190 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17191 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17192 (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.'),
17193 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17194 (1, 't', 1636, 'Professor', 'The number of professors.'),
17195 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17196 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17197 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17198 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17199 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17200 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17201 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17202 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17203 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17204 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17205 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17206 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17207 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17208 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17209 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17210 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17211 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17212 (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.'),
17213 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17214 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17215 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17216 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17217 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17218 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17219 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17220 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17221 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17222 (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.'),
17223 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17224 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17225 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17226 (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.'),
17227 (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.'),
17228 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17229 (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.'),
17230 (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.'),
17231 (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.'),
17232 (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.'),
17233 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17234 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17235 (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.'),
17236 (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.'),
17237 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17238 (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.'),
17239 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17240 (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.'),
17241 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17242 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17243 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17244 (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).'),
17245 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17246 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17247 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17248 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17249 ;
17250 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17251
17252 CREATE TABLE acq.serial_claim (
17253     id     SERIAL           PRIMARY KEY,
17254     type   INT              NOT NULL REFERENCES acq.claim_type
17255                                      DEFERRABLE INITIALLY DEFERRED,
17256     item    BIGINT          NOT NULL REFERENCES serial.item
17257                                      DEFERRABLE INITIALLY DEFERRED
17258 );
17259
17260 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17261
17262 CREATE TABLE acq.serial_claim_event (
17263     id             BIGSERIAL        PRIMARY KEY,
17264     type           INT              NOT NULL REFERENCES acq.claim_event_type
17265                                              DEFERRABLE INITIALLY DEFERRED,
17266     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17267                                              DEFERRABLE INITIALLY DEFERRED,
17268     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17269     creator        INT              NOT NULL REFERENCES actor.usr
17270                                              DEFERRABLE INITIALLY DEFERRED,
17271     note           TEXT
17272 );
17273
17274 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
17275
17276 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
17277
17278 -- now what about the auditor.*_lifecycle views??
17279
17280 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17281     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
17282 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17283     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
17284 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
17285 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
17286
17287 CREATE TABLE asset.call_number_class (
17288     id             bigserial     PRIMARY KEY,
17289     name           TEXT          NOT NULL,
17290     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
17291     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17292 );
17293
17294 COMMENT ON TABLE asset.call_number_class IS $$
17295 Defines the call number normalization database functions in the "normalizer"
17296 column and the tag/subfield combinations to use to lookup the call number in
17297 the "field" column for a given classification scheme. Tag/subfield combinations
17298 are delimited by commas.
17299 $$;
17300
17301 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
17302     ('Generic', 'asset.label_normalizer_generic'),
17303     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
17304     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
17305 ;
17306
17307 -- Generic fields
17308 UPDATE asset.call_number_class
17309     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17310     WHERE id = 1
17311 ;
17312
17313 -- Dewey fields
17314 UPDATE asset.call_number_class
17315     SET field = '080ab,082ab'
17316     WHERE id = 2
17317 ;
17318
17319 -- LC fields
17320 UPDATE asset.call_number_class
17321     SET field = '050ab,055ab'
17322     WHERE id = 3
17323 ;
17324  
17325 ALTER TABLE asset.call_number
17326         ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL
17327                 REFERENCES asset.call_number_class(id)
17328                 DEFERRABLE INITIALLY DEFERRED;
17329
17330 ALTER TABLE asset.call_number
17331         ADD COLUMN label_sortkey TEXT;
17332
17333 CREATE INDEX asset_call_number_label_sortkey
17334         ON asset.call_number(label_sortkey);
17335
17336 ALTER TABLE auditor.asset_call_number_history
17337         ADD COLUMN label_class BIGINT;
17338
17339 ALTER TABLE auditor.asset_call_number_history
17340         ADD COLUMN label_sortkey TEXT;
17341
17342 -- Pick up the new columns in dependent views
17343
17344 DROP VIEW auditor.asset_call_number_lifecycle;
17345
17346 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17347
17348 DROP VIEW auditor.asset_call_number_lifecycle;
17349
17350 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17351
17352 DROP VIEW IF EXISTS stats.fleshed_call_number;
17353
17354 CREATE VIEW stats.fleshed_call_number AS
17355         SELECT  cn.*,
17356             CAST(cn.create_date AS DATE) AS create_date_day,
17357         CAST(cn.edit_date AS DATE) AS edit_date_day,
17358         DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
17359         DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
17360             rd.item_lang,
17361                 rd.item_type,
17362                 rd.item_form
17363         FROM    asset.call_number cn
17364                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
17365
17366 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
17367 DECLARE
17368     sortkey        TEXT := '';
17369 BEGIN
17370     sortkey := NEW.label_sortkey;
17371
17372     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
17373        quote_literal( NEW.label ) || ')'
17374        FROM asset.call_number_class acnc
17375        WHERE acnc.id = NEW.label_class
17376        INTO sortkey;
17377
17378     NEW.label_sortkey = sortkey;
17379
17380     RETURN NEW;
17381 END;
17382 $func$ LANGUAGE PLPGSQL;
17383
17384 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
17385     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
17386     # thus could probably be considered a derived work, although nothing was
17387     # directly copied - but to err on the safe side of providing attribution:
17388     # Copyright (C) 2007 LibLime
17389     # Licensed under the GPL v2 or later
17390
17391     use strict;
17392     use warnings;
17393
17394     # Converts the callnumber to uppercase
17395     # Strips spaces from start and end of the call number
17396     # Converts anything other than letters, digits, and periods into underscores
17397     # Collapses multiple underscores into a single underscore
17398     my $callnum = uc(shift);
17399     $callnum =~ s/^\s//g;
17400     $callnum =~ s/\s$//g;
17401     $callnum =~ s/[^A-Z0-9_.]/_/g;
17402     $callnum =~ s/_{2,}/_/g;
17403
17404     return $callnum;
17405 $func$ LANGUAGE PLPERLU;
17406
17407 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
17408     # Derived from the Koha C4::ClassSortRoutine::Dewey module
17409     # Copyright (C) 2007 LibLime
17410     # Licensed under the GPL v2 or later
17411
17412     use strict;
17413     use warnings;
17414
17415     my $init = uc(shift);
17416     $init =~ s/^\s+//;
17417     $init =~ s/\s+$//;
17418     $init =~ s!/!!g;
17419     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
17420     my @tokens = split /\.|\s+/, $init;
17421     my $digit_group_count = 0;
17422     for (my $i = 0; $i <= $#tokens; $i++) {
17423         if ($tokens[$i] =~ /^\d+$/) {
17424             $digit_group_count++;
17425             if (2 == $digit_group_count) {
17426                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
17427                 $tokens[$i] =~ tr/ /0/;
17428             }
17429         }
17430     }
17431     my $key = join("_", @tokens);
17432     $key =~ s/[^\p{IsAlnum}_]//g;
17433
17434     return $key;
17435
17436 $func$ LANGUAGE PLPERLU;
17437
17438 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
17439     use strict;
17440     use warnings;
17441
17442     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
17443     # The author hopes to upload it to CPAN some day, which would make our lives easier
17444     use Library::CallNumber::LC;
17445
17446     my $callnum = Library::CallNumber::LC->new(shift);
17447     return $callnum->normalize();
17448
17449 $func$ LANGUAGE PLPERLU;
17450
17451 CREATE OR REPLACE FUNCTION asset.opac_ou_record_copy_count (org INT, record BIGINT) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17452 DECLARE
17453     ans RECORD;
17454     trans INT;
17455 BEGIN
17456     SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = record;
17457
17458     FOR ans IN SELECT u.id, t.depth FROM actor.org_unit_ancestors(org) AS u JOIN actor.org_unit_type t ON (u.ou_type = t.id) LOOP
17459         RETURN QUERY
17460         SELECT  ans.depth,
17461                 ans.id,
17462                 COUNT( av.id ),
17463                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17464                 COUNT( av.id ),
17465                 trans
17466           FROM
17467                 actor.org_unit_descendants(ans.id) d
17468                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17469                 JOIN asset.copy cp ON (cp.id = av.id)
17470           GROUP BY 1,2,6;
17471
17472         IF NOT FOUND THEN
17473             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17474         END IF;
17475
17476     END LOOP;
17477
17478     RETURN;
17479 END;
17480 $f$ LANGUAGE PLPGSQL;
17481
17482 CREATE OR REPLACE FUNCTION asset.opac_lasso_record_copy_count (i_lasso INT, record BIGINT) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17483 DECLARE
17484     ans RECORD;
17485     trans INT;
17486 BEGIN
17487     SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = record;
17488
17489     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17490         RETURN QUERY
17491         SELECT  -1,
17492                 ans.id,
17493                 COUNT( av.id ),
17494                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17495                 COUNT( av.id ),
17496                 trans
17497           FROM
17498                 actor.org_unit_descendants(ans.id) d
17499                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17500                 JOIN asset.copy cp ON (cp.id = av.id)
17501           GROUP BY 1,2,6;
17502
17503         IF NOT FOUND THEN
17504             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17505         END IF;
17506
17507     END LOOP;
17508
17509     RETURN;
17510 END;
17511 $f$ LANGUAGE PLPGSQL;
17512
17513 CREATE OR REPLACE FUNCTION asset.staff_ou_record_copy_count (org INT, record BIGINT) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17514 DECLARE
17515     ans RECORD;
17516     trans INT;
17517 BEGIN
17518     SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = record;
17519
17520     FOR ans IN SELECT u.id, t.depth FROM actor.org_unit_ancestors(org) AS u JOIN actor.org_unit_type t ON (u.ou_type = t.id) LOOP
17521         RETURN QUERY
17522         SELECT  ans.depth,
17523                 ans.id,
17524                 COUNT( cp.id ),
17525                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17526                 COUNT( cp.id ),
17527                 trans
17528           FROM
17529                 actor.org_unit_descendants(ans.id) d
17530                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17531                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17532           GROUP BY 1,2,6;
17533
17534         IF NOT FOUND THEN
17535             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17536         END IF;
17537
17538     END LOOP;
17539
17540     RETURN;
17541 END;
17542 $f$ LANGUAGE PLPGSQL;
17543
17544 CREATE OR REPLACE FUNCTION asset.staff_lasso_record_copy_count (i_lasso INT, record BIGINT) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17545 DECLARE
17546     ans RECORD;
17547     trans INT;
17548 BEGIN
17549     SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = record;
17550
17551     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17552         RETURN QUERY
17553         SELECT  -1,
17554                 ans.id,
17555                 COUNT( cp.id ),
17556                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17557                 COUNT( cp.id ),
17558                 trans
17559           FROM
17560                 actor.org_unit_descendants(ans.id) d
17561                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17562                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17563           GROUP BY 1,2,6;
17564
17565         IF NOT FOUND THEN
17566             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17567         END IF;
17568
17569     END LOOP;
17570
17571     RETURN;
17572 END;
17573 $f$ LANGUAGE PLPGSQL;
17574
17575 CREATE OR REPLACE FUNCTION asset.record_copy_count ( place INT, record BIGINT, staff BOOL) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17576 BEGIN
17577     IF staff IS TRUE THEN
17578         IF place > 0 THEN
17579             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
17580         ELSE
17581             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
17582         END IF;
17583     ELSE
17584         IF place > 0 THEN
17585             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
17586         ELSE
17587             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
17588         END IF;
17589     END IF;
17590
17591     RETURN;
17592 END;
17593 $f$ LANGUAGE PLPGSQL;
17594
17595 CREATE OR REPLACE FUNCTION asset.opac_ou_metarecord_copy_count (org INT, record BIGINT) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17596 DECLARE
17597     ans RECORD;
17598     trans INT;
17599 BEGIN
17600     SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = record;
17601
17602     FOR ans IN SELECT u.id, t.depth FROM actor.org_unit_ancestors(org) AS u JOIN actor.org_unit_type t ON (u.ou_type = t.id) LOOP
17603         RETURN QUERY
17604         SELECT  ans.depth,
17605                 ans.id,
17606                 COUNT( av.id ),
17607                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17608                 COUNT( av.id ),
17609                 trans
17610           FROM
17611                 actor.org_unit_descendants(ans.id) d
17612                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17613                 JOIN asset.copy cp ON (cp.id = av.id)
17614                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
17615           GROUP BY 1,2,6;
17616
17617         IF NOT FOUND THEN
17618             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17619         END IF;
17620
17621     END LOOP;
17622
17623     RETURN;
17624 END;
17625 $f$ LANGUAGE PLPGSQL;
17626
17627 CREATE OR REPLACE FUNCTION asset.opac_lasso_metarecord_copy_count (i_lasso INT, record BIGINT) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17628 DECLARE
17629     ans RECORD;
17630     trans INT;
17631 BEGIN
17632     SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = record;
17633
17634     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17635         RETURN QUERY
17636         SELECT  -1,
17637                 ans.id,
17638                 COUNT( av.id ),
17639                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17640                 COUNT( av.id ),
17641                 trans
17642           FROM
17643                 actor.org_unit_descendants(ans.id) d
17644                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17645                 JOIN asset.copy cp ON (cp.id = av.id)
17646                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
17647           GROUP BY 1,2,6;
17648
17649         IF NOT FOUND THEN
17650             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17651         END IF;
17652
17653     END LOOP;
17654
17655     RETURN;
17656 END;
17657 $f$ LANGUAGE PLPGSQL;
17658
17659 CREATE OR REPLACE FUNCTION asset.staff_ou_metarecord_copy_count (org INT, record BIGINT) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17660 DECLARE
17661     ans RECORD;
17662     trans INT;
17663 BEGIN
17664     SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = record;
17665
17666     FOR ans IN SELECT u.id, t.depth FROM actor.org_unit_ancestors(org) AS u JOIN actor.org_unit_type t ON (u.ou_type = t.id) LOOP
17667         RETURN QUERY
17668         SELECT  ans.depth,
17669                 ans.id,
17670                 COUNT( cp.id ),
17671                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17672                 COUNT( cp.id ),
17673                 trans
17674           FROM
17675                 actor.org_unit_descendants(ans.id) d
17676                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17677                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17678                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
17679           GROUP BY 1,2,6;
17680
17681         IF NOT FOUND THEN
17682             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17683         END IF;
17684
17685     END LOOP;
17686
17687     RETURN;
17688 END;
17689 $f$ LANGUAGE PLPGSQL;
17690
17691 CREATE OR REPLACE FUNCTION asset.staff_lasso_metarecord_copy_count (i_lasso INT, record BIGINT) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17692 DECLARE
17693     ans RECORD;
17694     trans INT;
17695 BEGIN
17696     SELECT 1 INTO trans FROM biblio.record_entry b JOIN config.bib_source src ON (b.source = src.id) WHERE src.transcendant AND b.id = record;
17697
17698     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17699         RETURN QUERY
17700         SELECT  -1,
17701                 ans.id,
17702                 COUNT( cp.id ),
17703                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17704                 COUNT( cp.id ),
17705                 trans
17706           FROM
17707                 actor.org_unit_descendants(ans.id) d
17708                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17709                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17710                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
17711           GROUP BY 1,2,6;
17712
17713         IF NOT FOUND THEN
17714             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17715         END IF;
17716
17717     END LOOP;
17718
17719     RETURN;
17720 END;
17721 $f$ LANGUAGE PLPGSQL;
17722
17723 CREATE OR REPLACE FUNCTION asset.metarecord_copy_count ( place INT, record BIGINT, staff BOOL) RETURNS TABLE (depth INT, org_unit INT, visible BIGINT, available BIGINT, unshadow BIGINT, transcendant INT) AS $f$
17724 BEGIN
17725     IF staff IS TRUE THEN
17726         IF place > 0 THEN
17727             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
17728         ELSE
17729             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
17730         END IF;
17731     ELSE
17732         IF place > 0 THEN
17733             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
17734         ELSE
17735             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
17736         END IF;
17737     END IF;
17738
17739     RETURN;
17740 END;
17741 $f$ LANGUAGE PLPGSQL;
17742
17743 -- No transaction is required
17744
17745 -- Triggers on the vandelay.queued_*_record tables delete entries from
17746 -- the associated vandelay.queued_*_record_attr tables based on the record's
17747 -- ID; create an index on that column to avoid sequential scans for each
17748 -- queued record that is deleted
17749 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
17750 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
17751
17752 -- Avoid sequential scans for queue retrieval operations by providing an
17753 -- index on the queue column
17754 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
17755 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
17756
17757 -- Start picking up call number label prefixes and suffixes
17758 -- from asset.copy_location
17759 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
17760 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
17761
17762 DROP VIEW auditor.asset_copy_lifecycle;
17763
17764 SELECT auditor.create_auditor_lifecycle( 'asset', 'copy' );
17765
17766 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
17767
17768 -- Let's not break existing reports
17769 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
17770 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
17771
17772 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
17773 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
17774 SELECT  r.id,
17775     r.fingerprint,
17776     r.quality,
17777     r.tcn_source,
17778     r.tcn_value,
17779     FIRST(title.value) AS title,
17780     FIRST(author.value) AS author,
17781     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
17782     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
17783     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
17784     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
17785   FROM  biblio.record_entry r
17786     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
17787     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
17788     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
17789     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
17790     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
17791     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
17792   GROUP BY 1,2,3,4,5;
17793
17794 -- Correct the ISSN array definition for reporter.simple_record
17795
17796 CREATE OR REPLACE VIEW reporter.simple_record AS
17797 SELECT  r.id,
17798         s.metarecord,
17799         r.fingerprint,
17800         r.quality,
17801         r.tcn_source,
17802         r.tcn_value,
17803         title.value AS title,
17804         uniform_title.value AS uniform_title,
17805         author.value AS author,
17806         publisher.value AS publisher,
17807         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
17808         series_title.value AS series_title,
17809         series_statement.value AS series_statement,
17810         summary.value AS summary,
17811         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
17812         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
17813         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
17814         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
17815         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
17816         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
17817         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
17818         ARRAY((SELECT value FROM metabib.full_rec WHERE tag = '856' AND subfield IN ('3','y','u') AND record = r.id ORDER BY CASE WHEN subfield IN ('3','y') THEN 0 ELSE 1 END)) AS external_uri
17819   FROM  biblio.record_entry r
17820         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
17821         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
17822         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
17823         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
17824         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
17825         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
17826         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
17827         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
17828         LEFT JOIN metabib.full_rec series_title ON (r.id = series_title.record AND series_title.tag IN ('830','440') AND series_title.subfield = 'a')
17829         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
17830         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
17831   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
17832
17833 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
17834     DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
17835 $$ LANGUAGE SQL;
17836
17837 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
17838 BEGIN
17839     IF TG_OP = 'DELETE' THEN
17840         PERFORM reporter.simple_rec_delete(NEW.id);
17841     ELSE
17842         PERFORM reporter.simple_rec_update(NEW.id);
17843     END IF;
17844
17845     RETURN NEW;
17846 END;
17847 $func$ LANGUAGE PLPGSQL;
17848
17849 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
17850
17851 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
17852
17853 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
17854
17855 UPDATE config.org_unit_setting_type
17856     SET view_perm = (SELECT id FROM permission.perm_list
17857         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
17858     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
17859
17860 UPDATE config.org_unit_setting_type
17861     SET update_perm = (SELECT id FROM permission.perm_list
17862         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
17863     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
17864
17865 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
17866     VALUES (
17867         'opac.fully_compressed_serial_holdings',
17868         'OPAC: Use fully compressed serial holdings',
17869         'Show fully compressed serial holdings for all libraries at and below
17870         the current context unit',
17871         'bool'
17872     );
17873
17874 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
17875     use strict;
17876     use warnings;
17877
17878     use utf8;
17879     use MARC::Record;
17880     use MARC::File::XML (BinaryEncoding => 'UTF8');
17881     use UUID::Tiny ':std';
17882
17883     my $xml = shift() or return undef;
17884
17885     my $r;
17886
17887     # Prevent errors in XML parsing from blowing out ungracefully
17888     eval {
17889         $r = MARC::Record->new_from_xml( $xml );
17890         1;
17891     } or do {
17892        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
17893     };
17894
17895     if (!$r) {
17896        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
17897     }
17898
17899     # From http://www.loc.gov/standards/sourcelist/subject.html
17900     my $thes_code_map = {
17901         a => 'lcsh',
17902         b => 'lcshac',
17903         c => 'mesh',
17904         d => 'nal',
17905         k => 'cash',
17906         n => 'notapplicable',
17907         r => 'aat',
17908         s => 'sears',
17909         v => 'rvm',
17910     };
17911
17912     # Default to "No attempt to code" if the leader is horribly broken
17913     my $fixed_field = $r->field('008');
17914     my $thes_char = '|';
17915     if ($fixed_field) {
17916         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
17917     }
17918
17919     my $thes_code = 'UNDEFINED';
17920
17921     if ($thes_char eq 'z') {
17922         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
17923         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
17924     } elsif ($thes_code_map->{$thes_char}) {
17925         $thes_code = $thes_code_map->{$thes_char};
17926     }
17927
17928     my $auth_txt = '';
17929     my $head = $r->field('1..');
17930     if ($head) {
17931         # Concatenate all of these subfields together, prefixed by their code
17932         # to prevent collisions along the lines of "Fiction, North Carolina"
17933         foreach my $sf ($head->subfields()) {
17934             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
17935         }
17936     }
17937
17938     # Perhaps better to parameterize the spi and pass as a parameter
17939     $auth_txt =~ s/'//go;
17940
17941     if ($auth_txt) {
17942         my $result = spi_exec_query("SELECT public.naco_normalize('$auth_txt') AS norm_text");
17943         my $norm_txt = $result->{rows}[0]->{norm_text};
17944         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
17945     }
17946
17947     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
17948 $func$ LANGUAGE 'plperlu' IMMUTABLE;
17949
17950 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
17951 /**
17952 * Extract the authority heading, thesaurus, and NACO-normalized values
17953 * from an authority record. The primary purpose is to build a unique
17954 * index to defend against duplicated authority records from the same
17955 * thesaurus.
17956 */
17957 $$;
17958
17959 DROP INDEX authority.authority_record_unique_tcn;
17960 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
17961 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
17962
17963 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
17964
17965 CREATE INDEX by_heading_and_thesaurus
17966     ON authority.record_entry (authority.normalize_heading(marc))
17967     WHERE deleted IS FALSE or deleted = FALSE
17968 ;
17969
17970 ALTER TABLE acq.provider_contact
17971         ALTER COLUMN name SET NOT NULL;
17972
17973 ALTER TABLE actor.stat_cat
17974         ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
17975
17976 -- Recreate some foreign keys that were somehow dropped, probably
17977 -- by some kind of cascade from an inherited table:
17978
17979 ALTER TABLE action.reservation_transit_copy
17980         ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy)
17981                 REFERENCES booking.resource(id)
17982                 ON DELETE CASCADE
17983                 DEFERRABLE INITIALLY DEFERRED,
17984         ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation)
17985                 REFERENCES booking.reservation(id)
17986                 ON DELETE SET NULL
17987                 DEFERRABLE INITIALLY DEFERRED;
17988
17989 CREATE INDEX user_bucket_item_target_user_idx
17990         ON container.user_bucket_item ( target_user );
17991
17992 CREATE INDEX m_c_t_collector_idx
17993         ON money.collections_tracker ( collector );
17994
17995 CREATE INDEX aud_actor_usr_address_hist_id_idx
17996         ON auditor.actor_usr_address_history ( id );
17997
17998 CREATE INDEX aud_actor_usr_hist_id_idx
17999         ON auditor.actor_usr_history ( id );
18000
18001 CREATE INDEX aud_asset_cn_hist_creator_idx
18002         ON auditor.asset_call_number_history ( creator );
18003
18004 CREATE INDEX aud_asset_cn_hist_editor_idx
18005         ON auditor.asset_call_number_history ( editor );
18006
18007 CREATE INDEX aud_asset_cp_hist_creator_idx
18008         ON auditor.asset_copy_history ( creator );
18009
18010 CREATE INDEX aud_asset_cp_hist_editor_idx
18011         ON auditor.asset_copy_history ( editor );
18012
18013 CREATE INDEX aud_bib_rec_entry_hist_creator_idx
18014         ON auditor.biblio_record_entry_history ( creator );
18015
18016 CREATE INDEX aud_bib_rec_entry_hist_editor_idx
18017         ON auditor.biblio_record_entry_history ( editor );
18018
18019 COMMIT;
18020
18021 -- Some operations go outside of the transaction, because they may
18022 -- legitimately fail.
18023
18024 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
18025 \qecho doesn't exist; ignore those errors if they occur.
18026
18027 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
18028
18029 ALTER TABLE auditor.action_hold_request_history
18030 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
18031
18032 ALTER TABLE auditor.action_hold_request_history
18033 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
18034
18035 \qecho Outside of the transaction: adding indexes that may or may not exist.
18036 \qecho If any of these CREATE INDEX statements fails because the index already
18037 \qecho exists, ignore the failure.
18038
18039 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
18040 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
18041 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
18042 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
18043 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
18044 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
18045 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
18046 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
18047 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
18048 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
18049 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
18050 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
18051 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
18052 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
18053 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
18054 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
18055 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
18056 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
18057 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
18058 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
18059 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
18060 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
18061 CREATE INDEX serial_item_status_idx ON serial.item (status);
18062 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
18063 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
18064 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
18065 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
18066
18067 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
18068
18069 \qecho if the following CREATE INDEX fails, It will be necessary to do some
18070 \qecho data cleanup as described in the comments.
18071
18072 -- If the unique index fails, uncomment the following to create
18073 -- a regular index that will help find the duplicates in a hurry:
18074 --CREATE INDEX by_heading_and_thesaurus
18075 --    ON authority.record_entry (authority.normalize_heading(marc))
18076 --    WHERE deleted IS FALSE or deleted = FALSE
18077 --;
18078
18079 -- Then find the duplicates like so to get an idea of how much
18080 -- pain you're looking at to clean things up:
18081 --SELECT id, authority.normalize_heading(marc)
18082 --    FROM authority.record_entry
18083 --    WHERE authority.normalize_heading(marc) IN (
18084 --        SELECT authority.normalize_heading(marc)
18085 --        FROM authority.record_entry
18086 --        GROUP BY authority.normalize_heading(marc)
18087 --        HAVING COUNT(*) > 1
18088 --    )
18089 --;
18090
18091 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
18092 -- statement succeeds, drop the temporary index to avoid unnecessary
18093 -- duplication:
18094 -- DROP INDEX authority.by_heading_and_thesaurus;
18095
18096 \qecho Upgrade script completed.