]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
Incorporate upgrade scripts 0423 and 0424
[Evergreen.git] / Open-ILS / src / sql / Pg / 1.6.1-2.0-upgrade-db.sql
1 -- Before starting the transaction: drop some constraints that
2 -- may or may not exist.
3
4 \qecho Before starting the transaction: drop some constraints.
5 \qecho If a DROP fails because the constraint doesn't exist, ignore the failure.
6
7 ALTER TABLE permission.grp_perm_map        DROP CONSTRAINT grp_perm_map_perm_fkey;
8 ALTER TABLE permission.usr_perm_map        DROP CONSTRAINT usr_perm_map_perm_fkey;
9 ALTER TABLE permission.usr_object_perm_map DROP CONSTRAINT usr_object_perm_map_perm_fkey;
10 ALTER TABLE booking.resource_type          DROP CONSTRAINT brt_name_or_record_once_per_owner;
11 ALTER TABLE booking.resource_type          DROP CONSTRAINT brt_name_once_per_owner;
12
13 \qecho Beginning the transaction now
14
15 BEGIN;
16
17 -- Highest-numbered individual upgrade script incorporated herein:
18
19 INSERT INTO config.upgrade_log (version) VALUES ('0424');
20
21 -- Recreate one of the constraints that we just dropped,
22 -- under a different name:
23
24 ALTER TABLE booking.resource_type
25         ADD CONSTRAINT brt_name_and_record_once_per_owner UNIQUE(owner, name, record);
26
27 -- Now upgrade permission.perm_list.  This is fairly complicated.
28
29 -- Add ON UPDATE CASCADE to some foreign keys so that, when we renumber the
30 -- permissions, the dependents will follow and stay in sync:
31
32 ALTER TABLE permission.grp_perm_map ADD CONSTRAINT grp_perm_map_perm_fkey FOREIGN KEY (perm)
33     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
34
35 ALTER TABLE permission.usr_perm_map ADD CONSTRAINT usr_perm_map_perm_fkey FOREIGN KEY (perm)
36     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
37
38 ALTER TABLE permission.usr_object_perm_map ADD CONSTRAINT usr_object_perm_map_perm_fkey FOREIGN KEY (perm)
39     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
40
41 UPDATE permission.perm_list
42     SET code = 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow'
43     WHERE code = 'UPDATE_ORG_UNIT_SETTING.global.credit.allow';
44
45 -- The following UPDATES were originally in an individual upgrade script, but should
46 -- no longer be necessary now that the foreign key has an ON UPDATE CASCADE clause.
47 -- We retain the UPDATES here, commented out, as historical relics.
48
49 -- UPDATE permission.grp_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
50 -- UPDATE permission.usr_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
51
52 -- Spelling correction
53 UPDATE permission.perm_list SET code = 'ADMIN_RECURRING_FINE_RULE' WHERE code = 'ADMIN_RECURING_FINE_RULE';
54
55 -- Now we engage in a Great Renumbering of the permissions in permission.perm_list,
56 -- in order to clean up accumulated cruft.
57
58 -- The first step is to establish some triggers so that, when we change the id of a permission,
59 -- the associated translations are updated accordingly.
60
61 CREATE OR REPLACE FUNCTION oils_i18n_update_apply(old_ident TEXT, new_ident TEXT, hint TEXT) RETURNS VOID AS $_$
62 BEGIN
63
64     EXECUTE $$
65         UPDATE  config.i18n_core
66           SET   identity_value = $$ || quote_literal( new_ident ) || $$ 
67           WHERE fq_field LIKE '$$ || hint || $$.%' 
68                 AND identity_value = $$ || quote_literal( old_ident ) || $$;$$;
69
70     RETURN;
71
72 END;
73 $_$ LANGUAGE PLPGSQL;
74
75 CREATE OR REPLACE FUNCTION oils_i18n_id_tracking(/* hint */) RETURNS TRIGGER AS $_$
76 BEGIN
77     PERFORM oils_i18n_update_apply( OLD.id::TEXT, NEW.id::TEXT, TG_ARGV[0]::TEXT );
78     RETURN NEW;
79 END;
80 $_$ LANGUAGE PLPGSQL;
81
82 CREATE OR REPLACE FUNCTION oils_i18n_code_tracking(/* hint */) RETURNS TRIGGER AS $_$
83 BEGIN
84     PERFORM oils_i18n_update_apply( OLD.code::TEXT, NEW.code::TEXT, TG_ARGV[0]::TEXT );
85     RETURN NEW;
86 END;
87 $_$ LANGUAGE PLPGSQL;
88
89
90 CREATE TRIGGER maintain_perm_i18n_tgr
91     AFTER UPDATE ON permission.perm_list
92     FOR EACH ROW EXECUTE PROCEDURE oils_i18n_id_tracking('ppl');
93
94 -- Next, create a new table as a convenience for sloshing data back and forth,
95 -- and for recording which permission went where.  It looks just like
96 -- permission.perm_list, but with two extra columns: one for the old id, and one to
97 -- distinguish between predefined permissions and non-predefined permissions.
98
99 -- This table is, in effect, a temporary table, because we can drop it once the
100 -- upgrade is complete.  It is not technically temporary as far as PostgreSQL is
101 -- concerned, because we don't want it to disappear at the end of the session.
102 -- We keep it around so that we have a map showing the old id and the new id for
103 -- each permission.  However there is no IDL entry for it, nor is it defined
104 -- in the base sql files.
105
106 CREATE TABLE permission.temp_perm (
107         id          INT        PRIMARY KEY,
108         code        TEXT       UNIQUE,
109         description TEXT,
110         old_id      INT,
111         predefined  BOOL       NOT NULL DEFAULT TRUE
112 );
113
114 -- Populate the temp table with a definitive set of predefined permissions,
115 -- hard-coding the ids.
116
117 -- The first set of permissions is derived from the database, as loaded in a
118 -- loaded 1.6.1 database, plus a few changes previously applied in this upgrade
119 -- script.  The second set is derived from the IDL -- permissions that are referenced
120 -- in <permacrud> elements but not defined in the database.
121
122 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( -1, 'EVERYTHING',
123      '' );
124 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 1, 'OPAC_LOGIN',
125      'Allow a user to log in to the OPAC' );
126 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 2, 'STAFF_LOGIN',
127      'Allow a user to log in to the staff client' );
128 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 3, 'MR_HOLDS',
129      'Allow a user to create a metarecord holds' );
130 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 4, 'TITLE_HOLDS',
131      'Allow a user to place a hold at the title level' );
132 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 5, 'VOLUME_HOLDS',
133      'Allow a user to place a volume level hold' );
134 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 6, 'COPY_HOLDS',
135      'Allow a user to place a hold on a specific copy' );
136 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 7, 'REQUEST_HOLDS',
137      '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)' );
138 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 8, 'REQUEST_HOLDS_OVERRIDE',
139      '* no longer applicable' );
140 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 9, 'VIEW_HOLD',
141      'Allow a user to view another user''s holds' );
142 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 10, 'DELETE_HOLDS',
143      '* no longer applicable' );
144 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 11, 'UPDATE_HOLD',
145      'Allow a user to update another user''s hold' );
146 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 12, 'RENEW_CIRC',
147      'Allow a user to renew items' );
148 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 13, 'VIEW_USER_FINES_SUMMARY',
149      'Allow a user to view bill details' );
150 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 14, 'VIEW_USER_TRANSACTIONS',
151      'Allow a user to see another user''s grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION' );
152 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 15, 'UPDATE_MARC',
153      'Allow a user to edit a MARC record' );
154 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 16, 'CREATE_MARC',
155      'Allow a user to create new MARC records' );
156 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 17, 'IMPORT_MARC',
157      'Allow a user to import a MARC record via the Z39.50 interface' );
158 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 18, 'CREATE_VOLUME',
159      'Allow a user to create a volume' );
160 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 19, 'UPDATE_VOLUME',
161      '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.' );
162 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 20, 'DELETE_VOLUME',
163      'Allow a user to delete a volume' );
164 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 21, 'CREATE_COPY',
165      'Allow a user to create a new copy object' );
166 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 22, 'UPDATE_COPY',
167      'Allow a user to edit a copy' );
168 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 23, 'DELETE_COPY',
169      'Allow a user to delete a copy' );
170 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 24, 'RENEW_HOLD_OVERRIDE',
171      'Allow a user to continue to renew an item even if it is required for a hold' );
172 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 25, 'CREATE_USER',
173      'Allow a user to create another user' );
174 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 26, 'UPDATE_USER',
175      'Allow a user to edit a user''s record' );
176 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 27, 'DELETE_USER',
177      'Allow a user to mark a user as deleted' );
178 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 28, 'VIEW_USER',
179      'Allow a user to view another user''s Patron Record' );
180 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 29, 'COPY_CHECKIN',
181      'Allow a user to check in a copy' );
182 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 30, 'CREATE_TRANSIT',
183      'Allow a user to place an item in transit' );
184 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 31, 'VIEW_PERMISSION',
185      'Allow a user to view user permissions within the user permissions editor' );
186 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 32, 'CHECKIN_BYPASS_HOLD_FULFILL',
187      '* no longer applicable' );
188 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 33, 'CREATE_PAYMENT',
189      'Allow a user to record payments in the Billing Interface' );
190 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 34, 'SET_CIRC_LOST',
191      'Allow a user to mark an item as ''lost''' );
192 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 35, 'SET_CIRC_MISSING',
193      'Allow a user to mark an item as ''missing''' );
194 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 36, 'SET_CIRC_CLAIMS_RETURNED',
195      'Allow a user to mark an item as ''claims returned''' );
196 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 37, 'CREATE_TRANSACTION',
197      'Allow a user to create a new billable transaction' );
198 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 38, 'VIEW_TRANSACTION',
199      'Allow a user may view another user''s transactions' );
200 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 39, 'CREATE_BILL',
201      'Allow a user to create a new bill on a transaction' );
202 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 40, 'VIEW_CONTAINER',
203      'Allow a user to view another user''s containers (buckets)' );
204 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 41, 'CREATE_CONTAINER',
205      'Allow a user to create a new container for another user' );
206 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 42, 'UPDATE_ORG_UNIT',
207      'Allow a user to change the settings for an organization unit' );
208 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 43, 'VIEW_CIRCULATIONS',
209      'Allow a user to see what another user has checked out' );
210 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 44, 'DELETE_CONTAINER',
211      'Allow a user to delete another user''s container' );
212 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 45, 'CREATE_CONTAINER_ITEM',
213      'Allow a user to create a container item for another user' );
214 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 46, 'CREATE_USER_GROUP_LINK',
215      'Allow a user to add other users to permission groups' );
216 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 47, 'REMOVE_USER_GROUP_LINK',
217      'Allow a user to remove other users from permission groups' );
218 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 48, 'VIEW_PERM_GROUPS',
219      'Allow a user to view other users'' permission groups' );
220 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 49, 'VIEW_PERMIT_CHECKOUT',
221      'Allow a user to determine whether another user can check out an item' );
222 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 50, 'UPDATE_BATCH_COPY',
223      'Allow a user to edit copies in batch' );
224 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 51, 'CREATE_PATRON_STAT_CAT',
225      'User may create a new patron statistical category' );
226 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 52, 'CREATE_COPY_STAT_CAT',
227      'User may create a copy statistical category' );
228 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 53, 'CREATE_PATRON_STAT_CAT_ENTRY',
229      'User may create an entry in a patron statistical category' );
230 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 54, 'CREATE_COPY_STAT_CAT_ENTRY',
231      'User may create an entry in a copy statistical category' );
232 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 55, 'UPDATE_PATRON_STAT_CAT',
233      'User may update a patron statistical category' );
234 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 56, 'UPDATE_COPY_STAT_CAT',
235      'User may update a copy statistical category' );
236 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 57, 'UPDATE_PATRON_STAT_CAT_ENTRY',
237      'User may update an entry in a patron statistical category' );
238 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 58, 'UPDATE_COPY_STAT_CAT_ENTRY',
239      'User may update an entry in a copy statistical category' );
240 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 59, 'CREATE_PATRON_STAT_CAT_ENTRY_MAP',
241      'User may link another user to an entry in a statistical category' );
242 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 60, 'CREATE_COPY_STAT_CAT_ENTRY_MAP',
243      'User may link a copy to an entry in a statistical category' );
244 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 61, 'DELETE_PATRON_STAT_CAT',
245      'User may delete a patron statistical category' );
246 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 62, 'DELETE_COPY_STAT_CAT',
247      'User may delete a copy statistical category' );
248 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 63, 'DELETE_PATRON_STAT_CAT_ENTRY',
249      'User may delete an entry from a patron statistical category' );
250 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 64, 'DELETE_COPY_STAT_CAT_ENTRY',
251      'User may delete an entry from a copy statistical category' );
252 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 65, 'DELETE_PATRON_STAT_CAT_ENTRY_MAP',
253      'User may delete a patron statistical category entry map' );
254 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 66, 'DELETE_COPY_STAT_CAT_ENTRY_MAP',
255      'User may delete a copy statistical category entry map' );
256 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 67, 'CREATE_NON_CAT_TYPE',
257      'Allow a user to create a new non-cataloged item type' );
258 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 68, 'UPDATE_NON_CAT_TYPE',
259      'Allow a user to update a non-cataloged item type' );
260 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 69, 'CREATE_IN_HOUSE_USE',
261      'Allow a user to create a new in-house-use ' );
262 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 70, 'COPY_CHECKOUT',
263      'Allow a user to check out a copy' );
264 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 71, 'CREATE_COPY_LOCATION',
265      'Allow a user to create a new copy location' );
266 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 72, 'UPDATE_COPY_LOCATION',
267      'Allow a user to update a copy location' );
268 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 73, 'DELETE_COPY_LOCATION',
269      'Allow a user to delete a copy location' );
270 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 74, 'CREATE_COPY_TRANSIT',
271      'Allow a user to create a transit_copy object for transiting a copy' );
272 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 75, 'COPY_TRANSIT_RECEIVE',
273      'Allow a user to close out a transit on a copy' );
274 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 76, 'VIEW_HOLD_PERMIT',
275      'Allow a user to see if another user has permission to place a hold on a given copy' );
276 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 77, 'VIEW_COPY_CHECKOUT_HISTORY',
277      'Allow a user to view which users have checked out a given copy' );
278 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 78, 'REMOTE_Z3950_QUERY',
279      'Allow a user to perform Z39.50 queries against remote servers' );
280 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 79, 'REGISTER_WORKSTATION',
281      'Allow a user to register a new workstation' );
282 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 80, 'VIEW_COPY_NOTES',
283      'Allow a user to view all notes attached to a copy' );
284 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 81, 'VIEW_VOLUME_NOTES',
285      'Allow a user to view all notes attached to a volume' );
286 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 82, 'VIEW_TITLE_NOTES',
287      'Allow a user to view all notes attached to a title' );
288 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 83, 'CREATE_COPY_NOTE',
289      'Allow a user to create a new copy note' );
290 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 84, 'CREATE_VOLUME_NOTE',
291      'Allow a user to create a new volume note' );
292 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 85, 'CREATE_TITLE_NOTE',
293      'Allow a user to create a new title note' );
294 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 86, 'DELETE_COPY_NOTE',
295      'Allow a user to delete another user''s copy notes' );
296 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 87, 'DELETE_VOLUME_NOTE',
297      'Allow a user to delete another user''s volume note' );
298 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 88, 'DELETE_TITLE_NOTE',
299      'Allow a user to delete another user''s title note' );
300 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 89, 'UPDATE_CONTAINER',
301      'Allow a user to update another user''s container' );
302 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 90, 'CREATE_MY_CONTAINER',
303      'Allow a user to create a container for themselves' );
304 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 91, 'VIEW_HOLD_NOTIFICATION',
305      'Allow a user to view notifications attached to a hold' );
306 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 92, 'CREATE_HOLD_NOTIFICATION',
307      'Allow a user to create new hold notifications' );
308 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 93, 'UPDATE_ORG_SETTING',
309      'Allow a user to update an organization unit setting' );
310 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 94, 'OFFLINE_UPLOAD',
311      'Allow a user to upload an offline script' );
312 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 95, 'OFFLINE_VIEW',
313      'Allow a user to view uploaded offline script information' );
314 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 96, 'OFFLINE_EXECUTE',
315      'Allow a user to execute an offline script batch' );
316 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 97, 'CIRC_OVERRIDE_DUE_DATE',
317      'Allow a user to change the due date on an item to any date' );
318 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 98, 'CIRC_PERMIT_OVERRIDE',
319      'Allow a user to bypass the circulation permit call for check out' );
320 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 99, 'COPY_IS_REFERENCE.override',
321      'Allow a user to override the copy_is_reference event' );
322 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 100, 'VOID_BILLING',
323      'Allow a user to void a bill' );
324 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 101, 'CIRC_CLAIMS_RETURNED.override',
325      'Allow a user to check in or check out an item that has a status of ''claims returned''' );
326 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 102, 'COPY_BAD_STATUS.override',
327      'Allow a user to check out an item in a non-circulatable status' );
328 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 103, 'COPY_ALERT_MESSAGE.override',
329      'Allow a user to check in/out an item that has an alert message' );
330 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 104, 'COPY_STATUS_LOST.override',
331      'Allow a user to remove the lost status from a copy' );
332 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 105, 'COPY_STATUS_MISSING.override',
333      'Allow a user to change the missing status on a copy' );
334 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 106, 'ABORT_TRANSIT',
335      'Allow a user to abort a copy transit if the user is at the transit destination or source' );
336 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 107, 'ABORT_REMOTE_TRANSIT',
337      'Allow a user to abort a copy transit if the user is not at the transit source or dest' );
338 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 108, 'VIEW_ZIP_DATA',
339      'Allow a user to query the ZIP code data method' );
340 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 109, 'CANCEL_HOLDS',
341      'Allow a user to cancel holds' );
342 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 110, 'CREATE_DUPLICATE_HOLDS',
343      'Allow a user to create duplicate holds (two or more holds on the same title)' );
344 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 111, 'actor.org_unit.closed_date.delete',
345      'Allow a user to remove a closed date interval for a given location' );
346 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 112, 'actor.org_unit.closed_date.update',
347      'Allow a user to update a closed date interval for a given location' );
348 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 113, 'actor.org_unit.closed_date.create',
349      'Allow a user to create a new closed date for a location' );
350 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 114, 'DELETE_NON_CAT_TYPE',
351      'Allow a user to delete a non cataloged type' );
352 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 115, 'money.collections_tracker.create',
353      'Allow a user to put someone into collections' );
354 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 116, 'money.collections_tracker.delete',
355      'Allow a user to remove someone from collections' );
356 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 117, 'BAR_PATRON',
357      'Allow a user to bar a patron' );
358 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 118, 'UNBAR_PATRON',
359      'Allow a user to un-bar a patron' );
360 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 119, 'DELETE_WORKSTATION',
361      'Allow a user to remove an existing workstation so a new one can replace it' );
362 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 120, 'group_application.user',
363      'Allow a user to add/remove users to/from the "User" group' );
364 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 121, 'group_application.user.patron',
365      'Allow a user to add/remove users to/from the "Patron" group' );
366 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 122, 'group_application.user.staff',
367      'Allow a user to add/remove users to/from the "Staff" group' );
368 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 123, 'group_application.user.staff.circ',
369      'Allow a user to add/remove users to/from the "Circulator" group' );
370 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 124, 'group_application.user.staff.cat',
371      'Allow a user to add/remove users to/from the "Cataloger" group' );
372 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 125, 'group_application.user.staff.admin.global_admin',
373      'Allow a user to add/remove users to/from the "GlobalAdmin" group' );
374 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 126, 'group_application.user.staff.admin.local_admin',
375      'Allow a user to add/remove users to/from the "LocalAdmin" group' );
376 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 127, 'group_application.user.staff.admin.lib_manager',
377      'Allow a user to add/remove users to/from the "LibraryManager" group' );
378 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 128, 'group_application.user.staff.cat.cat1',
379      'Allow a user to add/remove users to/from the "Cat1" group' );
380 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 129, 'group_application.user.staff.supercat',
381      'Allow a user to add/remove users to/from the "Supercat" group' );
382 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 130, 'group_application.user.sip_client',
383      'Allow a user to add/remove users to/from the "SIP-Client" group' );
384 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 131, 'group_application.user.vendor',
385      'Allow a user to add/remove users to/from the "Vendor" group' );
386 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 132, 'ITEM_AGE_PROTECTED.override',
387      'Allow a user to place a hold on an age-protected item' );
388 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 133, 'MAX_RENEWALS_REACHED.override',
389      'Allow a user to renew an item past the maximum renewal count' );
390 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 134, 'PATRON_EXCEEDS_CHECKOUT_COUNT.override',
391      'Allow staff to override checkout count failure' );
392 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 135, 'PATRON_EXCEEDS_OVERDUE_COUNT.override',
393      'Allow staff to override overdue count failure' );
394 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 136, 'PATRON_EXCEEDS_FINES.override',
395      'Allow staff to override fine amount checkout failure' );
396 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 137, 'CIRC_EXCEEDS_COPY_RANGE.override',
397      'Allow staff to override circulation copy range failure' );
398 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 138, 'ITEM_ON_HOLDS_SHELF.override',
399      'Allow staff to override item on holds shelf failure' );
400 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 139, 'COPY_NOT_AVAILABLE.override',
401      'Allow staff to force checkout of Missing/Lost type items' );
402 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 140, 'HOLD_EXISTS.override',
403      'Allow a user to place multiple holds on a single title' );
404 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 141, 'RUN_REPORTS',
405      'Allow a user to run reports' );
406 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 142, 'SHARE_REPORT_FOLDER',
407      'Allow a user to share report his own folders' );
408 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 143, 'VIEW_REPORT_OUTPUT',
409      'Allow a user to view report output' );
410 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 144, 'COPY_CIRC_NOT_ALLOWED.override',
411      'Allow a user to checkout an item that is marked as non-circ' );
412 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 145, 'DELETE_CONTAINER_ITEM',
413      'Allow a user to delete an item out of another user''s container' );
414 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 146, 'ASSIGN_WORK_ORG_UNIT',
415      'Allow a staff member to define where another staff member has their permissions' );
416 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 147, 'CREATE_FUNDING_SOURCE',
417      'Allow a user to create a new funding source' );
418 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 148, 'DELETE_FUNDING_SOURCE',
419      'Allow a user to delete a funding source' );
420 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 149, 'VIEW_FUNDING_SOURCE',
421      'Allow a user to view a funding source' );
422 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 150, 'UPDATE_FUNDING_SOURCE',
423      'Allow a user to update a funding source' );
424 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 151, 'CREATE_FUND',
425      'Allow a user to create a new fund' );
426 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 152, 'DELETE_FUND',
427      'Allow a user to delete a fund' );
428 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 153, 'VIEW_FUND',
429      'Allow a user to view a fund' );
430 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 154, 'UPDATE_FUND',
431      'Allow a user to update a fund' );
432 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 155, 'CREATE_FUND_ALLOCATION',
433      'Allow a user to create a new fund allocation' );
434 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 156, 'DELETE_FUND_ALLOCATION',
435      'Allow a user to delete a fund allocation' );
436 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 157, 'VIEW_FUND_ALLOCATION',
437      'Allow a user to view a fund allocation' );
438 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 158, 'UPDATE_FUND_ALLOCATION',
439      'Allow a user to update a fund allocation' );
440 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 159, 'GENERAL_ACQ',
441      'Lowest level permission required to access the ACQ interface' );
442 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 160, 'CREATE_PROVIDER',
443      'Allow a user to create a new provider' );
444 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 161, 'DELETE_PROVIDER',
445      'Allow a user to delate a provider' );
446 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 162, 'VIEW_PROVIDER',
447      'Allow a user to view a provider' );
448 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 163, 'UPDATE_PROVIDER',
449      'Allow a user to update a provider' );
450 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 164, 'ADMIN_FUNDING_SOURCE',
451      'Allow a user to create/view/update/delete a funding source' );
452 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 165, 'ADMIN_FUND',
453      '(Deprecated) Allow a user to create/view/update/delete a fund' );
454 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 166, 'MANAGE_FUNDING_SOURCE',
455      'Allow a user to view/credit/debit a funding source' );
456 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 167, 'MANAGE_FUND',
457      'Allow a user to view/credit/debit a fund' );
458 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 168, 'CREATE_PICKLIST',
459      'Allows a user to create a picklist' );
460 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 169, 'ADMIN_PROVIDER',
461      'Allow a user to create/view/update/delete a provider' );
462 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 170, 'MANAGE_PROVIDER',
463      'Allow a user to view and purchase from a provider' );
464 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 171, 'VIEW_PICKLIST',
465      'Allow a user to view another users picklist' );
466 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 172, 'DELETE_RECORD',
467      'Allow a staff member to directly remove a bibliographic record' );
468 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 173, 'ADMIN_CURRENCY_TYPE',
469      'Allow a user to create/view/update/delete a currency_type' );
470 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 174, 'MARK_BAD_DEBT',
471      'Allow a user to mark a transaction as bad (unrecoverable) debt' );
472 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 175, 'VIEW_BILLING_TYPE',
473      'Allow a user to view billing types' );
474 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 176, 'MARK_ITEM_AVAILABLE',
475      'Allow a user to mark an item status as ''available''' );
476 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 177, 'MARK_ITEM_CHECKED_OUT',
477      'Allow a user to mark an item status as ''checked out''' );
478 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 178, 'MARK_ITEM_BINDERY',
479      'Allow a user to mark an item status as ''bindery''' );
480 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 179, 'MARK_ITEM_LOST',
481      'Allow a user to mark an item status as ''lost''' );
482 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 180, 'MARK_ITEM_MISSING',
483      'Allow a user to mark an item status as ''missing''' );
484 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 181, 'MARK_ITEM_IN_PROCESS',
485      'Allow a user to mark an item status as ''in process''' );
486 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 182, 'MARK_ITEM_IN_TRANSIT',
487      'Allow a user to mark an item status as ''in transit''' );
488 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 183, 'MARK_ITEM_RESHELVING',
489      'Allow a user to mark an item status as ''reshelving''' );
490 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 184, 'MARK_ITEM_ON_HOLDS_SHELF',
491      'Allow a user to mark an item status as ''on holds shelf''' );
492 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 185, 'MARK_ITEM_ON_ORDER',
493      'Allow a user to mark an item status as ''on order''' );
494 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 186, 'MARK_ITEM_ILL',
495      'Allow a user to mark an item status as ''inter-library loan''' );
496 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 187, 'group_application.user.staff.acq',
497      'Allows a user to add/remove/edit users in the "ACQ" group' );
498 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 188, 'CREATE_PURCHASE_ORDER',
499      'Allows a user to create a purchase order' );
500 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 189, 'VIEW_PURCHASE_ORDER',
501      'Allows a user to view a purchase order' );
502 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 190, 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
503      'Allows a user to import a bib record from the acq staging area (on-order record) into the ILS bib data set' );
504 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 191, 'RECEIVE_PURCHASE_ORDER',
505      'Allows a user to mark a purchase order, lineitem, or individual copy as received' );
506 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 192, 'VIEW_ORG_SETTINGS',
507      'Allows a user to view all org settings at the specified level' );
508 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 193, 'CREATE_MFHD_RECORD',
509      'Allows a user to create a new MFHD record' );
510 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 194, 'UPDATE_MFHD_RECORD',
511      'Allows a user to update an MFHD record' );
512 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 195, 'DELETE_MFHD_RECORD',
513      'Allows a user to delete an MFHD record' );
514 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 196, 'ADMIN_ACQ_FUND',
515      'Allow a user to create/view/update/delete a fund' );
516 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 197, 'group_application.user.staff.acq_admin',
517      'Allows a user to add/remove/edit users in the "Acquisitions Administrators" group' );
518 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 198, 'SET_CIRC_CLAIMS_RETURNED.override',
519      'Allows staff to override the max claims returned value for a patron' );
520 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 199, 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
521      'Allows staff to manually change a patron''s claims returned count' );
522 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 200, 'UPDATE_BILL_NOTE',
523      'Allows staff to edit the note for a bill on a transaction' );
524 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 201, 'UPDATE_PAYMENT_NOTE',
525      'Allows staff to edit the note for a payment on a transaction' );
526 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
527      'Allows staff to manually change a patron''s claims never checkout out count' );
528 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 203, 'ADMIN_COPY_LOCATION_ORDER',
529      'Allow a user to create/view/update/delete a copy location order' );
530 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 204, 'ASSIGN_GROUP_PERM',
531      '' );
532 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 205, 'CREATE_AUDIENCE',
533      '' );
534 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 206, 'CREATE_BIB_LEVEL',
535      '' );
536 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 207, 'CREATE_CIRC_DURATION',
537      '' );
538 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 208, 'CREATE_CIRC_MOD',
539      '' );
540 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 209, 'CREATE_COPY_STATUS',
541      '' );
542 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 210, 'CREATE_HOURS_OF_OPERATION',
543      '' );
544 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 211, 'CREATE_ITEM_FORM',
545      '' );
546 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 212, 'CREATE_ITEM_TYPE',
547      '' );
548 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 213, 'CREATE_LANGUAGE',
549      '' );
550 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 214, 'CREATE_LASSO',
551      '' );
552 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 215, 'CREATE_LASSO_MAP',
553      '' );
554 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 216, 'CREATE_LIT_FORM',
555      '' );
556 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 217, 'CREATE_METABIB_FIELD',
557      '' );
558 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 218, 'CREATE_NET_ACCESS_LEVEL',
559      '' );
560 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 219, 'CREATE_ORG_ADDRESS',
561      '' );
562 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 220, 'CREATE_ORG_TYPE',
563      '' );
564 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 221, 'CREATE_ORG_UNIT',
565      '' );
566 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 222, 'CREATE_ORG_UNIT_CLOSING',
567      '' );
568 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 223, 'CREATE_PERM',
569      '' );
570 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 224, 'CREATE_RELEVANCE_ADJUSTMENT',
571      '' );
572 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 225, 'CREATE_SURVEY',
573      '' );
574 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 226, 'CREATE_VR_FORMAT',
575      '' );
576 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 227, 'CREATE_XML_TRANSFORM',
577      '' );
578 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 228, 'DELETE_AUDIENCE',
579      '' );
580 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 229, 'DELETE_BIB_LEVEL',
581      '' );
582 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 230, 'DELETE_CIRC_DURATION',
583      '' );
584 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 231, 'DELETE_CIRC_MOD',
585      '' );
586 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 232, 'DELETE_COPY_STATUS',
587      '' );
588 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 233, 'DELETE_HOURS_OF_OPERATION',
589      '' );
590 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 234, 'DELETE_ITEM_FORM',
591      '' );
592 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 235, 'DELETE_ITEM_TYPE',
593      '' );
594 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 236, 'DELETE_LANGUAGE',
595      '' );
596 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 237, 'DELETE_LASSO',
597      '' );
598 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 238, 'DELETE_LASSO_MAP',
599      '' );
600 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 239, 'DELETE_LIT_FORM',
601      '' );
602 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 240, 'DELETE_METABIB_FIELD',
603      '' );
604 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 241, 'DELETE_NET_ACCESS_LEVEL',
605      '' );
606 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 242, 'DELETE_ORG_ADDRESS',
607      '' );
608 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 243, 'DELETE_ORG_TYPE',
609      '' );
610 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 244, 'DELETE_ORG_UNIT',
611      '' );
612 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 245, 'DELETE_ORG_UNIT_CLOSING',
613      '' );
614 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 246, 'DELETE_PERM',
615      '' );
616 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 247, 'DELETE_RELEVANCE_ADJUSTMENT',
617      '' );
618 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 248, 'DELETE_SURVEY',
619      '' );
620 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 249, 'DELETE_TRANSIT',
621      '' );
622 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 250, 'DELETE_VR_FORMAT',
623      '' );
624 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 251, 'DELETE_XML_TRANSFORM',
625      '' );
626 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 252, 'REMOVE_GROUP_PERM',
627      '' );
628 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 253, 'TRANSIT_COPY',
629      '' );
630 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 254, 'UPDATE_AUDIENCE',
631      '' );
632 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 255, 'UPDATE_BIB_LEVEL',
633      '' );
634 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 256, 'UPDATE_CIRC_DURATION',
635      '' );
636 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 257, 'UPDATE_CIRC_MOD',
637      '' );
638 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 258, 'UPDATE_COPY_NOTE',
639      '' );
640 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 259, 'UPDATE_COPY_STATUS',
641      '' );
642 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 260, 'UPDATE_GROUP_PERM',
643      '' );
644 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 261, 'UPDATE_HOURS_OF_OPERATION',
645      '' );
646 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 262, 'UPDATE_ITEM_FORM',
647      '' );
648 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 263, 'UPDATE_ITEM_TYPE',
649      '' );
650 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 264, 'UPDATE_LANGUAGE',
651      '' );
652 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 265, 'UPDATE_LASSO',
653      '' );
654 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 266, 'UPDATE_LASSO_MAP',
655      '' );
656 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 267, 'UPDATE_LIT_FORM',
657      '' );
658 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 268, 'UPDATE_METABIB_FIELD',
659      '' );
660 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 269, 'UPDATE_NET_ACCESS_LEVEL',
661      '' );
662 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 270, 'UPDATE_ORG_ADDRESS',
663      '' );
664 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 271, 'UPDATE_ORG_TYPE',
665      '' );
666 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 272, 'UPDATE_ORG_UNIT_CLOSING',
667      '' );
668 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 273, 'UPDATE_PERM',
669      '' );
670 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 274, 'UPDATE_RELEVANCE_ADJUSTMENT',
671      '' );
672 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 275, 'UPDATE_SURVEY',
673      '' );
674 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 276, 'UPDATE_TRANSIT',
675      '' );
676 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 277, 'UPDATE_VOLUME_NOTE',
677      '' );
678 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 278, 'UPDATE_VR_FORMAT',
679      '' );
680 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 279, 'UPDATE_XML_TRANSFORM',
681      '' );
682 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 280, 'MERGE_BIB_RECORDS',
683      '' );
684 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 281, 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
685      '' );
686 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 282, 'CREATE_ACQ_FUNDING_SOURCE',
687      '' );
688 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 283, 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
689      '' );
690 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 284, 'CREATE_AUTHORITY_IMPORT_QUEUE',
691      '' );
692 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 285, 'CREATE_AUTHORITY_RECORD_NOTE',
693      '' );
694 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 286, 'CREATE_BIB_IMPORT_FIELD_DEF',
695      '' );
696 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 287, 'CREATE_BIB_IMPORT_QUEUE',
697      '' );
698 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 288, 'CREATE_LOCALE',
699      '' );
700 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 289, 'CREATE_MARC_CODE',
701      '' );
702 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 290, 'CREATE_TRANSLATION',
703      '' );
704 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 291, 'DELETE_ACQ_FUNDING_SOURCE',
705      '' );
706 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 292, 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
707      '' );
708 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 293, 'DELETE_AUTHORITY_IMPORT_QUEUE',
709      '' );
710 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 294, 'DELETE_AUTHORITY_RECORD_NOTE',
711      '' );
712 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 295, 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF',
713      '' );
714 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 296, 'DELETE_BIB_IMPORT_QUEUE',
715      '' );
716 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 297, 'DELETE_LOCALE',
717      '' );
718 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 298, 'DELETE_MARC_CODE',
719      '' );
720 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 299, 'DELETE_TRANSLATION',
721      '' );
722 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 300, 'UPDATE_ACQ_FUNDING_SOURCE',
723      '' );
724 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 301, 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
725      '' );
726 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 302, 'UPDATE_AUTHORITY_IMPORT_QUEUE',
727      '' );
728 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 303, 'UPDATE_AUTHORITY_RECORD_NOTE',
729      '' );
730 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 304, 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF',
731      '' );
732 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 305, 'UPDATE_BIB_IMPORT_QUEUE',
733      '' );
734 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 306, 'UPDATE_LOCALE',
735      '' );
736 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 307, 'UPDATE_MARC_CODE',
737      '' );
738 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 308, 'UPDATE_TRANSLATION',
739      '' );
740 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 309, 'VIEW_ACQ_FUNDING_SOURCE',
741      '' );
742 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 310, 'VIEW_AUTHORITY_RECORD_NOTES',
743      '' );
744 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 311, 'CREATE_IMPORT_ITEM',
745      '' );
746 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 312, 'CREATE_IMPORT_ITEM_ATTR_DEF',
747      '' );
748 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 313, 'CREATE_IMPORT_TRASH_FIELD',
749      '' );
750 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 314, 'DELETE_IMPORT_ITEM',
751      '' );
752 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 315, 'DELETE_IMPORT_ITEM_ATTR_DEF',
753      '' );
754 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 316, 'DELETE_IMPORT_TRASH_FIELD',
755      '' );
756 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 317, 'UPDATE_IMPORT_ITEM',
757      '' );
758 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 318, 'UPDATE_IMPORT_ITEM_ATTR_DEF',
759      '' );
760 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 319, 'UPDATE_IMPORT_TRASH_FIELD',
761      '' );
762 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 320, 'UPDATE_ORG_UNIT_SETTING_ALL',
763      '' );
764 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 321, 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee',
765      '' );
766 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 322, 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price',
767      '' );
768 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 323, 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout',
769      '' );
770 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 324, 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout',
771      '' );
772 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 325, 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails',
773      '' );
774 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 326, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval',
775      '' );
776 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 327, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval',
777      '' );
778 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 328, 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow',
779      '' );
780 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 329, 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost',
781      '' );
782 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 330, 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft',
783      '' );
784 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 331, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard',
785      '' );
786 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 332, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft',
787      '' );
788 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 333, 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex',
789      '' );
790 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 334, 'UPDATE_ORG_UNIT_SETTING.global.password_regex',
791      '' );
792 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 335, 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max',
793      '' );
794 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 336, 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval',
795      '' );
796 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 337, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout',
797      '' );
798 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 338, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event',
799      '' );
800 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 339, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password',
801      '' );
802 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 340, 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold',
803      '' );
804 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 341, 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty',
805      '' );
806 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 342, 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty',
807      '' );
808 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 343, 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone',
809      '' );
810 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 344, 'HOLD_ITEM_CHECKED_OUT.override',
811      'Allows a user to place a hold on an item that they already have checked out' );
812 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 345, 'ADMIN_ACQ_CANCEL_CAUSE',
813      'Allow a user to create/update/delete reasons for order cancellations' );
814 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 346, 'ACQ_XFER_MANUAL_DFUND_AMOUNT',
815      'Allow a user to transfer different amounts of money out of one fund and into another' );
816 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 347, 'OVERRIDE_HOLD_HAS_LOCAL_COPY',
817      'Allow a user to override the circ.holds.hold_has_copy_at.block setting' );
818 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 348, 'UPDATE_PICKUP_LIB_FROM_TRANSIT',
819      'Allow a user to change the pickup and transit destination for a captured hold item already in transit' );
820 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 349, 'COPY_NEEDED_FOR_HOLD.override',
821      'Allow a user to force renewal of an item that could fulfill a hold request' );
822 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 350, 'MERGE_AUTH_RECORDS',
823      'Allow a user to merge authority records together' );
824 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 351, 'ALLOW_ALT_TCN',
825      'Allows staff to import a record using an alternate TCN to avoid conflicts' );
826 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 352, 'ADMIN_TRIGGER_EVENT_DEF',
827      'Allow a user to administer trigger event definitions' );
828 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 353, 'ADMIN_TRIGGER_CLEANUP',
829      'Allow a user to create, delete, and update trigger cleanup entries' );
830 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 354, 'CREATE_TRIGGER_CLEANUP',
831      'Allow a user to create trigger cleanup entries' );
832 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 355, 'DELETE_TRIGGER_CLEANUP',
833      'Allow a user to delete trigger cleanup entries' );
834 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 356, 'UPDATE_TRIGGER_CLEANUP',
835      'Allow a user to update trigger cleanup entries' );
836 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 357, 'CREATE_TRIGGER_EVENT_DEF',
837      'Allow a user to create trigger event definitions' );
838 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 358, 'DELETE_TRIGGER_EVENT_DEF',
839      'Allow a user to delete trigger event definitions' );
840 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 359, 'UPDATE_TRIGGER_EVENT_DEF',
841      'Allow a user to update trigger event definitions' );
842 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 360, 'VIEW_TRIGGER_EVENT_DEF',
843      'Allow a user to view trigger event definitions' );
844 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 361, 'ADMIN_TRIGGER_HOOK',
845      'Allow a user to create, update, and delete trigger hooks' );
846 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 362, 'CREATE_TRIGGER_HOOK',
847      'Allow a user to create trigger hooks' );
848 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 363, 'DELETE_TRIGGER_HOOK',
849      'Allow a user to delete trigger hooks' );
850 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 364, 'UPDATE_TRIGGER_HOOK',
851      'Allow a user to update trigger hooks' );
852 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 365, 'ADMIN_TRIGGER_REACTOR',
853      'Allow a user to create, update, and delete trigger reactors' );
854 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 366, 'CREATE_TRIGGER_REACTOR',
855      'Allow a user to create trigger reactors' );
856 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 367, 'DELETE_TRIGGER_REACTOR',
857      'Allow a user to delete trigger reactors' );
858 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 368, 'UPDATE_TRIGGER_REACTOR',
859      'Allow a user to update trigger reactors' );
860 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 369, 'ADMIN_TRIGGER_TEMPLATE_OUTPUT',
861      'Allow a user to delete trigger template output' );
862 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 370, 'DELETE_TRIGGER_TEMPLATE_OUTPUT',
863      'Allow a user to delete trigger template output' );
864 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 371, 'ADMIN_TRIGGER_VALIDATOR',
865      'Allow a user to create, update, and delete trigger validators' );
866 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 372, 'CREATE_TRIGGER_VALIDATOR',
867      'Allow a user to create trigger validators' );
868 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 373, 'DELETE_TRIGGER_VALIDATOR',
869      'Allow a user to delete trigger validators' );
870 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 374, 'UPDATE_TRIGGER_VALIDATOR',
871      'Allow a user to update trigger validators' );
872 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 375, 'HOLD_LOCAL_AVAIL_OVERRIDE',
873      'Allow a user to place a hold despite the availability of a local copy' );
874 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 376, 'ADMIN_BOOKING_RESOURCE',
875      'Enables the user to create/update/delete booking resources' );
876 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 377, 'ADMIN_BOOKING_RESOURCE_TYPE',
877      'Enables the user to create/update/delete booking resource types' );
878 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 378, 'ADMIN_BOOKING_RESOURCE_ATTR',
879      'Enables the user to create/update/delete booking resource attributes' );
880 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 379, 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
881      'Enables the user to create/update/delete booking resource attribute maps' );
882 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 380, 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
883      'Enables the user to create/update/delete booking resource attribute values' );
884 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 381, 'ADMIN_BOOKING_RESERVATION',
885      'Enables the user to create/update/delete booking reservations' );
886 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 382, 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP',
887      'Enables the user to create/update/delete booking reservation attribute value maps' );
888 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 383, 'RETRIEVE_RESERVATION_PULL_LIST',
889      'Allows a user to retrieve a booking reservation pull list' );
890 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 384, 'CAPTURE_RESERVATION',
891      'Allows a user to capture booking reservations' );
892 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 385, 'UPDATE_RECORD',
893      '' );
894 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 386, 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds',
895      '' );
896 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 387, 'MERGE_USERS',
897      'Allows user records to be merged' );
898 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 388, 'ISSUANCE_HOLDS',
899      'Allow a user to place holds on serials issuances' );
900 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 389, 'VIEW_CREDIT_CARD_PROCESSING',
901      'View org unit settings related to credit card processing' );
902 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 390, 'ADMIN_CREDIT_CARD_PROCESSING',
903      'Update org unit settings related to credit card processing' );
904 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 391, 'ADMIN_SERIAL_CAPTION_PATTERN',
905         'Create/update/delete serial caption and pattern objects' );
906 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 392, 'ADMIN_SERIAL_SUBSCRIPTION',
907         'Create/update/delete serial subscription objects' );
908 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 393, 'ADMIN_SERIAL_DISTRIBUTION',
909         'Create/update/delete serial distribution objects' );
910 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 394, 'ADMIN_SERIAL_STREAM',
911         'Create/update/delete serial stream objects' );
912 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 395, 'RECEIVE_SERIAL',
913         'Receive serial items' );
914
915 -- Now for the permissions from the IDL.  We don't have descriptions for them.
916
917 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 396, 'ADMIN_ACQ_CLAIM' );
918 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 397, 'ADMIN_ACQ_CLAIM_EVENT_TYPE' );
919 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 398, 'ADMIN_ACQ_CLAIM_TYPE' );
920 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 399, 'ADMIN_ACQ_DISTRIB_FORMULA' );
921 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 400, 'ADMIN_ACQ_FISCAL_YEAR' );
922 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 401, 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT' );
923 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 402, 'ADMIN_ACQ_FUND_TAG' );
924 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 403, 'ADMIN_ACQ_LINEITEM_ALERT_TEXT' );
925 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 404, 'ADMIN_AGE_PROTECT_RULE' );
926 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 405, 'ADMIN_ASSET_COPY_TEMPLATE' );
927 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 406, 'ADMIN_BOOKING_RESERVATION_ATTR_MAP' );
928 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 407, 'ADMIN_CIRC_MATRIX_MATCHPOINT' );
929 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 408, 'ADMIN_CIRC_MOD' );
930 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 409, 'ADMIN_CLAIM_POLICY' );
931 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 410, 'ADMIN_CONFIG_REMOTE_ACCOUNT' );
932 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 411, 'ADMIN_FIELD_DOC' );
933 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 412, 'ADMIN_GLOBAL_FLAG' );
934 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 413, 'ADMIN_GROUP_PENALTY_THRESHOLD' );
935 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 414, 'ADMIN_HOLD_CANCEL_CAUSE' );
936 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 415, 'ADMIN_HOLD_MATRIX_MATCHPOINT' );
937 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 416, 'ADMIN_IDENT_TYPE' );
938 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 417, 'ADMIN_IMPORT_ITEM_ATTR_DEF' );
939 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 418, 'ADMIN_INDEX_NORMALIZER' );
940 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 419, 'ADMIN_INVOICE' );
941 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 420, 'ADMIN_INVOICE_METHOD' );
942 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 421, 'ADMIN_INVOICE_PAYMENT_METHOD' );
943 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 422, 'ADMIN_LINEITEM_MARC_ATTR_DEF' );
944 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 423, 'ADMIN_MARC_CODE' );
945 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 424, 'ADMIN_MAX_FINE_RULE' );
946 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 425, 'ADMIN_MERGE_PROFILE' );
947 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 426, 'ADMIN_ORG_UNIT_SETTING_TYPE' );
948 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 427, 'ADMIN_RECURRING_FINE_RULE' );
949 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 428, 'ADMIN_STANDING_PENALTY' );
950 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 429, 'ADMIN_SURVEY' );
951 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 430, 'ADMIN_USER_REQUEST_TYPE' );
952 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 431, 'ADMIN_USER_SETTING_GROUP' );
953 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 432, 'ADMIN_USER_SETTING_TYPE' );
954 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 433, 'ADMIN_Z3950_SOURCE' );
955 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 434, 'CREATE_BIB_BTYPE' );
956 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 435, 'CREATE_BIBLIO_FINGERPRINT' );
957 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 436, 'CREATE_BIB_SOURCE' );
958 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 437, 'CREATE_BILLING_TYPE' );
959 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 438, 'CREATE_CN_BTYPE' );
960 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 439, 'CREATE_COPY_BTYPE' );
961 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 440, 'CREATE_INVOICE' );
962 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 441, 'CREATE_INVOICE_ITEM_TYPE' );
963 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 442, 'CREATE_INVOICE_METHOD' );
964 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 443, 'CREATE_MERGE_PROFILE' );
965 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 444, 'CREATE_METABIB_CLASS' );
966 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 445, 'CREATE_METABIB_SEARCH_ALIAS' );
967 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 446, 'CREATE_USER_BTYPE' );
968 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 447, 'DELETE_BIB_BTYPE' );
969 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 448, 'DELETE_BIBLIO_FINGERPRINT' );
970 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 449, 'DELETE_BIB_SOURCE' );
971 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 450, 'DELETE_BILLING_TYPE' );
972 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 451, 'DELETE_CN_BTYPE' );
973 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 452, 'DELETE_COPY_BTYPE' );
974 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 453, 'DELETE_INVOICE_ITEM_TYPE' );
975 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 454, 'DELETE_INVOICE_METHOD' );
976 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 455, 'DELETE_MERGE_PROFILE' );
977 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 456, 'DELETE_METABIB_CLASS' );
978 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 457, 'DELETE_METABIB_SEARCH_ALIAS' );
979 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 458, 'DELETE_USER_BTYPE' );
980 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 459, 'MANAGE_CLAIM' );
981 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 460, 'UPDATE_BIB_BTYPE' );
982 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 461, 'UPDATE_BIBLIO_FINGERPRINT' );
983 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 462, 'UPDATE_BIB_SOURCE' );
984 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 463, 'UPDATE_BILLING_TYPE' );
985 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 464, 'UPDATE_CN_BTYPE' );
986 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 465, 'UPDATE_COPY_BTYPE' );
987 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 466, 'UPDATE_INVOICE_ITEM_TYPE' );
988 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 467, 'UPDATE_INVOICE_METHOD' );
989 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 468, 'UPDATE_MERGE_PROFILE' );
990 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 469, 'UPDATE_METABIB_CLASS' );
991 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 470, 'UPDATE_METABIB_SEARCH_ALIAS' );
992 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 471, 'UPDATE_USER_BTYPE' );
993 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 472, 'user_request.create' );
994 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 473, 'user_request.delete' );
995 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 474, 'user_request.update' );
996 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 475, 'user_request.view' );
997 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 476, 'VIEW_ACQ_FUND_ALLOCATION_PERCENT' );
998 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 477, 'VIEW_CIRC_MATRIX_MATCHPOINT' );
999 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 478, 'VIEW_CLAIM' );
1000 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 479, 'VIEW_GROUP_PENALTY_THRESHOLD' );
1001 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 480, 'VIEW_HOLD_MATRIX_MATCHPOINT' );
1002 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 481, 'VIEW_INVOICE' );
1003 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 482, 'VIEW_MERGE_PROFILE' );
1004 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 483, 'VIEW_SERIAL_SUBSCRIPTION' );
1005 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 484, 'VIEW_STANDING_PENALTY' );
1006
1007 -- For every permission in the temp_perm table that has a matching
1008 -- permission in the real table: record the original id.
1009
1010 UPDATE permission.temp_perm AS tp
1011 SET old_id =
1012         (
1013                 SELECT id
1014                 FROM permission.perm_list AS ppl
1015                 WHERE ppl.code = tp.code
1016         )
1017 WHERE code IN ( SELECT code FROM permission.perm_list );
1018
1019 -- Start juggling ids.
1020
1021 -- If any permissions have negative ids (with the special exception of -1),
1022 -- we need to move them into the positive range in order to avoid duplicate
1023 -- key problems (since we are going to use the negative range as a temporary
1024 -- staging area).
1025
1026 -- First, move any predefined permissions that have negative ids (again with
1027 -- the special exception of -1).  Temporarily give them positive ids based on
1028 -- the sequence.
1029
1030 UPDATE permission.perm_list
1031 SET id = NEXTVAL('permission.perm_list_id_seq'::regclass)
1032 WHERE id < -1
1033   AND code IN (SELECT code FROM permission.temp_perm);
1034
1035 -- Identify any non-predefined permissions whose ids are either negative
1036 -- or within the range (0-1000) reserved for predefined permissions.
1037 -- Assign them ids above 1000, based on the sequence.  Record the new
1038 -- ids in the temp_perm table.
1039
1040 INSERT INTO permission.temp_perm ( id, code, description, old_id, predefined )
1041 (
1042         SELECT NEXTVAL('permission.perm_list_id_seq'::regclass),
1043                 code, description, id, false
1044         FROM permission.perm_list
1045         WHERE  ( id < -1 OR id BETWEEN 0 AND 1000 )
1046         AND code NOT IN (SELECT code FROM permission.temp_perm)
1047 );
1048
1049 -- Now update the ids of those non-predefined permissions, using the
1050 -- values assigned in the previous step.
1051
1052 UPDATE permission.perm_list AS ppl
1053 SET id = (
1054                 SELECT id
1055                 FROM permission.temp_perm AS tp
1056                 WHERE tp.code = ppl.code
1057         )
1058 WHERE id IN ( SELECT old_id FROM permission.temp_perm WHERE NOT predefined );
1059
1060 -- Now the negative ids have been eliminated, except for -1.  Move all the
1061 -- predefined permissions temporarily into the negative range.
1062
1063 UPDATE permission.perm_list
1064 SET id = -1 - id
1065 WHERE id <> -1
1066 AND code IN ( SELECT code from permission.temp_perm WHERE predefined );
1067
1068 -- Apply the final ids to the existing predefined permissions.
1069
1070 UPDATE permission.perm_list AS ppl
1071 SET id =
1072         (
1073                 SELECT id
1074                 FROM permission.temp_perm AS tp
1075                 WHERE tp.code = ppl.code
1076         )
1077 WHERE
1078         id <> -1
1079         AND ppl.code IN
1080         (
1081                 SELECT code from permission.temp_perm
1082                 WHERE predefined
1083                 AND old_id IS NOT NULL
1084         );
1085
1086 -- If there are any predefined permissions that don't exist yet in
1087 -- permission.perm_list, insert them now.
1088
1089 INSERT INTO permission.perm_list ( id, code, description )
1090 (
1091         SELECT id, code, description
1092         FROM permission.temp_perm
1093         WHERE old_id IS NULL
1094 );
1095
1096 -- Reset the sequence to the lowest feasible value.  This may or may not
1097 -- accomplish anything, but it will do no harm.
1098
1099 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, GREATEST( 
1100         (SELECT MAX(id) FROM permission.perm_list), 1000 ));
1101
1102 -- If any permission lacks a description, use the code as a description.
1103 -- It's better than nothing.
1104
1105 UPDATE permission.perm_list
1106 SET description = code
1107 WHERE description IS NULL
1108    OR description = '';
1109
1110 -- Thus endeth the Great Renumbering.
1111
1112 -- Having massaged the permissions, massage the way they are assigned, by inserting
1113 -- rows into permission.grp_perm_map.  Some of these permissions may have already
1114 -- been assigned, so we insert the rows only if they aren't already there.
1115
1116 -- for backwards compat, give everyone the permission
1117 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1118     SELECT 1, id, 0, false FROM permission.perm_list AS perm
1119         WHERE code = 'HOLD_ITEM_CHECKED_OUT.override'
1120                 AND NOT EXISTS (
1121                         SELECT 1
1122                         FROM permission.grp_perm_map AS map
1123                         WHERE
1124                                 grp = 1
1125                                 AND map.perm = perm.id
1126                 );
1127
1128 -- Add trigger administration permissions to the Local System Administrator group.
1129 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1130     SELECT 10, id, 1, false FROM permission.perm_list AS perm
1131     WHERE (
1132                 perm.code LIKE 'ADMIN_TRIGGER%'
1133         OR perm.code LIKE 'CREATE_TRIGGER%'
1134         OR perm.code LIKE 'DELETE_TRIGGER%'
1135         OR perm.code LIKE 'UPDATE_TRIGGER%'
1136         ) AND NOT EXISTS (
1137                 SELECT 1
1138                 FROM permission.grp_perm_map AS map
1139                 WHERE
1140                         grp = 10
1141                         AND map.perm = perm.id
1142         );
1143
1144 -- View trigger permissions are required at a consortial level for initial setup
1145 -- (as before, only if the row doesn't already exist)
1146 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1147     SELECT 10, id, 0, false FROM permission.perm_list AS perm
1148         WHERE code LIKE 'VIEW_TRIGGER%'
1149                 AND NOT EXISTS (
1150                         SELECT 1
1151                         FROM permission.grp_perm_map AS map
1152                         WHERE
1153                                 grp = 10
1154                                 AND map.perm = perm.id
1155                 );
1156
1157 -- Permission for merging auth records may already be defined,
1158 -- so add it only if it isn't there.
1159 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1160     SELECT 4, id, 1, false FROM permission.perm_list AS perm
1161         WHERE code = 'MERGE_AUTH_RECORDS'
1162                 AND NOT EXISTS (
1163                         SELECT 1
1164                         FROM permission.grp_perm_map AS map
1165                         WHERE
1166                                 grp = 4
1167                                 AND map.perm = perm.id
1168                 );
1169
1170 -- Create a reference table as parent to both
1171 -- config.org_unit_setting_type and config_usr_setting_type
1172
1173 CREATE TABLE config.settings_group (
1174     name    TEXT PRIMARY KEY,
1175     label   TEXT UNIQUE NOT NULL -- I18N
1176 );
1177
1178 -- org_unit setting types
1179 CREATE TABLE config.org_unit_setting_type (
1180     name            TEXT    PRIMARY KEY,
1181     label           TEXT    UNIQUE NOT NULL,
1182     grp             TEXT    REFERENCES config.settings_group (name),
1183     description     TEXT,
1184     datatype        TEXT    NOT NULL DEFAULT 'string',
1185     fm_class        TEXT,
1186     view_perm       INT,
1187     update_perm     INT,
1188     --
1189     -- define valid datatypes
1190     --
1191     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1192     ( 'bool', 'integer', 'float', 'currency', 'interval',
1193       'date', 'string', 'object', 'array', 'link' ) ),
1194     --
1195     -- fm_class is meaningful only for 'link' datatype
1196     --
1197     CONSTRAINT coust_no_empty_link CHECK
1198     ( ( datatype =  'link' AND fm_class IS NOT NULL ) OR
1199       ( datatype <> 'link' AND fm_class IS NULL ) ),
1200         CONSTRAINT view_perm_fkey FOREIGN KEY (view_perm) REFERENCES permission.perm_list (id)
1201                 ON UPDATE CASCADE
1202                 ON DELETE RESTRICT
1203                 DEFERRABLE INITIALLY DEFERRED,
1204         CONSTRAINT update_perm_fkey FOREIGN KEY (update_perm) REFERENCES permission.perm_list (id)
1205                 ON UPDATE CASCADE
1206                 DEFERRABLE INITIALLY DEFERRED
1207 );
1208
1209 CREATE TABLE config.usr_setting_type (
1210
1211     name TEXT PRIMARY KEY,
1212     opac_visible BOOL NOT NULL DEFAULT FALSE,
1213     label TEXT UNIQUE NOT NULL,
1214     description TEXT,
1215     grp             TEXT    REFERENCES config.settings_group (name),
1216     datatype TEXT NOT NULL DEFAULT 'string',
1217     fm_class TEXT,
1218
1219     --
1220     -- define valid datatypes
1221     --
1222     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1223     ( 'bool', 'integer', 'float', 'currency', 'interval',
1224         'date', 'string', 'object', 'array', 'link' ) ),
1225
1226     --
1227     -- fm_class is meaningful only for 'link' datatype
1228     --
1229     CONSTRAINT coust_no_empty_link CHECK
1230     ( ( datatype = 'link' AND fm_class IS NOT NULL ) OR
1231         ( datatype <> 'link' AND fm_class IS NULL ) )
1232
1233 );
1234
1235 --------------------------------------
1236 -- Seed data for org_unit_setting_type
1237 --------------------------------------
1238
1239 INSERT into config.org_unit_setting_type
1240 ( name, label, description, datatype ) VALUES
1241
1242 ( 'auth.opac_timeout',
1243   'OPAC Inactivity Timeout (in seconds)',
1244   null,
1245   'integer' ),
1246
1247 ( 'auth.staff_timeout',
1248   'Staff Login Inactivity Timeout (in seconds)',
1249   null,
1250   'integer' ),
1251
1252 ( 'circ.lost_materials_processing_fee',
1253   'Lost Materials Processing Fee',
1254   null,
1255   'currency' ),
1256
1257 ( 'cat.default_item_price',
1258   'Default Item Price',
1259   null,
1260   'currency' ),
1261
1262 ( 'org.bounced_emails',
1263   'Sending email address for patron notices',
1264   null,
1265   'string' ),
1266
1267 ( 'circ.hold_expire_alert_interval',
1268   'Holds: Expire Alert Interval',
1269   'Amount of time before a hold expires at which point the patron should be alerted',
1270   'interval' ),
1271
1272 ( 'circ.hold_expire_interval',
1273   'Holds: Expire Interval',
1274   'Amount of time after a hold is placed before the hold expires.  Example "100 days"',
1275   'interval' ),
1276
1277 ( 'credit.payments.allow',
1278   'Allow Credit Card Payments',
1279   'If enabled, patrons will be able to pay fines accrued at this location via credit card',
1280   'bool' ),
1281
1282 ( 'global.default_locale',
1283   'Global Default Locale',
1284   null,
1285   'string' ),
1286
1287 ( 'circ.void_overdue_on_lost',
1288   'Void overdue fines when items are marked lost',
1289   null,
1290   'bool' ),
1291
1292 ( 'circ.hold_stalling.soft',
1293   'Holds: Soft stalling interval',
1294   'How long to wait before allowing remote items to be opportunistically captured for a hold.  Example "5 days"',
1295   'interval' ),
1296
1297 ( 'circ.hold_stalling_hard',
1298   'Holds: Hard stalling interval',
1299   '',
1300   'interval' ),
1301
1302 ( 'circ.hold_boundary.hard',
1303   'Holds: Hard boundary',
1304   null,
1305   'integer' ),
1306
1307 ( 'circ.hold_boundary.soft',
1308   'Holds: Soft boundary',
1309   null,
1310   'integer' ),
1311
1312 ( 'opac.barcode_regex',
1313   'Patron barcode format',
1314   'Regular expression defining the patron barcode format',
1315   'string' ),
1316
1317 ( 'global.password_regex',
1318   'Password format',
1319   'Regular expression defining the password format',
1320   'string' ),
1321
1322 ( 'circ.item_checkout_history.max',
1323   'Maximum previous checkouts displayed',
1324   'This is the maximum number of previous circulations the staff client will display when investigating item details',
1325   'integer' ),
1326
1327 ( 'circ.reshelving_complete.interval',
1328   'Change reshelving status interval',
1329   'Amount of time to wait before changing an item from "reshelving" status to "available".  Examples: "1 day", "6 hours"',
1330   'interval' ),
1331
1332 ( 'circ.holds.default_estimated_wait_interval',
1333   'Holds: Default Estimated Wait',
1334   '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.',
1335   'interval' ),
1336
1337 ( 'circ.holds.min_estimated_wait_interval',
1338   'Holds: Minimum Estimated Wait',
1339   '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.',
1340   'interval' ),
1341
1342 ( 'circ.selfcheck.patron_login_timeout',
1343   'Selfcheck: Patron Login Timeout (in seconds)',
1344   'Number of seconds of inactivity before the patron is logged out of the selfcheck interface',
1345   'integer' ),
1346
1347 ( 'circ.selfcheck.alert.popup',
1348   'Selfcheck: Pop-up alert for errors',
1349   'If true, checkout/renewal errors will cause a pop-up window in addition to the on-screen message',
1350   'bool' ),
1351
1352 ( 'circ.selfcheck.require_patron_password',
1353   'Selfcheck: Require patron password',
1354   'If true, patrons will be required to enter their password in addition to their username/barcode to log into the selfcheck interface',
1355   'bool' ),
1356
1357 ( 'global.juvenile_age_threshold',
1358   'Juvenile Age Threshold',
1359   'The age at which a user is no long considered a juvenile.  For example, "18 years".',
1360   'interval' ),
1361
1362 ( 'cat.bib.keep_on_empty',
1363   'Retain empty bib records',
1364   'Retain a bib record even when all attached copies are deleted',
1365   'bool' ),
1366
1367 ( 'cat.bib.alert_on_empty',
1368   'Alert on empty bib records',
1369   'Alert staff when the last copy for a record is being deleted',
1370   'bool' ),
1371
1372 ( 'patron.password.use_phone',
1373   'Patron: password from phone #',
1374   'Use the last 4 digits of the patrons phone number as the default password when creating new users',
1375   'bool' ),
1376
1377 ( 'circ.charge_on_damaged',
1378   'Charge item price when marked damaged',
1379   'Charge item price when marked damaged',
1380   'bool' ),
1381
1382 ( 'circ.charge_lost_on_zero',
1383   'Charge lost on zero',
1384   '',
1385   'bool' ),
1386
1387 ( 'circ.damaged_item_processing_fee',
1388   'Charge processing fee for damaged items',
1389   'Charge processing fee for damaged items',
1390   'currency' ),
1391
1392 ( 'circ.void_lost_on_checkin',
1393   'Circ: Void lost item billing when returned',
1394   'Void lost item billing when returned',
1395   'bool' ),
1396
1397 ( 'circ.max_accept_return_of_lost',
1398   'Circ: Void lost max interval',
1399   'Items that have been lost this long will not result in voided billings when returned.  E.g. ''6 months''',
1400   'interval' ),
1401
1402 ( 'circ.void_lost_proc_fee_on_checkin',
1403   'Circ: Void processing fee on lost item return',
1404   'Void processing fee when lost item returned',
1405   'bool' ),
1406
1407 ( 'circ.restore_overdue_on_lost_return',
1408   'Circ: Restore overdues on lost item return',
1409   'Restore overdue fines on lost item return',
1410   'bool' ),
1411
1412 ( 'circ.lost_immediately_available',
1413   'Circ: Lost items usable on checkin',
1414   'Lost items are usable on checkin instead of going ''home'' first',
1415   'bool' ),
1416
1417 ( 'circ.holds_fifo',
1418   'Holds: FIFO',
1419   'Force holds to a more strict First-In, First-Out capture',
1420   'bool' ),
1421
1422 ( 'opac.allow_pending_address',
1423   'OPAC: Allow pending addresses',
1424   'If enabled, patrons can create and edit existing addresses.  Addresses are kept in a pending state until staff approves the changes',
1425   'bool' ),
1426
1427 ( 'ui.circ.show_billing_tab_on_bills',
1428   'Show billing tab first when bills are present',
1429   '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',
1430   'bool' ),
1431
1432 ( 'ui.general.idle_timeout',
1433     'GUI: Idle timeout',
1434     '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).',
1435     'integer' ),
1436
1437 ( 'ui.circ.in_house_use.entry_cap',
1438   'GUI: Record In-House Use: Maximum # of uses allowed per entry.',
1439   'The # of uses entry in the Record In-House Use interface may not exceed the value of this setting.',
1440   'integer' ),
1441
1442 ( 'ui.circ.in_house_use.entry_warn',
1443   'GUI: Record In-House Use: # of uses threshold for Are You Sure? dialog.',
1444   'In the Record In-House Use interface, a submission attempt will warn if the # of uses field exceeds the value of this setting.',
1445   'integer' ),
1446
1447 ( 'acq.default_circ_modifier',
1448   'Default circulation modifier',
1449   null,
1450   'string' ),
1451
1452 ( 'acq.tmp_barcode_prefix',
1453   'Temporary barcode prefix',
1454   null,
1455   'string' ),
1456
1457 ( 'acq.tmp_callnumber_prefix',
1458   'Temporary call number prefix',
1459   null,
1460   'string' ),
1461
1462 ( 'ui.circ.patron_summary.horizontal',
1463   'Patron circulation summary is horizontal',
1464   null,
1465   'bool' ),
1466
1467 ( 'ui.staff.require_initials',
1468   oils_i18n_gettext('ui.staff.require_initials', 'GUI: Require staff initials for entry/edit of item/patron/penalty notes/messages.', 'coust', 'label'),
1469   oils_i18n_gettext('ui.staff.require_initials', 'Appends staff initials and edit date into note content.', 'coust', 'description'),
1470   'bool' ),
1471
1472 ( 'ui.general.button_bar',
1473   'Button bar',
1474   null,
1475   'bool' ),
1476
1477 ( 'circ.hold_shelf_status_delay',
1478   'Hold Shelf Status Delay',
1479   '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.',
1480   'interval' ),
1481
1482 ( 'circ.patron_invalid_address_apply_penalty',
1483   'Invalid patron address penalty',
1484   'When set, if a patron address is set to invalid, a penalty is applied.',
1485   'bool' ),
1486
1487 ( 'circ.checkout_fills_related_hold',
1488   'Checkout Fills Related Hold',
1489   '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',
1490   'bool'),
1491
1492 ( 'circ.selfcheck.auto_override_checkout_events',
1493   'Selfcheck override events list',
1494   'List of checkout/renewal events that the selfcheck interface should automatically override instead instead of alerting and stopping the transaction',
1495   'array' ),
1496
1497 ( 'circ.staff_client.do_not_auto_attempt_print',
1498   'Disable Automatic Print Attempt Type List',
1499   '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).',
1500   'array' ),
1501
1502 ( 'ui.patron.default_inet_access_level',
1503   'Default level of patrons'' internet access',
1504   null,
1505   'integer' ),
1506
1507 ( 'circ.max_patron_claim_return_count',
1508     'Max Patron Claims Returned Count',
1509     'When this count is exceeded, a staff override is required to mark the item as claims returned',
1510     'integer' ),
1511
1512 ( 'circ.obscure_dob',
1513     'Obscure the Date of Birth field',
1514     '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.',
1515     'bool' ),
1516
1517 ( 'circ.auto_hide_patron_summary',
1518     'GUI: Toggle off the patron summary sidebar after first view.',
1519     'When true, the patron summary sidebar will collapse after a new patron sub-interface is selected.',
1520     'bool' ),
1521
1522 ( 'credit.processor.default',
1523     'Credit card processing: Name default credit processor',
1524     'This can be "AuthorizeNet", "PayPal" (for the Website Payment Pro API), or "PayflowPro".',
1525     'string' ),
1526
1527 ( 'credit.processor.authorizenet.enabled',
1528     'Credit card processing: AuthorizeNet enabled',
1529     '',
1530     'bool' ),
1531
1532 ( 'credit.processor.authorizenet.login',
1533     'Credit card processing: AuthorizeNet login',
1534     '',
1535     'string' ),
1536
1537 ( 'credit.processor.authorizenet.password',
1538     'Credit card processing: AuthorizeNet password',
1539     '',
1540     'string' ),
1541
1542 ( 'credit.processor.authorizenet.server',
1543     'Credit card processing: AuthorizeNet server',
1544     'Required if using a developer/test account with AuthorizeNet',
1545     'string' ),
1546
1547 ( 'credit.processor.authorizenet.testmode',
1548     'Credit card processing: AuthorizeNet test mode',
1549     '',
1550     'bool' ),
1551
1552 ( 'credit.processor.paypal.enabled',
1553     'Credit card processing: PayPal enabled',
1554     '',
1555     'bool' ),
1556 ( 'credit.processor.paypal.login',
1557     'Credit card processing: PayPal login',
1558     '',
1559     'string' ),
1560 ( 'credit.processor.paypal.password',
1561     'Credit card processing: PayPal password',
1562     '',
1563     'string' ),
1564 ( 'credit.processor.paypal.signature',
1565     'Credit card processing: PayPal signature',
1566     '',
1567     'string' ),
1568 ( 'credit.processor.paypal.testmode',
1569     'Credit card processing: PayPal test mode',
1570     '',
1571     'bool' ),
1572
1573 ( 'ui.admin.work_log.max_entries',
1574     oils_i18n_gettext('ui.admin.work_log.max_entries', 'GUI: Work Log: Maximum Actions Logged', 'coust', 'label'),
1575     oils_i18n_gettext('ui.admin.work_log.max_entries', 'Maximum entries for "Most Recent Staff Actions" section of the Work Log interface.', 'coust', 'description'),
1576   'interval' ),
1577
1578 ( 'ui.admin.patron_log.max_entries',
1579     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'GUI: Work Log: Maximum Patrons Logged', 'coust', 'label'),
1580     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'Maximum entries for "Most Recently Affected Patrons..." section of the Work Log interface.', 'coust', 'description'),
1581   'interval' ),
1582
1583 ( 'lib.courier_code',
1584     oils_i18n_gettext('lib.courier_code', 'Courier Code', 'coust', 'label'),
1585     oils_i18n_gettext('lib.courier_code', 'Courier Code for the library.  Available in transit slip templates as the %courier_code% macro.', 'coust', 'description'),
1586     'string'),
1587
1588 ( 'circ.block_renews_for_holds',
1589     oils_i18n_gettext('circ.block_renews_for_holds', 'Holds: Block Renewal of Items Needed for Holds', 'coust', 'label'),
1590     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'),
1591     'bool' ),
1592
1593 ( 'circ.password_reset_request_per_user_limit',
1594     oils_i18n_gettext('circ.password_reset_request_per_user_limit', 'Circulation: Maximum concurrently active self-serve password reset requests per user', 'coust', 'label'),
1595     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'),
1596     'string'),
1597
1598 ( 'circ.password_reset_request_time_to_live',
1599     oils_i18n_gettext('circ.password_reset_request_time_to_live', 'Circulation: Self-serve password reset request time-to-live', 'coust', 'label'),
1600     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'),
1601     'string'),
1602
1603 ( 'circ.password_reset_request_throttle',
1604     oils_i18n_gettext('circ.password_reset_request_throttle', 'Circulation: Maximum concurrently active self-serve password reset requests', 'coust', 'label'),
1605     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'),
1606     'string')
1607 ;
1608
1609 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1610         'ui.circ.suppress_checkin_popups',
1611         oils_i18n_gettext(
1612             'ui.circ.suppress_checkin_popups', 
1613             'Circ: Suppress popup-dialogs during check-in.', 
1614             'coust', 
1615             'label'),
1616         oils_i18n_gettext(
1617             'ui.circ.suppress_checkin_popups', 
1618             'Circ: Suppress popup-dialogs during check-in.', 
1619             'coust', 
1620             'description'),
1621         'bool'
1622 );
1623
1624 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1625         'format.date',
1626         oils_i18n_gettext(
1627             'format.date',
1628             'GUI: Format Dates with this pattern.', 
1629             'coust', 
1630             'label'),
1631         oils_i18n_gettext(
1632             'format.date',
1633             'GUI: Format Dates with this pattern (examples: "yyyy-MM-dd" for "2010-04-26", "MMM d, yyyy" for "Apr 26, 2010")', 
1634             'coust', 
1635             'description'),
1636         'string'
1637 ), (
1638         'format.time',
1639         oils_i18n_gettext(
1640             'format.time',
1641             'GUI: Format Times with this pattern.', 
1642             'coust', 
1643             'label'),
1644         oils_i18n_gettext(
1645             'format.time',
1646             '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")', 
1647             'coust', 
1648             'description'),
1649         'string'
1650 );
1651
1652 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1653         'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1654         oils_i18n_gettext(
1655             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1656             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1657             'coust', 
1658             'label'),
1659         oils_i18n_gettext(
1660             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1661             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1662             'coust', 
1663             'description'),
1664         'bool'
1665 );
1666
1667 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1668         'url.remote_column_settings',
1669         oils_i18n_gettext(
1670             'url.remote_column_settings',
1671             'GUI: URL for remote directory containing list column settings.', 
1672             'coust', 
1673             'label'),
1674         oils_i18n_gettext(
1675             'url.remote_column_settings',
1676             '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.', 
1677             'coust', 
1678             'description'),
1679         'string'
1680 );
1681
1682 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1683         'gui.disable_local_save_columns',
1684         oils_i18n_gettext(
1685             'gui.disable_local_save_columns',
1686             'GUI: Disable the ability to save list column configurations locally.', 
1687             'coust', 
1688             'label'),
1689         oils_i18n_gettext(
1690             'gui.disable_local_save_columns',
1691             '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.', 
1692             'coust', 
1693             'description'),
1694         'bool'
1695 );
1696
1697 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1698         'circ.password_reset_request_requires_matching_email',
1699         oils_i18n_gettext(
1700             'circ.password_reset_request_requires_matching_email',
1701             'Circulation: Require matching email address for password reset requests', 
1702             'coust', 
1703             'label'),
1704         oils_i18n_gettext(
1705             'circ.password_reset_request_requires_matching_email',
1706             'Circulation: Require matching email address for password reset requests', 
1707             'coust', 
1708             'description'),
1709         'bool'
1710 );
1711
1712 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1713         'circ.holds.expired_patron_block',
1714         oils_i18n_gettext(
1715             'circ.holds.expired_patron_block',
1716             'Circulation: Block hold request if hold recipient privileges have expired', 
1717             'coust', 
1718             'label'),
1719         oils_i18n_gettext(
1720             'circ.holds.expired_patron_block',
1721             'Circulation: Block hold request if hold recipient privileges have expired', 
1722             'coust', 
1723             'description'),
1724         'bool'
1725 );
1726
1727 INSERT INTO config.org_unit_setting_type
1728     (name, label, description, datatype) VALUES (
1729         'circ.booking_reservation.default_elbow_room',
1730         oils_i18n_gettext(
1731             'circ.booking_reservation.default_elbow_room',
1732             'Booking: Elbow room',
1733             'coust',
1734             'label'
1735         ),
1736         oils_i18n_gettext(
1737             'circ.booking_reservation.default_elbow_room',
1738             '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.',
1739             'coust',
1740             'label'
1741         ),
1742         'interval'
1743     );
1744
1745 -- Org_unit_setting_type(s) that need an fm_class:
1746 INSERT into config.org_unit_setting_type
1747 ( name, label, description, datatype, fm_class ) VALUES
1748 ( 'acq.default_copy_location',
1749   'Default copy location',
1750   null,
1751   'link',
1752   'acpl' );
1753
1754 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1755     'circ.holds.org_unit_target_weight',
1756     'Holds: Org Unit Target Weight',
1757     '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.',
1758     'integer'
1759 );
1760
1761 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1762     'circ.holds.target_holds_by_org_unit_weight',
1763     'Holds: Use weight-based hold targeting',
1764     'Use library weight based hold targeting',
1765     'bool'
1766 );
1767
1768 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1769     'circ.holds.max_org_unit_target_loops',
1770     'Holds: Maximum library target attempts',
1771     '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',
1772     'integer'
1773 );
1774
1775
1776 -- Org setting for overriding the circ lib of a precat copy
1777 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1778     'circ.pre_cat_copy_circ_lib',
1779     'Pre-cat Item Circ Lib',
1780     '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',
1781     'string'
1782 );
1783
1784 -- Circ auto-renew interval setting
1785 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1786     'circ.checkout_auto_renew_age',
1787     'Checkout auto renew age',
1788     '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',
1789     'interval'
1790 );
1791
1792 -- Setting for behind the desk hold pickups
1793 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1794     'circ.holds.behind_desk_pickup_supported',
1795     'Holds: Behind Desk Pickup Supported',
1796     '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',
1797     'bool'
1798 );
1799
1800 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1801         'acq.holds.allow_holds_from_purchase_request',
1802         oils_i18n_gettext(
1803             'acq.holds.allow_holds_from_purchase_request', 
1804             'Allows patrons to create automatic holds from purchase requests.', 
1805             'coust', 
1806             'label'),
1807         oils_i18n_gettext(
1808             'acq.holds.allow_holds_from_purchase_request', 
1809             'Allows patrons to create automatic holds from purchase requests.', 
1810             'coust', 
1811             'description'),
1812         'bool'
1813 );
1814
1815 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1816     'circ.holds.target_skip_me',
1817     'Skip For Hold Targeting',
1818     'When true, don''t target any copies at this org unit for holds',
1819     'bool'
1820 );
1821
1822 -- claims returned mark item missing 
1823 INSERT INTO
1824     config.org_unit_setting_type ( name, label, description, datatype )
1825     VALUES (
1826         'circ.claim_return.mark_missing',
1827         'Claim Return: Mark copy as missing', 
1828         'When a circ is marked as claims-returned, also mark the copy as missing',
1829         'bool'
1830     );
1831
1832 -- claims never checked out mark item missing 
1833 INSERT INTO
1834     config.org_unit_setting_type ( name, label, description, datatype )
1835     VALUES (
1836         'circ.claim_never_checked_out.mark_missing',
1837         'Claim Never Checked Out: Mark copy as missing', 
1838         'When a circ is marked as claims-never-checked-out, mark the copy as missing',
1839         'bool'
1840     );
1841
1842 -- mark damaged void overdue setting
1843 INSERT INTO
1844     config.org_unit_setting_type ( name, label, description, datatype )
1845     VALUES (
1846         'circ.damaged.void_ovedue',
1847         'Mark item damaged voids overdues',
1848         'When an item is marked damaged, overdue fines on the most recent circulation are voided.',
1849         'bool'
1850     );
1851
1852 -- hold cancel display limits
1853 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1854     VALUES (
1855         'circ.holds.canceled.display_count',
1856         'Holds: Canceled holds display count',
1857         'How many canceled holds to show in patron holds interfaces',
1858         'integer'
1859     );
1860
1861 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1862     VALUES (
1863         'circ.holds.canceled.display_age',
1864         'Holds: Canceled holds display age',
1865         'Show all canceled holds that were canceled within this amount of time',
1866         'interval'
1867     );
1868
1869 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1870     VALUES (
1871         'circ.holds.uncancel.reset_request_time',
1872         'Holds: Reset request time on un-cancel',
1873         'When a hold is uncanceled, reset the request time to push it to the end of the queue',
1874         'bool'
1875     );
1876
1877 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
1878     VALUES (
1879         'circ.holds.default_shelf_expire_interval',
1880         'Default hold shelf expire interval',
1881         '',
1882         'interval'
1883 );
1884
1885 INSERT INTO config.org_unit_setting_type (name, label, description, datatype, fm_class)
1886     VALUES (
1887         'circ.claim_return.copy_status', 
1888         'Claim Return Copy Status', 
1889         'Claims returned copies are put into this status.  Default is to leave the copy in the Checked Out status',
1890         'link', 
1891         'ccs' 
1892     );
1893
1894 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
1895     VALUES ( 
1896         'circ.max_fine.cap_at_price',
1897         oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
1898         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'),
1899         'bool' 
1900     );
1901
1902 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) 
1903     VALUES ( 
1904         'circ.holds.clear_shelf.copy_status',
1905         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Holds: Clear shelf copy status', 'coust', 'label'),
1906         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'),
1907         'link',
1908         'ccs'
1909     );
1910
1911 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1912     VALUES ( 
1913         'circ.selfcheck.workstation_required',
1914         oils_i18n_gettext('circ.selfcheck.workstation_required', 'Selfcheck: Workstation Required', 'coust', 'label'),
1915         oils_i18n_gettext('circ.selfcheck.workstation_required', 'All selfcheck stations must use a workstation', 'coust', 'description'),
1916         'bool'
1917     ), (
1918         'circ.selfcheck.patron_password_required',
1919         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Selfcheck: Require Patron Password', 'coust', 'label'),
1920         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Patron must log in with barcode and password at selfcheck station', 'coust', 'description'),
1921         'bool'
1922     );
1923
1924 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1925     VALUES ( 
1926         'circ.selfcheck.alert.sound',
1927         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Selfcheck: Audio Alerts', 'coust', 'label'),
1928         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Use audio alerts for selfcheck events', 'coust', 'description'),
1929         'bool'
1930     );
1931
1932 INSERT INTO
1933     config.org_unit_setting_type (name, label, description, datatype)
1934     VALUES (
1935         'notice.telephony.callfile_lines',
1936         'Telephony: Arbitrary line(s) to include in each notice callfile',
1937         $$
1938         This overrides lines from opensrf.xml.
1939         Line(s) must be valid for your target server and platform
1940         (e.g. Asterisk 1.4).
1941         $$,
1942         'string'
1943     );
1944
1945 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1946     VALUES ( 
1947         'circ.offline.username_allowed',
1948         oils_i18n_gettext('circ.offline.username_allowed', 'Offline: Patron Usernames Allowed', 'coust', 'label'),
1949         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'),
1950         'bool'
1951     );
1952
1953 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1954 VALUES (
1955     'acq.fund.balance_limit.warn',
1956     oils_i18n_gettext('acq.fund.balance_limit.warn', 'Fund Spending Limit for Warning', 'coust', 'label'),
1957     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'),
1958     'integer'
1959 );
1960
1961 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1962 VALUES (
1963     'acq.fund.balance_limit.block',
1964     oils_i18n_gettext('acq.fund.balance_limit.block', 'Fund Spending Limit for Block', 'coust', 'label'),
1965     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'),
1966     'integer'
1967 );
1968
1969 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1970     VALUES (
1971         'circ.holds.hold_has_copy_at.alert',
1972         oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', 'Holds: Has Local Copy Alert', 'coust', 'label'),
1973         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'),
1974         'bool'
1975     ),(
1976         'circ.holds.hold_has_copy_at.block',
1977         oils_i18n_gettext('circ.holds.hold_has_copy_at.block', 'Holds: Has Local Copy Block', 'coust', 'label'),
1978         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'),
1979         'bool'
1980     );
1981
1982 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1983 VALUES (
1984     'auth.persistent_login_interval',
1985     oils_i18n_gettext('auth.persistent_login_interval', 'Persistent Login Duration', 'coust', 'label'),
1986     oils_i18n_gettext('auth.persistent_login_interval', 'How long a persistent login lasts.  E.g. ''2 weeks''', 'coust', 'description'),
1987     'interval'
1988 );
1989
1990 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1991         'cat.marc_control_number_identifier',
1992         oils_i18n_gettext(
1993             'cat.marc_control_number_identifier', 
1994             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
1995             'coust', 
1996             'label'),
1997         oils_i18n_gettext(
1998             'cat.marc_control_number_identifier', 
1999             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
2000             'coust', 
2001             'description'),
2002         'string'
2003 );
2004
2005 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) 
2006     VALUES (
2007         'circ.selfcheck.block_checkout_on_copy_status',
2008         oils_i18n_gettext(
2009             'circ.selfcheck.block_checkout_on_copy_status',
2010             'Selfcheck: Block copy checkout status',
2011             'coust',
2012             'label'
2013         ),
2014         oils_i18n_gettext(
2015             'circ.selfcheck.block_checkout_on_copy_status',
2016             'List of copy status IDs that will block checkout even if the generic COPY_NOT_AVAILABLE event is overridden',
2017             'coust',
2018             'description'
2019         ),
2020         'array'
2021     );
2022
2023 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
2024 VALUES (
2025     'serial.prev_issuance_copy_location',
2026     oils_i18n_gettext(
2027         'serial.prev_issuance_copy_location',
2028         'Serials: Previous Issuance Copy Location',
2029         'coust',
2030         'label'
2031     ),
2032     oils_i18n_gettext(
2033         'serial.prev_issuance_copy_location',
2034         'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
2035         'coust',
2036         'descripton'
2037         ),
2038     'link',
2039     'acpl'
2040 );
2041
2042 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
2043 VALUES (
2044     'cat.default_classification_scheme',
2045     oils_i18n_gettext(
2046         'cat.default_classification_scheme',
2047         'Cataloging: Default Classification Scheme',
2048         'coust',
2049         'label'
2050     ),
2051     oils_i18n_gettext(
2052         'cat.default_classification_scheme',
2053         'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
2054         'coust',
2055         'descripton'
2056         ),
2057     'link',
2058     'acnc'
2059 );
2060
2061 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2062         'opac.org_unit_hiding.depth',
2063         oils_i18n_gettext(
2064             'opac.org_unit_hiding.depth',
2065             'OPAC: Org Unit Hiding Depth', 
2066             'coust', 
2067             'label'),
2068         oils_i18n_gettext(
2069             'opac.org_unit_hiding.depth',
2070             '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.', 
2071             'coust', 
2072             'description'),
2073         'integer'
2074 );
2075
2076 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2077     VALUES 
2078         ('circ.holds.alert_if_local_avail',
2079          'Holds: Local available alert',
2080          'If local copy is available, alert the person making the hold',
2081          'bool'),
2082
2083         ('circ.holds.deny_if_local_avail',
2084          'Holds: Local available block',
2085          'If local copy is available, deny the creation of the hold',
2086          'bool')
2087     ;
2088
2089 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2090     VALUES ( 
2091         'circ.holds.clear_shelf.no_capture_holds',
2092         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'Holds: Bypass hold capture during clear shelf process', 'coust', 'label'),
2093         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'During the clear shelf process, avoid capturing new holds on cleared items.', 'coust', 'description'),
2094         'bool'
2095     );
2096
2097 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
2098     'circ.booking_reservation.stop_circ',
2099     'Disallow circulation of items when they are on booking reserve and that reserve overlaps with the checkout period',
2100     '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.',
2101     'bool'
2102 );
2103
2104 ---------------------------------
2105 -- Seed data for usr_setting_type
2106 ----------------------------------
2107
2108 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2109     VALUES ('opac.default_font', TRUE, 'OPAC Font Size', 'OPAC Font Size', 'string');
2110
2111 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2112     VALUES ('opac.default_search_depth', TRUE, 'OPAC Search Depth', 'OPAC Search Depth', 'integer');
2113
2114 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2115     VALUES ('opac.default_search_location', TRUE, 'OPAC Search Location', 'OPAC Search Location', 'integer');
2116
2117 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2118     VALUES ('opac.hits_per_page', TRUE, 'Hits per Page', 'Hits per Page', 'string');
2119
2120 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2121     VALUES ('opac.hold_notify', TRUE, 'Hold Notification Format', 'Hold Notification Format', 'string');
2122
2123 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2124     VALUES ('staff_client.catalog.record_view.default', TRUE, 'Default Record View', 'Default Record View', 'string');
2125
2126 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2127     VALUES ('staff_client.copy_editor.templates', TRUE, 'Copy Editor Template', 'Copy Editor Template', 'object');
2128
2129 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2130     VALUES ('circ.holds_behind_desk', FALSE, 'Hold is behind Circ Desk', 'Hold is behind Circ Desk', 'bool');
2131
2132 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2133     VALUES (
2134         'history.circ.retention_age',
2135         TRUE,
2136         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','label'),
2137         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','description'),
2138         'interval'
2139     ),(
2140         'history.circ.retention_start',
2141         FALSE,
2142         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','label'),
2143         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','description'),
2144         'date'
2145     );
2146
2147 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2148     VALUES (
2149         'history.hold.retention_age',
2150         TRUE,
2151         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','label'),
2152         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','description'),
2153         'interval'
2154     ),(
2155         'history.hold.retention_start',
2156         TRUE,
2157         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','label'),
2158         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','description'),
2159         'interval'
2160     ),(
2161         'history.hold.retention_count',
2162         TRUE,
2163         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','label'),
2164         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','description'),
2165         'integer'
2166     );
2167
2168 INSERT INTO config.usr_setting_type (name, opac_visible, label, description, datatype)
2169     VALUES (
2170         'opac.default_sort',
2171         TRUE,
2172         oils_i18n_gettext(
2173             'opac.default_sort',
2174             'OPAC Default Search Sort',
2175             'cust',
2176             'label'
2177         ),
2178         oils_i18n_gettext(
2179             'opac.default_sort',
2180             'OPAC Default Search Sort',
2181             'cust',
2182             'description'
2183         ),
2184         'string'
2185     );
2186
2187 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
2188         'circ.missing_pieces.copy_status',
2189         oils_i18n_gettext(
2190             'circ.missing_pieces.copy_status',
2191             'Circulation: Item Status for Missing Pieces',
2192             'coust',
2193             'label'),
2194         oils_i18n_gettext(
2195             'circ.missing_pieces.copy_status',
2196             'This is the Item Status to use for items that have been marked or scanned as having Missing Pieces.  In the absence of this setting, the Damaged status is used.',
2197             'coust',
2198             'description'),
2199         'link',
2200         'ccs'
2201 );
2202
2203 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2204         'circ.do_not_tally_claims_returned',
2205         oils_i18n_gettext(
2206             'circ.do_not_tally_claims_returned',
2207             'Circulation: Do not include outstanding Claims Returned circulations in lump sum tallies in Patron Display.',
2208             'coust',
2209             'label'),
2210         oils_i18n_gettext(
2211             'circ.do_not_tally_claims_returned',
2212             '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.',
2213             'coust',
2214             'description'),
2215         'bool'
2216 );
2217
2218 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2219     VALUES
2220         ('cat.label.font.size',
2221             oils_i18n_gettext('cat.label.font.size',
2222                 'Cataloging: Spine and pocket label font size', 'coust', 'label'),
2223             oils_i18n_gettext('cat.label.font.size',
2224                 'Set the default font size for spine and pocket labels', 'coust', 'description'),
2225             'integer'
2226         )
2227         ,('cat.label.font.family',
2228             oils_i18n_gettext('cat.label.font.family',
2229                 'Cataloging: Spine and pocket label font family', 'coust', 'label'),
2230             oils_i18n_gettext('cat.label.font.family',
2231                 '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".',
2232                 'coust', 'description'),
2233             'string'
2234         )
2235         ,('cat.spine.line.width',
2236             oils_i18n_gettext('cat.spine.line.width',
2237                 'Cataloging: Spine label line width', 'coust', 'label'),
2238             oils_i18n_gettext('cat.spine.line.width',
2239                 'Set the default line width for spine labels in number of characters. This specifies the boundary at which lines must be wrapped.',
2240                 'coust', 'description'),
2241             'integer'
2242         )
2243         ,('cat.spine.line.height',
2244             oils_i18n_gettext('cat.spine.line.height',
2245                 'Cataloging: Spine label maximum lines', 'coust', 'label'),
2246             oils_i18n_gettext('cat.spine.line.height',
2247                 'Set the default maximum number of lines for spine labels.',
2248                 'coust', 'description'),
2249             'integer'
2250         )
2251         ,('cat.spine.line.margin',
2252             oils_i18n_gettext('cat.spine.line.margin',
2253                 'Cataloging: Spine label left margin', 'coust', 'label'),
2254             oils_i18n_gettext('cat.spine.line.margin',
2255                 'Set the left margin for spine labels in number of characters.',
2256                 'coust', 'description'),
2257             'integer'
2258         )
2259 ;
2260
2261 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2262     VALUES
2263         ('cat.label.font.weight',
2264             oils_i18n_gettext('cat.label.font.weight',
2265                 'Cataloging: Spine and pocket label font weight', 'coust', 'label'),
2266             oils_i18n_gettext('cat.label.font.weight',
2267                 'Set the preferred font weight for spine and pocket labels. You can specify "normal", "bold", "bolder", or "lighter".',
2268                 'coust', 'description'),
2269             'string'
2270         )
2271 ;
2272
2273 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2274         'circ.patron_edit.clone.copy_address',
2275         oils_i18n_gettext(
2276             'circ.patron_edit.clone.copy_address',
2277             'Patron Registration: Cloned patrons get address copy',
2278             'coust',
2279             'label'
2280         ),
2281         oils_i18n_gettext(
2282             'circ.patron_edit.clone.copy_address',
2283             'In the Patron editor, copy addresses from the cloned user instead of linking directly to the address',
2284             'coust',
2285             'description'
2286         ),
2287         'bool'
2288 );
2289
2290 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
2291         'ui.patron.default_ident_type',
2292         oils_i18n_gettext(
2293             'ui.patron.default_ident_type',
2294             'GUI: Default Ident Type for Patron Registration',
2295             'coust',
2296             'label'),
2297         oils_i18n_gettext(
2298             'ui.patron.default_ident_type',
2299             'This is the default Ident Type for new users in the patron editor.',
2300             'coust',
2301             'description'),
2302         'link',
2303         'cit'
2304 );
2305
2306 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2307         'ui.patron.default_country',
2308         oils_i18n_gettext(
2309             'ui.patron.default_country',
2310             'GUI: Default Country for New Addresses in Patron Editor',
2311             'coust',
2312             'label'),
2313         oils_i18n_gettext(
2314             'ui.patron.default_country',
2315             'This is the default Country for new addresses in the patron editor.',
2316             'coust',
2317             'description'),
2318         'string'
2319 );
2320
2321 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2322         'ui.patron.registration.require_address',
2323         oils_i18n_gettext(
2324             'ui.patron.registration.require_address',
2325             'GUI: Require at least one address for Patron Registration',
2326             'coust',
2327             'label'),
2328         oils_i18n_gettext(
2329             'ui.patron.registration.require_address',
2330             'Enforces a requirement for having at least one address for a patron during registration.',
2331             'coust',
2332             'description'),
2333         'bool'
2334 );
2335
2336 INSERT INTO config.org_unit_setting_type (
2337     name, label, description, datatype
2338 ) VALUES
2339     ('credit.processor.payflowpro.enabled',
2340         'Credit card processing: Enable PayflowPro payments',
2341         'This is NOT the same thing as the settings labeled with just "PayPal."',
2342         'bool'
2343     ),
2344     ('credit.processor.payflowpro.login',
2345         'Credit card processing: PayflowPro login/merchant ID',
2346         'Often the same thing as the PayPal manager login',
2347         'string'
2348     ),
2349     ('credit.processor.payflowpro.password',
2350         'Credit card processing: PayflowPro password',
2351         'PayflowPro password',
2352         'string'
2353     ),
2354     ('credit.processor.payflowpro.testmode',
2355         'Credit card processing: PayflowPro test mode',
2356         'Do not really process transactions, but stay in test mode - uses pilot-payflowpro.paypal.com instead of the usual host',
2357         'bool'
2358     ),
2359     ('credit.processor.payflowpro.vendor',
2360         'Credit card processing: PayflowPro vendor',
2361         'Often the same thing as the login',
2362         'string'
2363     ),
2364     ('credit.processor.payflowpro.partner',
2365         'Credit card processing: PayflowPro partner',
2366         'Often "PayPal" or "VeriSign", sometimes others',
2367         'string'
2368     );
2369
2370 -- Patch the name of an old selfcheck setting
2371 UPDATE actor.org_unit_setting
2372     SET name = 'circ.selfcheck.alert.popup'
2373     WHERE name = 'circ.selfcheck.alert_on_checkout_event';
2374
2375 -- Rename certain existing org_unit settings, if present,
2376 -- and make sure their values are JSON
2377 UPDATE actor.org_unit_setting SET
2378     name = 'circ.holds.default_estimated_wait_interval',
2379     --
2380     -- The value column should be JSON.  The old value should be a number,
2381     -- but it may or may not be quoted.  The following CASE behaves
2382     -- differently depending on whether value is quoted.  It is simplistic,
2383     -- and will be defeated by leading or trailing white space, or various
2384     -- malformations.
2385     --
2386     value = CASE WHEN SUBSTR( value, 1, 1 ) = '"'
2387                 THEN '"' || SUBSTR( value, 2, LENGTH(value) - 2 ) || ' days"'
2388                 ELSE '"' || value || ' days"'
2389             END
2390 WHERE name = 'circ.hold_estimate_wait_interval';
2391
2392 -- Create types for existing org unit settings
2393 -- not otherwise accounted for
2394
2395 INSERT INTO config.org_unit_setting_type(
2396  name,
2397  label,
2398  description
2399 )
2400 SELECT DISTINCT
2401         name,
2402         name,
2403         'FIXME'
2404 FROM
2405         actor.org_unit_setting
2406 WHERE
2407         name NOT IN (
2408                 SELECT name
2409                 FROM config.org_unit_setting_type
2410         );
2411
2412 -- Add foreign key to org_unit_setting
2413
2414 ALTER TABLE actor.org_unit_setting
2415         ADD FOREIGN KEY (name) REFERENCES config.org_unit_setting_type (name)
2416                 DEFERRABLE INITIALLY DEFERRED;
2417
2418 -- Create types for existing user settings
2419 -- not otherwise accounted for
2420
2421 INSERT INTO config.usr_setting_type (
2422         name,
2423         label,
2424         description
2425 )
2426 SELECT DISTINCT
2427         name,
2428         name,
2429         'FIXME'
2430 FROM
2431         actor.usr_setting
2432 WHERE
2433         name NOT IN (
2434                 SELECT name
2435                 FROM config.usr_setting_type
2436         );
2437
2438 -- Add foreign key to user_setting_type
2439
2440 ALTER TABLE actor.usr_setting
2441         ADD FOREIGN KEY (name) REFERENCES config.usr_setting_type (name)
2442                 ON DELETE CASCADE ON UPDATE CASCADE
2443                 DEFERRABLE INITIALLY DEFERRED;
2444
2445 INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES
2446     (1, 'cat.spine.line.margin', 0)
2447     ,(1, 'cat.spine.line.height', 9)
2448     ,(1, 'cat.spine.line.width', 8)
2449     ,(1, 'cat.label.font.family', '"monospace"')
2450     ,(1, 'cat.label.font.size', 10)
2451     ,(1, 'cat.label.font.weight', '"normal"')
2452 ;
2453
2454 ALTER TABLE action_trigger.event_definition ADD COLUMN granularity TEXT;
2455 ALTER TABLE action_trigger.event ADD COLUMN async_output BIGINT REFERENCES action_trigger.event_output (id);
2456 ALTER TABLE action_trigger.event_definition ADD COLUMN usr_field TEXT;
2457 ALTER TABLE action_trigger.event_definition ADD COLUMN opt_in_setting TEXT REFERENCES config.usr_setting_type (name) DEFERRABLE INITIALLY DEFERRED;
2458
2459 CREATE OR REPLACE FUNCTION is_json( TEXT ) RETURNS BOOL AS $f$
2460     use JSON::XS;
2461     my $json = shift();
2462     eval { JSON::XS->new->allow_nonref->decode( $json ) };
2463     return $@ ? 0 : 1;
2464 $f$ LANGUAGE PLPERLU;
2465
2466 ALTER TABLE action_trigger.event ADD COLUMN user_data TEXT CHECK (user_data IS NULL OR is_json( user_data ));
2467
2468 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2469     'hold_request.cancel.expire_no_target',
2470     'ahr',
2471     'A hold is cancelled because no copies were found'
2472 );
2473
2474 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2475     'hold_request.cancel.expire_holds_shelf',
2476     'ahr',
2477     'A hold is cancelled because it was on the holds shelf too long'
2478 );
2479
2480 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2481     'hold_request.cancel.staff',
2482     'ahr',
2483     'A hold is cancelled because it was cancelled by staff'
2484 );
2485
2486 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2487     'hold_request.cancel.patron',
2488     'ahr',
2489     'A hold is cancelled by the patron'
2490 );
2491
2492 -- Fix typos in descriptions
2493 UPDATE action_trigger.hook SET description = 'A hold is successfully placed' WHERE key = 'hold_request.success';
2494 UPDATE action_trigger.hook SET description = 'A hold is attempted but not successfully placed' WHERE key = 'hold_request.failure';
2495
2496 -- Add a hook for renewals
2497 INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('renewal','circ','Item renewed to user');
2498
2499 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');
2500
2501 -- Sample Pre-due Notice --
2502
2503 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, template) 
2504     VALUES (6, 'f', 1, '3 Day Courtesy Notice', 'checkout.due', 'CircIsOpen', 'SendEmail', '-3 days', 'due_date', 'usr', 
2505 $$
2506 [%- USE date -%]
2507 [%- user = target.0.usr -%]
2508 To: [%- params.recipient_email || user.email %]
2509 From: [%- params.sender_email || default_sender %]
2510 Subject: Courtesy Notice
2511
2512 Dear [% user.family_name %], [% user.first_given_name %]
2513 As a reminder, the following items are due in 3 days.
2514
2515 [% FOR circ IN target %]
2516     Title: [% circ.target_copy.call_number.record.simple_record.title %] 
2517     Barcode: [% circ.target_copy.barcode %] 
2518     Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
2519     Item Cost: [% helpers.get_copy_price(circ.target_copy) %]
2520     Library: [% circ.circ_lib.name %]
2521     Library Phone: [% circ.circ_lib.phone %]
2522 [% END %]
2523
2524 $$);
2525
2526 INSERT INTO action_trigger.environment (event_def, path) VALUES 
2527     (6, 'target_copy.call_number.record.simple_record'),
2528     (6, 'usr'),
2529     (6, 'circ_lib.billing_address');
2530
2531 INSERT INTO action_trigger.event_params (event_def, param, value) VALUES
2532     (6, 'max_delay_age', '"1 day"');
2533
2534 -- also add the max delay age to the default overdue notice event def
2535 INSERT INTO action_trigger.event_params (event_def, param, value) VALUES
2536     (1, 'max_delay_age', '"1 day"');
2537   
2538 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');
2539
2540 INSERT INTO action_trigger.reactor (module,description) VALUES ('ApplyPatronPenalty','Applies the configured penalty to a patron.  Required named environment variables are "user", which refers to the user object, and "context_org", which refers to the org_unit object that acts as the focus for the penalty.');
2541
2542 INSERT INTO action_trigger.hook (
2543         key,
2544         core_type,
2545         description,
2546         passive
2547     ) VALUES (
2548         'hold_request.shelf_expires_soon',
2549         'ahr',
2550         'A hold on the shelf will expire there soon.',
2551         TRUE
2552     );
2553
2554 INSERT INTO action_trigger.event_definition (
2555         id,
2556         active,
2557         owner,
2558         name,
2559         hook,
2560         validator,
2561         reactor,
2562         delay,
2563         delay_field,
2564         group_field,
2565         template
2566     ) VALUES (
2567         7,
2568         FALSE,
2569         1,
2570         'Hold Expires from Shelf Soon',
2571         'hold_request.shelf_expires_soon',
2572         'HoldIsAvailable',
2573         'SendEmail',
2574         '- 1 DAY',
2575         'shelf_expire_time',
2576         'usr',
2577 $$
2578 [%- USE date -%]
2579 [%- user = target.0.usr -%]
2580 To: [%- params.recipient_email || user.email %]
2581 From: [%- params.sender_email || default_sender %]
2582 Subject: Hold Available Notification
2583
2584 Dear [% user.family_name %], [% user.first_given_name %]
2585 You requested holds on the following item(s), which are available for
2586 pickup, but these holds will soon expire.
2587
2588 [% FOR hold IN target %]
2589     [%- data = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
2590     Title: [% data.title %]
2591     Author: [% data.author %]
2592     Library: [% hold.pickup_lib.name %]
2593 [% END %]
2594 $$
2595     );
2596
2597 INSERT INTO action_trigger.environment (
2598         event_def,
2599         path
2600     ) VALUES
2601     ( 7, 'current_copy'),
2602     ( 7, 'pickup_lib.billing_address'),
2603     ( 7, 'usr');
2604
2605 INSERT INTO action_trigger.hook (
2606         key,
2607         core_type,
2608         description,
2609         passive
2610     ) VALUES (
2611         'hold_request.long_wait',
2612         'ahr',
2613         'A patron has been waiting on a hold to be fulfilled for a long time.',
2614         TRUE
2615     );
2616
2617 INSERT INTO action_trigger.event_definition (
2618         id,
2619         active,
2620         owner,
2621         name,
2622         hook,
2623         validator,
2624         reactor,
2625         delay,
2626         delay_field,
2627         group_field,
2628         template
2629     ) VALUES (
2630         9,
2631         FALSE,
2632         1,
2633         'Hold waiting for pickup for long time',
2634         'hold_request.long_wait',
2635         'NOOP_True',
2636         'SendEmail',
2637         '6 MONTHS',
2638         'request_time',
2639         'usr',
2640 $$
2641 [%- USE date -%]
2642 [%- user = target.0.usr -%]
2643 To: [%- params.recipient_email || user.email %]
2644 From: [%- params.sender_email || default_sender %]
2645 Subject: Long Wait Hold Notification
2646
2647 Dear [% user.family_name %], [% user.first_given_name %]
2648
2649 You requested hold(s) on the following item(s), but unfortunately
2650 we have not been able to fulfill your request after a considerable
2651 length of time.  If you would still like to receive these items,
2652 no action is required.
2653
2654 [% FOR hold IN target %]
2655     Title: [% hold.bib_rec.bib_record.simple_record.title %]
2656     Author: [% hold.bib_rec.bib_record.simple_record.author %]
2657 [% END %]
2658 $$
2659 );
2660
2661 INSERT INTO action_trigger.environment (
2662         event_def,
2663         path
2664     ) VALUES
2665     (9, 'pickup_lib'),
2666     (9, 'usr'),
2667     (9, 'bib_rec.bib_record.simple_record');
2668
2669 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2670     VALUES (
2671         'format.selfcheck.checkout',
2672         'circ',
2673         'Formats circ objects for self-checkout receipt',
2674         TRUE
2675     );
2676
2677 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2678     VALUES (
2679         10,
2680         TRUE,
2681         1,
2682         'Self-Checkout Receipt',
2683         'format.selfcheck.checkout',
2684         'NOOP_True',
2685         'ProcessTemplate',
2686         'usr',
2687         'print-on-demand',
2688 $$
2689 [%- USE date -%]
2690 [%- SET user = target.0.usr -%]
2691 [%- SET lib = target.0.circ_lib -%]
2692 [%- SET lib_addr = target.0.circ_lib.billing_address -%]
2693 [%- SET hours = lib.hours_of_operation -%]
2694 <div>
2695     <style> li { padding: 8px; margin 5px; }</style>
2696     <div>[% date.format %]</div>
2697     <div>[% lib.name %]</div>
2698     <div>[% lib_addr.street1 %] [% lib_addr.street2 %]</div>
2699     <div>[% lib_addr.city %], [% lib_addr.state %] [% lb_addr.post_code %]</div>
2700     <div>[% lib.phone %]</div>
2701     <br/>
2702
2703     [% user.family_name %], [% user.first_given_name %]
2704     <ol>
2705     [% FOR circ IN target %]
2706         [%-
2707             SET idx = loop.count - 1;
2708             SET udata =  user_data.$idx
2709         -%]
2710         <li>
2711             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
2712             <div>Barcode: [% circ.target_copy.barcode %]</div>
2713             [% IF udata.renewal_failure %]
2714                 <div style='color:red;'>Renewal Failed</div>
2715             [% ELSE %]
2716                 <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
2717             [% END %]
2718         </li>
2719     [% END %]
2720     </ol>
2721     
2722     <div>
2723         Library Hours
2724         [%- BLOCK format_time; date.format(time _ ' 1/1/1000', format='%I:%M %p'); END -%]
2725         <div>
2726             Monday 
2727             [% PROCESS format_time time = hours.dow_0_open %] 
2728             [% PROCESS format_time time = hours.dow_0_close %] 
2729         </div>
2730         <div>
2731             Tuesday 
2732             [% PROCESS format_time time = hours.dow_1_open %] 
2733             [% PROCESS format_time time = hours.dow_1_close %] 
2734         </div>
2735         <div>
2736             Wednesday 
2737             [% PROCESS format_time time = hours.dow_2_open %] 
2738             [% PROCESS format_time time = hours.dow_2_close %] 
2739         </div>
2740         <div>
2741             Thursday
2742             [% PROCESS format_time time = hours.dow_3_open %] 
2743             [% PROCESS format_time time = hours.dow_3_close %] 
2744         </div>
2745         <div>
2746             Friday
2747             [% PROCESS format_time time = hours.dow_4_open %] 
2748             [% PROCESS format_time time = hours.dow_4_close %] 
2749         </div>
2750         <div>
2751             Saturday
2752             [% PROCESS format_time time = hours.dow_5_open %] 
2753             [% PROCESS format_time time = hours.dow_5_close %] 
2754         </div>
2755         <div>
2756             Sunday 
2757             [% PROCESS format_time time = hours.dow_6_open %] 
2758             [% PROCESS format_time time = hours.dow_6_close %] 
2759         </div>
2760     </div>
2761 </div>
2762 $$
2763 );
2764
2765 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2766     ( 10, 'target_copy'),
2767     ( 10, 'circ_lib.billing_address'),
2768     ( 10, 'circ_lib.hours_of_operation'),
2769     ( 10, 'usr');
2770
2771 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2772     VALUES (
2773         'format.selfcheck.items_out',
2774         'circ',
2775         'Formats items out for self-checkout receipt',
2776         TRUE
2777     );
2778
2779 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2780     VALUES (
2781         11,
2782         TRUE,
2783         1,
2784         'Self-Checkout Items Out Receipt',
2785         'format.selfcheck.items_out',
2786         'NOOP_True',
2787         'ProcessTemplate',
2788         'usr',
2789         'print-on-demand',
2790 $$
2791 [%- USE date -%]
2792 [%- SET user = target.0.usr -%]
2793 <div>
2794     <style> li { padding: 8px; margin 5px; }</style>
2795     <div>[% date.format %]</div>
2796     <br/>
2797
2798     [% user.family_name %], [% user.first_given_name %]
2799     <ol>
2800     [% FOR circ IN target %]
2801         <li>
2802             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
2803             <div>Barcode: [% circ.target_copy.barcode %]</div>
2804             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
2805         </li>
2806     [% END %]
2807     </ol>
2808 </div>
2809 $$
2810 );
2811
2812
2813 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2814     ( 11, 'target_copy'),
2815     ( 11, 'circ_lib.billing_address'),
2816     ( 11, 'circ_lib.hours_of_operation'),
2817     ( 11, 'usr');
2818
2819 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2820     VALUES (
2821         'format.selfcheck.holds',
2822         'ahr',
2823         'Formats holds for self-checkout receipt',
2824         TRUE
2825     );
2826
2827 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2828     VALUES (
2829         12,
2830         TRUE,
2831         1,
2832         'Self-Checkout Holds Receipt',
2833         'format.selfcheck.holds',
2834         'NOOP_True',
2835         'ProcessTemplate',
2836         'usr',
2837         'print-on-demand',
2838 $$
2839 [%- USE date -%]
2840 [%- SET user = target.0.usr -%]
2841 <div>
2842     <style> li { padding: 8px; margin 5px; }</style>
2843     <div>[% date.format %]</div>
2844     <br/>
2845
2846     [% user.family_name %], [% user.first_given_name %]
2847     <ol>
2848     [% FOR hold IN target %]
2849         [%-
2850             SET idx = loop.count - 1;
2851             SET udata =  user_data.$idx
2852         -%]
2853         <li>
2854             <div>Title: [% hold.bib_rec.bib_record.simple_record.title %]</div>
2855             <div>Author: [% hold.bib_rec.bib_record.simple_record.author %]</div>
2856             <div>Pickup Location: [% hold.pickup_lib.name %]</div>
2857             <div>Status: 
2858                 [%- IF udata.ready -%]
2859                     Ready for pickup
2860                 [% ELSE %]
2861                     #[% udata.queue_position %] of [% udata.potential_copies %] copies.
2862                 [% END %]
2863             </div>
2864         </li>
2865     [% END %]
2866     </ol>
2867 </div>
2868 $$
2869 );
2870
2871
2872 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2873     ( 12, 'bib_rec.bib_record.simple_record'),
2874     ( 12, 'pickup_lib'),
2875     ( 12, 'usr');
2876
2877 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2878     VALUES (
2879         'format.selfcheck.fines',
2880         'au',
2881         'Formats fines for self-checkout receipt',
2882         TRUE
2883     );
2884
2885 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template )
2886     VALUES (
2887         13,
2888         TRUE,
2889         1,
2890         'Self-Checkout Fines Receipt',
2891         'format.selfcheck.fines',
2892         'NOOP_True',
2893         'ProcessTemplate',
2894         'print-on-demand',
2895 $$
2896 [%- USE date -%]
2897 [%- SET user = target -%]
2898 <div>
2899     <style> li { padding: 8px; margin 5px; }</style>
2900     <div>[% date.format %]</div>
2901     <br/>
2902
2903     [% user.family_name %], [% user.first_given_name %]
2904     <ol>
2905     [% FOR xact IN user.open_billable_transactions_summary %]
2906         <li>
2907             <div>Details: 
2908                 [% IF xact.xact_type == 'circulation' %]
2909                     [%- helpers.get_copy_bib_basics(xact.circulation.target_copy).title -%]
2910                 [% ELSE %]
2911                     [%- xact.last_billing_type -%]
2912                 [% END %]
2913             </div>
2914             <div>Total Billed: [% xact.total_owed %]</div>
2915             <div>Total Paid: [% xact.total_paid %]</div>
2916             <div>Balance Owed : [% xact.balance_owed %]</div>
2917         </li>
2918     [% END %]
2919     </ol>
2920 </div>
2921 $$
2922 );
2923
2924 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2925     ( 13, 'open_billable_transactions_summary.circulation' );
2926
2927 INSERT INTO action_trigger.reactor (module,description) VALUES
2928 (   'SendFile',
2929     oils_i18n_gettext(
2930         'SendFile',
2931         '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.',
2932         'atreact',
2933         'description'
2934     )
2935 );
2936
2937 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2938     VALUES (
2939         'format.acqli.html',
2940         'jub',
2941         'Formats lineitem worksheet for titles received',
2942         TRUE
2943     );
2944
2945 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template)
2946     VALUES (
2947         14,
2948         TRUE,
2949         1,
2950         'Lineitem Worksheet',
2951         'format.acqli.html',
2952         'NOOP_True',
2953         'ProcessTemplate',
2954         'print-on-demand',
2955 $$
2956 [%- USE date -%]
2957 [%- SET li = target; -%]
2958 <div class="wrapper">
2959     <div class="summary" style='font-size:110%; font-weight:bold;'>
2960
2961         <div>Title: [% helpers.get_li_attr("title", "", li.attributes) %]</div>
2962         <div>Author: [% helpers.get_li_attr("author", "", li.attributes) %]</div>
2963         <div class="count">Item Count: [% li.lineitem_details.size %]</div>
2964         <div class="lineid">Lineitem ID: [% li.id %]</div>
2965
2966         [% IF li.distribution_formulas.size > 0 %]
2967             [% SET forms = [] %]
2968             [% FOREACH form IN li.distribution_formulas; forms.push(form.formula.name); END %]
2969             <div>Distribution Formulas: [% forms.join(',') %]</div>
2970         [% END %]
2971
2972         [% IF li.lineitem_notes.size > 0 %]
2973             Lineitem Notes:
2974             <ul>
2975                 [%- FOR note IN li.lineitem_notes -%]
2976                     <li>
2977                     [% IF note.alert_text %]
2978                         [% note.alert_text.code -%] 
2979                         [% IF note.value -%]
2980                             : [% note.value %]
2981                         [% END %]
2982                     [% ELSE %]
2983                         [% note.value -%] 
2984                     [% END %]
2985                     </li>
2986                 [% END %]
2987             </ul>
2988         [% END %]
2989     </div>
2990     <br/>
2991     <table>
2992         <thead>
2993             <tr>
2994                 <th>Branch</th>
2995                 <th>Barcode</th>
2996                 <th>Call Number</th>
2997                 <th>Fund</th>
2998                 <th>Recd.</th>
2999                 <th>Notes</th>
3000             </tr>
3001         </thead>
3002         <tbody>
3003         [% FOREACH detail IN li.lineitem_details.sort('owning_lib') %]
3004             [% 
3005                 IF copy.eg_copy_id;
3006                     SET copy = copy.eg_copy_id;
3007                     SET cn_label = copy.call_number.label;
3008                 ELSE; 
3009                     SET copy = detail; 
3010                     SET cn_label = detail.cn_label;
3011                 END 
3012             %]
3013             <tr>
3014                 <!-- acq.lineitem_detail.id = [%- detail.id -%] -->
3015                 <td style='padding:5px;'>[% detail.owning_lib.shortname %]</td>
3016                 <td style='padding:5px;'>[% IF copy.barcode   %]<span class="barcode"  >[% detail.barcode   %]</span>[% END %]</td>
3017                 <td style='padding:5px;'>[% IF cn_label %]<span class="cn_label" >[% cn_label  %]</span>[% END %]</td>
3018                 <td style='padding:5px;'>[% IF detail.fund %]<span class="fund">[% detail.fund.code %] ([% detail.fund.year %])</span>[% END %]</td>
3019                 <td style='padding:5px;'>[% IF detail.recv_time %]<span class="recv_time">[% detail.recv_time %]</span>[% END %]</td>
3020                 <td style='padding:5px;'>[% detail.note %]</td>
3021             </tr>
3022         [% END %]
3023         </tbody>
3024     </table>
3025 </div>
3026 $$
3027 );
3028
3029
3030 INSERT INTO action_trigger.environment (event_def, path) VALUES
3031     ( 14, 'attributes' ),
3032     ( 14, 'lineitem_details' ),
3033     ( 14, 'lineitem_details.owning_lib' ),
3034     ( 14, 'lineitem_notes' )
3035 ;
3036
3037 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3038         'aur.ordered',
3039         'aur', 
3040         oils_i18n_gettext(
3041             'aur.ordered',
3042             'A patron acquisition request has been marked On-Order.',
3043             'ath',
3044             'description'
3045         ), 
3046         TRUE
3047     ), (
3048         'aur.received', 
3049         'aur', 
3050         oils_i18n_gettext(
3051             'aur.received', 
3052             'A patron acquisition request has been marked Received.',
3053             'ath',
3054             'description'
3055         ),
3056         TRUE
3057     ), (
3058         'aur.cancelled',
3059         'aur',
3060         oils_i18n_gettext(
3061             'aur.cancelled',
3062             'A patron acquisition request has been marked Cancelled.',
3063             'ath',
3064             'description'
3065         ),
3066         TRUE
3067     )
3068 ;
3069
3070 INSERT INTO action_trigger.validator (module,description) VALUES (
3071         'Acq::UserRequestOrdered',
3072         oils_i18n_gettext(
3073             'Acq::UserRequestOrdered',
3074             'Tests to see if the corresponding Line Item has a state of "on-order".',
3075             'atval',
3076             'description'
3077         )
3078     ), (
3079         'Acq::UserRequestReceived',
3080         oils_i18n_gettext(
3081             'Acq::UserRequestReceived',
3082             'Tests to see if the corresponding Line Item has a state of "received".',
3083             'atval',
3084             'description'
3085         )
3086     ), (
3087         'Acq::UserRequestCancelled',
3088         oils_i18n_gettext(
3089             'Acq::UserRequestCancelled',
3090             'Tests to see if the corresponding Line Item has a state of "cancelled".',
3091             'atval',
3092             'description'
3093         )
3094     )
3095 ;
3096
3097 -- What was event_definition #15 in v1.6.1 will be recreated as #20.  This
3098 -- renumbering requires some juggling:
3099 --
3100 -- 1. Update any child rows to point to #20.  These updates will temporarily
3101 -- violate foreign key constraints, but that's okay as long as we create
3102 -- #20 before committing.
3103 --
3104 -- 2. Delete the old #15.
3105 --
3106 -- 3. Insert the new #15.
3107 --
3108 -- 4. Insert #20.
3109 --
3110 -- We could combine steps 2 and 3 into a single update, but that would create
3111 -- additional opportunities for typos, since we already have the insert from
3112 -- an upgrade script.
3113
3114 UPDATE action_trigger.environment
3115 SET event_def = 20
3116 WHERE event_def = 15;
3117
3118 UPDATE action_trigger.event
3119 SET event_def = 20
3120 WHERE event_def = 15;
3121
3122 UPDATE action_trigger.event_params
3123 SET event_def = 20
3124 WHERE event_def = 15;
3125
3126 DELETE FROM action_trigger.event_definition
3127 WHERE id = 15;
3128
3129 INSERT INTO action_trigger.event_definition (
3130         id,
3131         active,
3132         owner,
3133         name,
3134         hook,
3135         validator,
3136         reactor,
3137         template
3138     ) VALUES (
3139         15,
3140         FALSE,
3141         1,
3142         'Email Notice: Patron Acquisition Request marked On-Order.',
3143         'aur.ordered',
3144         'Acq::UserRequestOrdered',
3145         'SendEmail',
3146 $$
3147 [%- USE date -%]
3148 [%- SET li = target.lineitem; -%]
3149 [%- SET user = target.usr -%]
3150 [%- SET title = helpers.get_li_attr("title", "", li.attributes) -%]
3151 [%- SET author = helpers.get_li_attr("author", "", li.attributes) -%]
3152 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) -%]
3153 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) -%]
3154 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3155 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3156
3157 To: [%- params.recipient_email || user.email %]
3158 From: [%- params.sender_email || default_sender %]
3159 Subject: Acquisition Request Notification
3160
3161 Dear [% user.family_name %], [% user.first_given_name %]
3162 Our records indicate the following acquisition request has been placed on order.
3163
3164 Title: [% title %]
3165 [% IF author %]Author: [% author %][% END %]
3166 [% IF edition %]Edition: [% edition %][% END %]
3167 [% IF isbn %]ISBN: [% isbn %][% END %]
3168 [% IF publisher %]Publisher: [% publisher %][% END %]
3169 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3170 Lineitem ID: [% li.id %]
3171 $$
3172     ), (
3173         16,
3174         FALSE,
3175         1,
3176         'Email Notice: Patron Acquisition Request marked Received.',
3177         'aur.received',
3178         'Acq::UserRequestReceived',
3179         'SendEmail',
3180 $$
3181 [%- USE date -%]
3182 [%- SET li = target.lineitem; -%]
3183 [%- SET user = target.usr -%]
3184 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3185 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3186 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3187 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3188 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3189 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3190
3191 To: [%- params.recipient_email || user.email %]
3192 From: [%- params.sender_email || default_sender %]
3193 Subject: Acquisition Request Notification
3194
3195 Dear [% user.family_name %], [% user.first_given_name %]
3196 Our records indicate the materials for the following acquisition request have been received.
3197
3198 Title: [% title %]
3199 [% IF author %]Author: [% author %][% END %]
3200 [% IF edition %]Edition: [% edition %][% END %]
3201 [% IF isbn %]ISBN: [% isbn %][% END %]
3202 [% IF publisher %]Publisher: [% publisher %][% END %]
3203 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3204 Lineitem ID: [% li.id %]
3205 $$
3206     ), (
3207         17,
3208         FALSE,
3209         1,
3210         'Email Notice: Patron Acquisition Request marked Cancelled.',
3211         'aur.cancelled',
3212         'Acq::UserRequestCancelled',
3213         'SendEmail',
3214 $$
3215 [%- USE date -%]
3216 [%- SET li = target.lineitem; -%]
3217 [%- SET user = target.usr -%]
3218 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3219 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3220 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3221 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3222 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3223 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3224
3225 To: [%- params.recipient_email || user.email %]
3226 From: [%- params.sender_email || default_sender %]
3227 Subject: Acquisition Request Notification
3228
3229 Dear [% user.family_name %], [% user.first_given_name %]
3230 Our records indicate the following acquisition request has been cancelled.
3231
3232 Title: [% title %]
3233 [% IF author %]Author: [% author %][% END %]
3234 [% IF edition %]Edition: [% edition %][% END %]
3235 [% IF isbn %]ISBN: [% isbn %][% END %]
3236 [% IF publisher %]Publisher: [% publisher %][% END %]
3237 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3238 Lineitem ID: [% li.id %]
3239 $$
3240     );
3241
3242 INSERT INTO action_trigger.environment (
3243         event_def,
3244         path
3245     ) VALUES 
3246         ( 15, 'lineitem' ),
3247         ( 15, 'lineitem.attributes' ),
3248         ( 15, 'usr' ),
3249
3250         ( 16, 'lineitem' ),
3251         ( 16, 'lineitem.attributes' ),
3252         ( 16, 'usr' ),
3253
3254         ( 17, 'lineitem' ),
3255         ( 17, 'lineitem.attributes' ),
3256         ( 17, 'usr' )
3257     ;
3258
3259 INSERT INTO action_trigger.event_definition
3260 (id, active, owner, name, hook, validator, reactor, cleanup_success, cleanup_failure, delay, delay_field, group_field, template) VALUES
3261 (23, true, 1, 'PO JEDI', 'acqpo.activated', 'Acq::PurchaseOrderEDIRequired', 'GeneratePurchaseOrderJEDI', NULL, NULL, '00:05:00', NULL, NULL,
3262 $$[%- USE date -%]
3263 [%# start JEDI document -%]
3264 [%- BLOCK big_block -%]
3265 {
3266    "recipient":"[% target.provider.san %]",
3267    "sender":"[% target.ordering_agency.mailing_address.san %]",
3268    "body": [{
3269      "ORDERS":[ "order", {
3270         "po_number":[% target.id %],
3271         "date":"[% date.format(date.now, '%Y%m%d') %]",
3272         "buyer":[{
3273             [%- IF target.provider.edi_default.vendcode -%]
3274                 "id":"[% target.ordering_agency.mailing_address.san _ ' ' _ target.provider.edi_default.vendcode %]", 
3275                 "id-qualifier": 91
3276             [%- ELSE -%]
3277                 "id":"[% target.ordering_agency.mailing_address.san %]"
3278             [%- END  -%]
3279         }],
3280         "vendor":[ 
3281             [%- # target.provider.name (target.provider.id) -%]
3282             "[% target.provider.san %]",
3283             {"id-qualifier": 92, "id":"[% target.provider.id %]"}
3284         ],
3285         "currency":"[% target.provider.currency_type %]",
3286         "items":[
3287         [% FOR li IN target.lineitems %]
3288         {
3289             "identifiers":[   [%-# li.isbns = helpers.get_li_isbns(li.attributes) %]
3290             [% FOR isbn IN helpers.get_li_isbns(li.attributes) -%]
3291                 [% IF isbn.length == 13 -%]
3292                 {"id-qualifier":"EN","id":"[% isbn %]"},
3293                 [% ELSE -%]
3294                 {"id-qualifier":"IB","id":"[% isbn %]"},
3295                 [%- END %]
3296             [% END %]
3297                 {"id-qualifier":"SA","id":"[% li.id %]"}
3298             ],
3299             "price":[% li.estimated_unit_price || '0.00' %],
3300             "desc":[
3301                 {"BTI":"[% helpers.get_li_attr('title',     '', li.attributes) %]"}, 
3302                 {"BPU":"[% helpers.get_li_attr('publisher', '', li.attributes) %]"},
3303                 {"BPD":"[% helpers.get_li_attr('pubdate',   '', li.attributes) %]"},
3304                 {"BPH":"[% helpers.get_li_attr('pagination','', li.attributes) %]"}
3305             ],
3306             "quantity":[% li.lineitem_details.size %]
3307         }[% UNLESS loop.last %],[% END %]
3308         [%-# TODO: lineitem details (later) -%]
3309         [% END %]
3310         ],
3311         "line_items":[% target.lineitems.size %]
3312      }]  [% # close ORDERS array %]
3313    }]    [% # close  body  array %]
3314 }
3315 [% END %]
3316 [% tempo = PROCESS big_block; helpers.escape_json(tempo) %]
3317 $$
3318 );
3319
3320 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3321   (23, 'lineitems.attributes'), 
3322   (23, 'lineitems.lineitem_details'), 
3323   (23, 'lineitems.lineitem_notes'), 
3324   (23, 'ordering_agency.mailing_address'), 
3325   (23, 'provider');
3326
3327 UPDATE action_trigger.event_definition SET template = 
3328 $$
3329 [%- USE date -%]
3330 [%-
3331     # find a lineitem attribute by name and optional type
3332     BLOCK get_li_attr;
3333         FOR attr IN li.attributes;
3334             IF attr.attr_name == attr_name;
3335                 IF !attr_type OR attr_type == attr.attr_type;
3336                     attr.attr_value;
3337                     LAST;
3338                 END;
3339             END;
3340         END;
3341     END
3342 -%]
3343
3344 <h2>Purchase Order [% target.id %]</h2>
3345 <br/>
3346 date <b>[% date.format(date.now, '%Y%m%d') %]</b>
3347 <br/>
3348
3349 <style>
3350     table td { padding:5px; border:1px solid #aaa;}
3351     table { width:95%; border-collapse:collapse; }
3352     #vendor-notes { padding:5px; border:1px solid #aaa; }
3353 </style>
3354 <table id='vendor-table'>
3355   <tr>
3356     <td valign='top'>Vendor</td>
3357     <td>
3358       <div>[% target.provider.name %]</div>
3359       <div>[% target.provider.addresses.0.street1 %]</div>
3360       <div>[% target.provider.addresses.0.street2 %]</div>
3361       <div>[% target.provider.addresses.0.city %]</div>
3362       <div>[% target.provider.addresses.0.state %]</div>
3363       <div>[% target.provider.addresses.0.country %]</div>
3364       <div>[% target.provider.addresses.0.post_code %]</div>
3365     </td>
3366     <td valign='top'>Ship to / Bill to</td>
3367     <td>
3368       <div>[% target.ordering_agency.name %]</div>
3369       <div>[% target.ordering_agency.billing_address.street1 %]</div>
3370       <div>[% target.ordering_agency.billing_address.street2 %]</div>
3371       <div>[% target.ordering_agency.billing_address.city %]</div>
3372       <div>[% target.ordering_agency.billing_address.state %]</div>
3373       <div>[% target.ordering_agency.billing_address.country %]</div>
3374       <div>[% target.ordering_agency.billing_address.post_code %]</div>
3375     </td>
3376   </tr>
3377 </table>
3378
3379 <br/><br/>
3380 <fieldset id='vendor-notes'>
3381     <legend>Notes to the Vendor</legend>
3382     <ul>
3383     [% FOR note IN target.notes %]
3384         [% IF note.vendor_public == 't' %]
3385             <li>[% note.value %]</li>
3386         [% END %]
3387     [% END %]
3388     </ul>
3389 </fieldset>
3390 <br/><br/>
3391
3392 <table>
3393   <thead>
3394     <tr>
3395       <th>PO#</th>
3396       <th>ISBN or Item #</th>
3397       <th>Title</th>
3398       <th>Quantity</th>
3399       <th>Unit Price</th>
3400       <th>Line Total</th>
3401       <th>Notes</th>
3402     </tr>
3403   </thead>
3404   <tbody>
3405
3406   [% subtotal = 0 %]
3407   [% FOR li IN target.lineitems %]
3408
3409   <tr>
3410     [% count = li.lineitem_details.size %]
3411     [% price = li.estimated_unit_price %]
3412     [% litotal = (price * count) %]
3413     [% subtotal = subtotal + litotal %]
3414     [% isbn = PROCESS get_li_attr attr_name = 'isbn' %]
3415     [% ident = PROCESS get_li_attr attr_name = 'identifier' %]
3416
3417     <td>[% target.id %]</td>
3418     <td>[% isbn || ident %]</td>
3419     <td>[% PROCESS get_li_attr attr_name = 'title' %]</td>
3420     <td>[% count %]</td>
3421     <td>[% price %]</td>
3422     <td>[% litotal %]</td>
3423     <td>
3424         <ul>
3425         [% FOR note IN li.lineitem_notes %]
3426             [% IF note.vendor_public == 't' %]
3427                 <li>[% note.value %]</li>
3428             [% END %]
3429         [% END %]
3430         </ul>
3431     </td>
3432   </tr>
3433   [% END %]
3434   <tr>
3435     <td/><td/><td/><td/>
3436     <td>Subtotal</td>
3437     <td>[% subtotal %]</td>
3438   </tr>
3439   </tbody>
3440 </table>
3441
3442 <br/>
3443
3444 Total Line Item Count: [% target.lineitems.size %]
3445 $$
3446 WHERE id = 4;
3447
3448 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3449     (4, 'lineitems.lineitem_notes'),
3450     (4, 'notes');
3451
3452 INSERT INTO action_trigger.environment (event_def, path) VALUES
3453     ( 14, 'lineitem_notes.alert_text' ),
3454     ( 14, 'distribution_formulas.formula' ),
3455     ( 14, 'lineitem_details.fund' ),
3456     ( 14, 'lineitem_details.eg_copy_id' ),
3457     ( 14, 'lineitem_details.eg_copy_id.call_number' )
3458 ;
3459
3460 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3461         'aur.created',
3462         'aur',
3463         oils_i18n_gettext(
3464             'aur.created',
3465             'A patron has made an acquisitions request.',
3466             'ath',
3467             'description'
3468         ),
3469         TRUE
3470     ), (
3471         'aur.rejected',
3472         'aur',
3473         oils_i18n_gettext(
3474             'aur.rejected',
3475             'A patron acquisition request has been rejected.',
3476             'ath',
3477             'description'
3478         ),
3479         TRUE
3480     )
3481 ;
3482
3483 INSERT INTO action_trigger.event_definition (
3484         id,
3485         active,
3486         owner,
3487         name,
3488         hook,
3489         validator,
3490         reactor,
3491         template
3492     ) VALUES (
3493         18,
3494         FALSE,
3495         1,
3496         'Email Notice: Acquisition Request created.',
3497         'aur.created',
3498         'NOOP_True',
3499         'SendEmail',
3500 $$
3501 [%- USE date -%]
3502 [%- SET user = target.usr -%]
3503 [%- SET title = target.title -%]
3504 [%- SET author = target.author -%]
3505 [%- SET isxn = target.isxn -%]
3506 [%- SET publisher = target.publisher -%]
3507 [%- SET pubdate = target.pubdate -%]
3508
3509 To: [%- params.recipient_email || user.email %]
3510 From: [%- params.sender_email || default_sender %]
3511 Subject: Acquisition Request Notification
3512
3513 Dear [% user.family_name %], [% user.first_given_name %]
3514 Our records indicate that you have made the following acquisition request:
3515
3516 Title: [% title %]
3517 [% IF author %]Author: [% author %][% END %]
3518 [% IF edition %]Edition: [% edition %][% END %]
3519 [% IF isbn %]ISXN: [% isxn %][% END %]
3520 [% IF publisher %]Publisher: [% publisher %][% END %]
3521 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3522 $$
3523     ), (
3524         19,
3525         FALSE,
3526         1,
3527         'Email Notice: Acquisition Request Rejected.',
3528         'aur.rejected',
3529         'NOOP_True',
3530         'SendEmail',
3531 $$
3532 [%- USE date -%]
3533 [%- SET user = target.usr -%]
3534 [%- SET title = target.title -%]
3535 [%- SET author = target.author -%]
3536 [%- SET isxn = target.isxn -%]
3537 [%- SET publisher = target.publisher -%]
3538 [%- SET pubdate = target.pubdate -%]
3539 [%- SET cancel_reason = target.cancel_reason.description -%]
3540
3541 To: [%- params.recipient_email || user.email %]
3542 From: [%- params.sender_email || default_sender %]
3543 Subject: Acquisition Request Notification
3544
3545 Dear [% user.family_name %], [% user.first_given_name %]
3546 Our records indicate the following acquisition request has been rejected for this reason: [% cancel_reason %]
3547
3548 Title: [% title %]
3549 [% IF author %]Author: [% author %][% END %]
3550 [% IF edition %]Edition: [% edition %][% END %]
3551 [% IF isbn %]ISBN: [% isbn %][% END %]
3552 [% IF publisher %]Publisher: [% publisher %][% END %]
3553 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3554 $$
3555     );
3556
3557 INSERT INTO action_trigger.environment (
3558         event_def,
3559         path
3560     ) VALUES 
3561         ( 18, 'usr' ),
3562         ( 19, 'usr' ),
3563         ( 19, 'cancel_reason' )
3564     ;
3565
3566 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, template) 
3567     VALUES (20, 'f', 1, 'Password reset request notification', 'password.reset_request', 'NOOP_True', 'SendEmail', '00:00:01',
3568 $$
3569 [%- USE date -%]
3570 [%- user = target.usr -%]
3571 To: [%- params.recipient_email || user.email %]
3572 From: [%- params.sender_email || user.home_ou.email || default_sender %]
3573 Subject: [% user.home_ou.name %]: library account password reset request
3574   
3575 You have received this message because you, or somebody else, requested a reset
3576 of your library system password. If you did not request a reset of your library
3577 system password, just ignore this message and your current password will
3578 continue to work.
3579
3580 If you did request a reset of your library system password, please perform
3581 the following steps to continue the process of resetting your password:
3582
3583 1. Open the following link in a web browser: https://[% params.hostname %]/opac/password/[% params.locale || 'en-US' %]/[% target.uuid %]
3584 The browser displays a password reset form.
3585
3586 2. Enter your new password in the password reset form in the browser. You must
3587 enter the password twice to ensure that you do not make a mistake. If the
3588 passwords match, you will then be able to log in to your library system account
3589 with the new password.
3590
3591 $$);
3592
3593 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3594     VALUES (
3595         'format.acqcle.html',
3596         'acqcle',
3597         'Formats claim events into a voucher',
3598         TRUE
3599     );
3600
3601 INSERT INTO action_trigger.event_definition (
3602         id, active, owner, name, hook, group_field,
3603         validator, reactor, granularity, template
3604     ) VALUES (
3605         21,
3606         TRUE,
3607         1,
3608         'Claim Voucher',
3609         'format.acqcle.html',
3610         'claim',
3611         'NOOP_True',
3612         'ProcessTemplate',
3613         'print-on-demand',
3614 $$
3615 [%- USE date -%]
3616 [%- SET claim = target.0.claim -%]
3617 <!-- This will need refined/prettified. -->
3618 <div class="acq-claim-voucher">
3619     <h2>Claim: [% claim.id %] ([% claim.type.code %])</h2>
3620     <h3>Against: [%- helpers.get_li_attr("title", "", claim.lineitem_detail.lineitem.attributes) -%]</h3>
3621     <ul>
3622         [% FOR event IN target %]
3623         <li>
3624             Event type: [% event.type.code %]
3625             [% IF event.type.library_initiated %](Library initiated)[% END %]
3626             <br />
3627             Event date: [% event.event_date %]<br />
3628             Order date: [% event.claim.lineitem_detail.lineitem.purchase_order.order_date %]<br />
3629             Expected receive date: [% event.claim.lineitem_detail.lineitem.expected_recv_time %]<br />
3630             Initiated by: [% event.creator.family_name %], [% event.creator.first_given_name %] [% event.creator.second_given_name %]<br />
3631             Barcode: [% event.claim.lineitem_detail.barcode %]; Fund:
3632             [% event.claim.lineitem_detail.fund.code %]
3633             ([% event.claim.lineitem_detail.fund.year %])
3634         </li>
3635         [% END %]
3636     </ul>
3637 </div>
3638 $$
3639 );
3640
3641 INSERT INTO action_trigger.environment (event_def, path) VALUES
3642     (21, 'claim'),
3643     (21, 'claim.type'),
3644     (21, 'claim.lineitem_detail'),
3645     (21, 'claim.lineitem_detail.fund'),
3646     (21, 'claim.lineitem_detail.lineitem.attributes'),
3647     (21, 'claim.lineitem_detail.lineitem.purchase_order'),
3648     (21, 'creator'),
3649     (21, 'type')
3650 ;
3651
3652 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3653     VALUES (
3654         'format.acqinv.html',
3655         'acqinv',
3656         'Formats invoices into a voucher',
3657         TRUE
3658     );
3659
3660 INSERT INTO action_trigger.event_definition (
3661         id, active, owner, name, hook,
3662         validator, reactor, granularity, template
3663     ) VALUES (
3664         22,
3665         TRUE,
3666         1,
3667         'Invoice',
3668         'format.acqinv.html',
3669         'NOOP_True',
3670         'ProcessTemplate',
3671         'print-on-demand',
3672 $$
3673 [% FILTER collapse %]
3674 [%- SET invoice = target -%]
3675 <!-- This lacks totals, info about funds (for invoice entries,
3676     funds are per-LID!), and general refinement -->
3677 <div class="acq-invoice-voucher">
3678     <h1>Invoice</h1>
3679     <div>
3680         <strong>No.</strong> [% invoice.inv_ident %]
3681         [% IF invoice.inv_type %]
3682             / <strong>Type:</strong>[% invoice.inv_type %]
3683         [% END %]
3684     </div>
3685     <div>
3686         <dl>
3687             [% BLOCK ent_with_address %]
3688             <dt>[% ent_label %]: [% ent.name %] ([% ent.code %])</dt>
3689             <dd>
3690                 [% IF ent.addresses.0 %]
3691                     [% SET addr = ent.addresses.0 %]
3692                     [% addr.street1 %]<br />
3693                     [% IF addr.street2 %][% addr.street2 %]<br />[% END %]
3694                     [% addr.city %],
3695                     [% IF addr.county %] [% addr.county %], [% END %]
3696                     [% IF addr.state %] [% addr.state %] [% END %]
3697                     [% IF addr.post_code %][% addr.post_code %][% END %]<br />
3698                     [% IF addr.country %] [% addr.country %] [% END %]
3699                 [% END %]
3700                 <p>
3701                     [% IF ent.phone %] Phone: [% ent.phone %]<br />[% END %]
3702                     [% IF ent.fax_phone %] Fax: [% ent.fax_phone %]<br />[% END %]
3703                     [% IF ent.url %] URL: [% ent.url %]<br />[% END %]
3704                     [% IF ent.email %] E-mail: [% ent.email %] [% END %]
3705                 </p>
3706             </dd>
3707             [% END %]
3708             [% INCLUDE ent_with_address
3709                 ent = invoice.provider
3710                 ent_label = "Provider" %]
3711             [% INCLUDE ent_with_address
3712                 ent = invoice.shipper
3713                 ent_label = "Shipper" %]
3714             <dt>Receiver</dt>
3715             <dd>
3716                 [% invoice.receiver.name %] ([% invoice.receiver.shortname %])
3717             </dd>
3718             <dt>Received</dt>
3719             <dd>
3720                 [% helpers.format_date(invoice.recv_date) %] by
3721                 [% invoice.recv_method %]
3722             </dd>
3723             [% IF invoice.note %]
3724                 <dt>Note</dt>
3725                 <dd>
3726                     [% invoice.note %]
3727                 </dd>
3728             [% END %]
3729         </dl>
3730     </div>
3731     <ul>
3732         [% FOR entry IN invoice.entries %]
3733             <li>
3734                 [% IF entry.lineitem %]
3735                     Title: [% helpers.get_li_attr(
3736                         "title", "", entry.lineitem.attributes
3737                     ) %]<br />
3738                     Author: [% helpers.get_li_attr(
3739                         "author", "", entry.lineitem.attributes
3740                     ) %]
3741                 [% END %]
3742                 [% IF entry.purchase_order %]
3743                     (PO: [% entry.purchase_order.name %])
3744                 [% END %]<br />
3745                 Invoice item count: [% entry.inv_item_count %]
3746                 [% IF entry.phys_item_count %]
3747                     / Physical item count: [% entry.phys_item_count %]
3748                 [% END %]
3749                 <br />
3750                 [% IF entry.cost_billed %]
3751                     Cost billed: [% entry.cost_billed %]
3752                     [% IF entry.billed_per_item %](per item)[% END %]
3753                     <br />
3754                 [% END %]
3755                 [% IF entry.actual_cost %]
3756                     Actual cost: [% entry.actual_cost %]<br />
3757                 [% END %]
3758                 [% IF entry.amount_paid %]
3759                     Amount paid: [% entry.amount_paid %]<br />
3760                 [% END %]
3761                 [% IF entry.note %]Note: [% entry.note %][% END %]
3762             </li>
3763         [% END %]
3764         [% FOR item IN invoice.items %]
3765             <li>
3766                 [% IF item.inv_item_type %]
3767                     Item Type: [% item.inv_item_type %]<br />
3768                 [% END %]
3769                 [% IF item.title %]Title/Description:
3770                     [% item.title %]<br />
3771                 [% END %]
3772                 [% IF item.author %]Author: [% item.author %]<br />[% END %]
3773                 [% IF item.purchase_order %]PO: [% item.purchase_order %]<br />[% END %]
3774                 [% IF item.note %]Note: [% item.note %]<br />[% END %]
3775                 [% IF item.cost_billed %]
3776                     Cost billed: [% item.cost_billed %]<br />
3777                 [% END %]
3778                 [% IF item.actual_cost %]
3779                     Actual cost: [% item.actual_cost %]<br />
3780                 [% END %]
3781                 [% IF item.amount_paid %]
3782                     Amount paid: [% item.amount_paid %]<br />
3783                 [% END %]
3784             </li>
3785         [% END %]
3786     </ul>
3787 </div>
3788 [% END %]
3789 $$
3790 );
3791
3792 INSERT INTO action_trigger.environment (event_def, path) VALUES
3793     (22, 'provider'),
3794     (22, 'provider.addresses'),
3795     (22, 'shipper'),
3796     (22, 'shipper.addresses'),
3797     (22, 'receiver'),
3798     (22, 'entries'),
3799     (22, 'entries.purchase_order'),
3800     (22, 'entries.lineitem'),
3801     (22, 'entries.lineitem.attributes'),
3802     (22, 'items')
3803 ;
3804
3805 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3806   (23, 'provider.edi_default');
3807
3808 INSERT INTO action_trigger.validator (module, description) 
3809     VALUES (
3810         'Acq::PurchaseOrderEDIRequired',
3811         oils_i18n_gettext(
3812             'Acq::PurchaseOrderEDIRequired',
3813             'Purchase order is delivered via EDI',
3814             'atval',
3815             'description'
3816         )
3817     );
3818
3819 INSERT INTO action_trigger.reactor (module, description)
3820     VALUES (
3821         'GeneratePurchaseOrderJEDI',
3822         oils_i18n_gettext(
3823             'GeneratePurchaseOrderJEDI',
3824             'Creates purchase order JEDI (JSON EDI) for subsequent EDI processing',
3825             'atreact',
3826             'description'
3827         )
3828     );
3829
3830 UPDATE action_trigger.hook 
3831     SET 
3832         key = 'acqpo.activated', 
3833         passive = FALSE,
3834         description = oils_i18n_gettext(
3835             'acqpo.activated',
3836             'Purchase order was activated',
3837             'ath',
3838             'description'
3839         )
3840     WHERE key = 'format.po.jedi';
3841
3842 -- We just changed a key in action_trigger.hook.  Now redirect any
3843 -- child rows to point to the new key.  (There probably aren't any;
3844 -- this is just a precaution against possible local modifications.)
3845
3846 UPDATE action_trigger.event_definition
3847 SET hook = 'acqpo.activated'
3848 WHERE hook = 'format.po.jedi';
3849
3850 INSERT INTO action_trigger.reactor (module, description) VALUES (
3851     'AstCall', 'Possibly place a phone call with Asterisk'
3852 );
3853
3854 INSERT INTO
3855     action_trigger.event_definition (
3856         id, active, owner, name, hook, validator, reactor,
3857         cleanup_success, cleanup_failure, delay, delay_field, group_field,
3858         max_delay, granularity, usr_field, opt_in_setting, template
3859     ) VALUES (
3860         24,
3861         FALSE,
3862         1,
3863         'Telephone Overdue Notice',
3864         'checkout.due', 'NOOP_True', 'AstCall',
3865         DEFAULT, DEFAULT, '5 seconds', 'due_date', 'usr',
3866         DEFAULT, DEFAULT, DEFAULT, DEFAULT,
3867         $$
3868 [% phone = target.0.usr.day_phone | replace('[\s\-\(\)]', '') -%]
3869 [% IF phone.match('^[2-9]') %][% country = 1 %][% ELSE %][% country = '' %][% END -%]
3870 Channel: [% channel_prefix %]/[% country %][% phone %]
3871 Context: overdue-test
3872 MaxRetries: 1
3873 RetryTime: 60
3874 WaitTime: 30
3875 Extension: 10
3876 Archive: 1
3877 Set: eg_user_id=[% target.0.usr.id %]
3878 Set: items=[% target.size %]
3879 Set: titlestring=[% titles = [] %][% FOR circ IN target %][% titles.push(circ.target_copy.call_number.record.simple_record.title) %][% END %][% titles.join(". ") %]
3880 $$
3881     );
3882
3883 INSERT INTO
3884     action_trigger.environment (id, event_def, path)
3885     VALUES
3886         (DEFAULT, 24, 'target_copy.call_number.record.simple_record'),
3887         (DEFAULT, 24, 'usr')
3888     ;
3889
3890 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3891         'circ.format.history.email',
3892         'circ', 
3893         oils_i18n_gettext(
3894             'circ.format.history.email',
3895             'An email has been requested for a circ history.',
3896             'ath',
3897             'description'
3898         ), 
3899         FALSE
3900     )
3901     ,(
3902         'circ.format.history.print',
3903         'circ', 
3904         oils_i18n_gettext(
3905             'circ.format.history.print',
3906             'A circ history needs to be formatted for printing.',
3907             'ath',
3908             'description'
3909         ), 
3910         FALSE
3911     )
3912     ,(
3913         'ahr.format.history.email',
3914         'ahr', 
3915         oils_i18n_gettext(
3916             'ahr.format.history.email',
3917             'An email has been requested for a hold request history.',
3918             'ath',
3919             'description'
3920         ), 
3921         FALSE
3922     )
3923     ,(
3924         'ahr.format.history.print',
3925         'ahr', 
3926         oils_i18n_gettext(
3927             'ahr.format.history.print',
3928             'A hold request history needs to be formatted for printing.',
3929             'ath',
3930             'description'
3931         ), 
3932         FALSE
3933     )
3934
3935 ;
3936
3937 INSERT INTO action_trigger.event_definition (
3938         id,
3939         active,
3940         owner,
3941         name,
3942         hook,
3943         validator,
3944         reactor,
3945         group_field,
3946         granularity,
3947         template
3948     ) VALUES (
3949         25,
3950         TRUE,
3951         1,
3952         'circ.history.email',
3953         'circ.format.history.email',
3954         'NOOP_True',
3955         'SendEmail',
3956         'usr',
3957         NULL,
3958 $$
3959 [%- USE date -%]
3960 [%- SET user = target.0.usr -%]
3961 To: [%- params.recipient_email || user.email %]
3962 From: [%- params.sender_email || default_sender %]
3963 Subject: Circulation History
3964
3965     [% FOR circ IN target %]
3966             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
3967             Barcode: [% circ.target_copy.barcode %]
3968             Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]
3969             Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
3970             Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]
3971     [% END %]
3972 $$
3973     )
3974     ,(
3975         26,
3976         TRUE,
3977         1,
3978         'circ.history.print',
3979         'circ.format.history.print',
3980         'NOOP_True',
3981         'ProcessTemplate',
3982         'usr',
3983         'print-on-demand',
3984 $$
3985 [%- USE date -%]
3986 <div>
3987     <style> li { padding: 8px; margin 5px; }</style>
3988     <div>[% date.format %]</div>
3989     <br/>
3990
3991     [% user.family_name %], [% user.first_given_name %]
3992     <ol>
3993     [% FOR circ IN target %]
3994         <li>
3995             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
3996             <div>Barcode: [% circ.target_copy.barcode %]</div>
3997             <div>Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]</div>
3998             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
3999             <div>Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]</div>
4000         </li>
4001     [% END %]
4002     </ol>
4003 </div>
4004 $$
4005     )
4006     ,(
4007         27,
4008         TRUE,
4009         1,
4010         'ahr.history.email',
4011         'ahr.format.history.email',
4012         'NOOP_True',
4013         'SendEmail',
4014         'usr',
4015         NULL,
4016 $$
4017 [%- USE date -%]
4018 [%- SET user = target.0.usr -%]
4019 To: [%- params.recipient_email || user.email %]
4020 From: [%- params.sender_email || default_sender %]
4021 Subject: Hold Request History
4022
4023     [% FOR hold IN target %]
4024             [% helpers.get_copy_bib_basics(hold.current_copy.id).title %]
4025             Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]
4026             [% IF hold.fulfillment_time %]Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %][% END %]
4027     [% END %]
4028 $$
4029     )
4030     ,(
4031         28,
4032         TRUE,
4033         1,
4034         'ahr.history.print',
4035         'ahr.format.history.print',
4036         'NOOP_True',
4037         'ProcessTemplate',
4038         'usr',
4039         'print-on-demand',
4040 $$
4041 [%- USE date -%]
4042 <div>
4043     <style> li { padding: 8px; margin 5px; }</style>
4044     <div>[% date.format %]</div>
4045     <br/>
4046
4047     [% user.family_name %], [% user.first_given_name %]
4048     <ol>
4049     [% FOR hold IN target %]
4050         <li>
4051             <div>[% helpers.get_copy_bib_basics(hold.current_copy.id).title %]</div>
4052             <div>Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]</div>
4053             [% IF hold.fulfillment_time %]<div>Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %]</div>[% END %]
4054         </li>
4055     [% END %]
4056     </ol>
4057 </div>
4058 $$
4059     )
4060
4061 ;
4062
4063 INSERT INTO action_trigger.environment (
4064         event_def,
4065         path
4066     ) VALUES 
4067          ( 25, 'target_copy')
4068         ,( 25, 'usr' )
4069         ,( 26, 'target_copy' )
4070         ,( 26, 'usr' )
4071         ,( 27, 'current_copy' )
4072         ,( 27, 'usr' )
4073         ,( 28, 'current_copy' )
4074         ,( 28, 'usr' )
4075 ;
4076
4077 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4078         'money.format.payment_receipt.email',
4079         'mp', 
4080         oils_i18n_gettext(
4081             'money.format.payment_receipt.email',
4082             'An email has been requested for a payment receipt.',
4083             'ath',
4084             'description'
4085         ), 
4086         FALSE
4087     )
4088     ,(
4089         'money.format.payment_receipt.print',
4090         'mp', 
4091         oils_i18n_gettext(
4092             'money.format.payment_receipt.print',
4093             'A payment receipt needs to be formatted for printing.',
4094             'ath',
4095             'description'
4096         ), 
4097         FALSE
4098     )
4099 ;
4100
4101 INSERT INTO action_trigger.event_definition (
4102         id,
4103         active,
4104         owner,
4105         name,
4106         hook,
4107         validator,
4108         reactor,
4109         group_field,
4110         granularity,
4111         template
4112     ) VALUES (
4113         29,
4114         TRUE,
4115         1,
4116         'money.payment_receipt.email',
4117         'money.format.payment_receipt.email',
4118         'NOOP_True',
4119         'SendEmail',
4120         'xact.usr',
4121         NULL,
4122 $$
4123 [%- USE date -%]
4124 [%- SET user = target.0.xact.usr -%]
4125 To: [%- params.recipient_email || user.email %]
4126 From: [%- params.sender_email || default_sender %]
4127 Subject: Payment Receipt
4128
4129 [% date.format -%]
4130 [%- SET xact_mp_hash = {} -%]
4131 [%- FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions -%]
4132     [%- SET xact_id = mp.xact.id -%]
4133     [%- IF ! xact_mp_hash.defined( xact_id ) -%][%- xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } -%][%- END -%]
4134     [%- xact_mp_hash.$xact_id.payments.push(mp) -%]
4135 [%- END -%]
4136 [%- FOR xact_id IN xact_mp_hash.keys.sort -%]
4137     [%- SET xact = xact_mp_hash.$xact_id.xact %]
4138 Transaction ID: [% xact_id %]
4139     [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4140     [% ELSE %]Miscellaneous
4141     [% END %]
4142     Line item billings:
4143         [%- SET mb_type_hash = {} -%]
4144         [%- FOR mb IN xact.billings %][%# Group billings by their btype -%]
4145             [%- IF mb.voided == 'f' -%]
4146                 [%- SET mb_type = mb.btype.id -%]
4147                 [%- IF ! mb_type_hash.defined( mb_type ) -%][%- mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } -%][%- END -%]
4148                 [%- IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) -%][%- mb_type_hash.$mb_type.first_ts = mb.billing_ts -%][%- END -%]
4149                 [%- mb_type_hash.$mb_type.last_ts = mb.billing_ts -%]
4150                 [%- mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount -%]
4151                 [%- mb_type_hash.$mb_type.billings.push( mb ) -%]
4152             [%- END -%]
4153         [%- END -%]
4154         [%- FOR mb_type IN mb_type_hash.keys.sort -%]
4155             [%- IF mb_type == 1 %][%-# Consolidated view of overdue billings -%]
4156                 $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4157                     on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4158             [%- ELSE -%][%# all other billings show individually %]
4159                 [% FOR mb IN mb_type_hash.$mb_type.billings %]
4160                     $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4161                 [% END %]
4162             [% END %]
4163         [% END %]
4164     Line item payments:
4165         [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4166             Payment ID: [% mp.id %]
4167                 Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4168                     [% CASE "cash_payment" %]cash
4169                     [% CASE "check_payment" %]check
4170                     [% CASE "credit_card_payment" %]credit card (
4171                         [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4172                         [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4173                         [% cc_chunks.last -%]
4174                         exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4175                     )
4176                     [% CASE "credit_payment" %]credit
4177                     [% CASE "forgive_payment" %]forgiveness
4178                     [% CASE "goods_payment" %]goods
4179                     [% CASE "work_payment" %]work
4180                 [%- END %] on [% mp.payment_ts %] [% mp.note %]
4181         [% END %]
4182 [% END %]
4183 $$
4184     )
4185     ,(
4186         30,
4187         TRUE,
4188         1,
4189         'money.payment_receipt.print',
4190         'money.format.payment_receipt.print',
4191         'NOOP_True',
4192         'ProcessTemplate',
4193         'xact.usr',
4194         'print-on-demand',
4195 $$
4196 [%- USE date -%][%- SET user = target.0.xact.usr -%]
4197 <div style="li { padding: 8px; margin 5px; }">
4198     <div>[% date.format %]</div><br/>
4199     <ol>
4200     [% SET xact_mp_hash = {} %]
4201     [% FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions %]
4202         [% SET xact_id = mp.xact.id %]
4203         [% IF ! xact_mp_hash.defined( xact_id ) %][% xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } %][% END %]
4204         [% xact_mp_hash.$xact_id.payments.push(mp) %]
4205     [% END %]
4206     [% FOR xact_id IN xact_mp_hash.keys.sort %]
4207         [% SET xact = xact_mp_hash.$xact_id.xact %]
4208         <li>Transaction ID: [% xact_id %]
4209             [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4210             [% ELSE %]Miscellaneous
4211             [% END %]
4212             Line item billings:<ol>
4213                 [% SET mb_type_hash = {} %]
4214                 [% FOR mb IN xact.billings %][%# Group billings by their btype %]
4215                     [% IF mb.voided == 'f' %]
4216                         [% SET mb_type = mb.btype.id %]
4217                         [% IF ! mb_type_hash.defined( mb_type ) %][% mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } %][% END %]
4218                         [% IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) %][% mb_type_hash.$mb_type.first_ts = mb.billing_ts %][% END %]
4219                         [% mb_type_hash.$mb_type.last_ts = mb.billing_ts %]
4220                         [% mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount %]
4221                         [% mb_type_hash.$mb_type.billings.push( mb ) %]
4222                     [% END %]
4223                 [% END %]
4224                 [% FOR mb_type IN mb_type_hash.keys.sort %]
4225                     <li>[% IF mb_type == 1 %][%# Consolidated view of overdue billings %]
4226                         $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4227                             on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4228                     [% ELSE %][%# all other billings show individually %]
4229                         [% FOR mb IN mb_type_hash.$mb_type.billings %]
4230                             $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4231                         [% END %]
4232                     [% END %]</li>
4233                 [% END %]
4234             </ol>
4235             Line item payments:<ol>
4236                 [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4237                     <li>Payment ID: [% mp.id %]
4238                         Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4239                             [% CASE "cash_payment" %]cash
4240                             [% CASE "check_payment" %]check
4241                             [% CASE "credit_card_payment" %]credit card (
4242                                 [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4243                                 [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4244                                 [% cc_chunks.last -%]
4245                                 exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4246                             )
4247                             [% CASE "credit_payment" %]credit
4248                             [% CASE "forgive_payment" %]forgiveness
4249                             [% CASE "goods_payment" %]goods
4250                             [% CASE "work_payment" %]work
4251                         [%- END %] on [% mp.payment_ts %] [% mp.note %]
4252                     </li>
4253                 [% END %]
4254             </ol>
4255         </li>
4256     [% END %]
4257     </ol>
4258 </div>
4259 $$
4260     )
4261 ;
4262
4263 INSERT INTO action_trigger.environment (
4264         event_def,
4265         path
4266     ) VALUES -- for fleshing mp objects
4267          ( 29, 'xact')
4268         ,( 29, 'xact.usr')
4269         ,( 29, 'xact.grocery' )
4270         ,( 29, 'xact.circulation' )
4271         ,( 29, 'xact.summary' )
4272         ,( 30, 'xact')
4273         ,( 30, 'xact.usr')
4274         ,( 30, 'xact.grocery' )
4275         ,( 30, 'xact.circulation' )
4276         ,( 30, 'xact.summary' )
4277 ;
4278
4279 INSERT INTO action_trigger.cleanup ( module, description ) VALUES (
4280     'DeleteTempBiblioBucket',
4281     oils_i18n_gettext(
4282         'DeleteTempBiblioBucket',
4283         'Deletes a cbreb object used as a target if it has a btype of "temp"',
4284         'atclean',
4285         'description'
4286     )
4287 );
4288
4289 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4290         'biblio.format.record_entry.email',
4291         'cbreb', 
4292         oils_i18n_gettext(
4293             'biblio.format.record_entry.email',
4294             'An email has been requested for one or more biblio record entries.',
4295             'ath',
4296             'description'
4297         ), 
4298         FALSE
4299     )
4300     ,(
4301         'biblio.format.record_entry.print',
4302         'cbreb', 
4303         oils_i18n_gettext(
4304             'biblio.format.record_entry.print',
4305             'One or more biblio record entries need to be formatted for printing.',
4306             'ath',
4307             'description'
4308         ), 
4309         FALSE
4310     )
4311 ;
4312
4313 INSERT INTO action_trigger.event_definition (
4314         id,
4315         active,
4316         owner,
4317         name,
4318         hook,
4319         validator,
4320         reactor,
4321         cleanup_success,
4322         cleanup_failure,
4323         group_field,
4324         granularity,
4325         template
4326     ) VALUES (
4327         31,
4328         TRUE,
4329         1,
4330         'biblio.record_entry.email',
4331         'biblio.format.record_entry.email',
4332         'NOOP_True',
4333         'SendEmail',
4334         'DeleteTempBiblioBucket',
4335         'DeleteTempBiblioBucket',
4336         'owner',
4337         NULL,
4338 $$
4339 [%- USE date -%]
4340 [%- SET user = target.0.owner -%]
4341 To: [%- params.recipient_email || user.email %]
4342 From: [%- params.sender_email || default_sender %]
4343 Subject: Bibliographic Records
4344
4345     [% FOR cbreb IN target %]
4346     [% FOR cbrebi IN cbreb.items %]
4347         Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]
4348         Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]
4349         Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]
4350         Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4351
4352     [% END %]
4353     [% END %]
4354 $$
4355     )
4356     ,(
4357         32,
4358         TRUE,
4359         1,
4360         'biblio.record_entry.print',
4361         'biblio.format.record_entry.print',
4362         'NOOP_True',
4363         'ProcessTemplate',
4364         'DeleteTempBiblioBucket',
4365         'DeleteTempBiblioBucket',
4366         'owner',
4367         'print-on-demand',
4368 $$
4369 [%- USE date -%]
4370 <div>
4371     <style> li { padding: 8px; margin 5px; }</style>
4372     <ol>
4373     [% FOR cbreb IN target %]
4374     [% FOR cbrebi IN cbreb.items %]
4375         <li>Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]<br />
4376             Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]<br />
4377             Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]<br />
4378             Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4379         </li>
4380     [% END %]
4381     [% END %]
4382     </ol>
4383 </div>
4384 $$
4385     )
4386 ;
4387
4388 INSERT INTO action_trigger.environment (
4389         event_def,
4390         path
4391     ) VALUES -- for fleshing cbreb objects
4392          ( 31, 'owner' )
4393         ,( 31, 'items' )
4394         ,( 31, 'items.target_biblio_record_entry' )
4395         ,( 31, 'items.target_biblio_record_entry.simple_record' )
4396         ,( 31, 'items.target_biblio_record_entry.call_numbers' )
4397         ,( 31, 'items.target_biblio_record_entry.fixed_fields' )
4398         ,( 31, 'items.target_biblio_record_entry.notes' )
4399         ,( 31, 'items.target_biblio_record_entry.full_record_entries' )
4400         ,( 32, 'owner' )
4401         ,( 32, 'items' )
4402         ,( 32, 'items.target_biblio_record_entry' )
4403         ,( 32, 'items.target_biblio_record_entry.simple_record' )
4404         ,( 32, 'items.target_biblio_record_entry.call_numbers' )
4405         ,( 32, 'items.target_biblio_record_entry.fixed_fields' )
4406         ,( 32, 'items.target_biblio_record_entry.notes' )
4407         ,( 32, 'items.target_biblio_record_entry.full_record_entries' )
4408 ;
4409
4410 INSERT INTO action_trigger.environment (
4411         event_def,
4412         path
4413     ) VALUES -- for fleshing mp objects
4414          ( 29, 'credit_card_payment')
4415         ,( 29, 'xact.billings')
4416         ,( 29, 'xact.billings.btype')
4417         ,( 30, 'credit_card_payment')
4418         ,( 30, 'xact.billings')
4419         ,( 30, 'xact.billings.btype')
4420 ;
4421
4422 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
4423     (   'circ.format.missing_pieces.slip.print',
4424         'circ', 
4425         oils_i18n_gettext(
4426             'circ.format.missing_pieces.slip.print',
4427             'A missing pieces slip needs to be formatted for printing.',
4428             'ath',
4429             'description'
4430         ), 
4431         FALSE
4432     )
4433     ,(  'circ.format.missing_pieces.letter.print',
4434         'circ', 
4435         oils_i18n_gettext(
4436             'circ.format.missing_pieces.letter.print',
4437             'A missing pieces patron letter needs to be formatted for printing.',
4438             'ath',
4439             'description'
4440         ), 
4441         FALSE
4442     )
4443 ;
4444
4445 INSERT INTO action_trigger.event_definition (
4446         id,
4447         active,
4448         owner,
4449         name,
4450         hook,
4451         validator,
4452         reactor,
4453         group_field,
4454         granularity,
4455         template
4456     ) VALUES (
4457         33,
4458         TRUE,
4459         1,
4460         'circ.missing_pieces.slip.print',
4461         'circ.format.missing_pieces.slip.print',
4462         'NOOP_True',
4463         'ProcessTemplate',
4464         'usr',
4465         'print-on-demand',
4466 $$
4467 [%- USE date -%]
4468 [%- SET user = target.0.usr -%]
4469 <div style="li { padding: 8px; margin 5px; }">
4470     <div>[% date.format %]</div><br/>
4471     Missing pieces for:
4472     <ol>
4473     [% FOR circ IN target %]
4474         <li>Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]<br />
4475             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4476         </li>
4477     [% END %]
4478     </ol>
4479 </div>
4480 $$
4481     )
4482     ,(
4483         34,
4484         TRUE,
4485         1,
4486         'circ.missing_pieces.letter.print',
4487         'circ.format.missing_pieces.letter.print',
4488         'NOOP_True',
4489         'ProcessTemplate',
4490         'usr',
4491         'print-on-demand',
4492 $$
4493 [%- USE date -%]
4494 [%- SET user = target.0.usr -%]
4495 [% date.format %]
4496 Dear [% user.prefix %] [% user.first_given_name %] [% user.family_name %],
4497
4498 We are missing pieces for the following returned items:
4499 [% FOR circ IN target %]
4500 Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]
4501 [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4502 [% END %]
4503
4504 Please return these pieces as soon as possible.
4505
4506 Thanks!
4507
4508 Library Staff
4509 $$
4510     )
4511 ;
4512
4513 INSERT INTO action_trigger.environment (
4514         event_def,
4515         path
4516     ) VALUES -- for fleshing circ objects
4517          ( 33, 'usr')
4518         ,( 33, 'target_copy')
4519         ,( 33, 'target_copy.circ_lib')
4520         ,( 33, 'target_copy.circ_lib.mailing_address')
4521         ,( 33, 'target_copy.circ_lib.billing_address')
4522         ,( 33, 'target_copy.call_number')
4523         ,( 33, 'target_copy.call_number.owning_lib')
4524         ,( 33, 'target_copy.call_number.owning_lib.mailing_address')
4525         ,( 33, 'target_copy.call_number.owning_lib.billing_address')
4526         ,( 33, 'circ_lib')
4527         ,( 33, 'circ_lib.mailing_address')
4528         ,( 33, 'circ_lib.billing_address')
4529         ,( 34, 'usr')
4530         ,( 34, 'target_copy')
4531         ,( 34, 'target_copy.circ_lib')
4532         ,( 34, 'target_copy.circ_lib.mailing_address')
4533         ,( 34, 'target_copy.circ_lib.billing_address')
4534         ,( 34, 'target_copy.call_number')
4535         ,( 34, 'target_copy.call_number.owning_lib')
4536         ,( 34, 'target_copy.call_number.owning_lib.mailing_address')
4537         ,( 34, 'target_copy.call_number.owning_lib.billing_address')
4538         ,( 34, 'circ_lib')
4539         ,( 34, 'circ_lib.mailing_address')
4540         ,( 34, 'circ_lib.billing_address')
4541 ;
4542
4543 INSERT INTO action_trigger.hook (key,core_type,description,passive) 
4544     VALUES (   
4545         'ahr.format.pull_list',
4546         'ahr', 
4547         oils_i18n_gettext(
4548             'ahr.format.pull_list',
4549             'Format holds pull list for printing',
4550             'ath',
4551             'description'
4552         ), 
4553         FALSE
4554     );
4555
4556 INSERT INTO action_trigger.event_definition (
4557         id,
4558         active,
4559         owner,
4560         name,
4561         hook,
4562         validator,
4563         reactor,
4564         group_field,
4565         granularity,
4566         template
4567     ) VALUES (
4568         35,
4569         TRUE,
4570         1,
4571         'Holds Pull List',
4572         'ahr.format.pull_list',
4573         'NOOP_True',
4574         'ProcessTemplate',
4575         'pickup_lib',
4576         'print-on-demand',
4577 $$
4578 [%- USE date -%]
4579 <style>
4580     table { border-collapse: collapse; } 
4581     td { padding: 5px; border-bottom: 1px solid #888; } 
4582     th { font-weight: bold; }
4583 </style>
4584 [% 
4585     # Sort the holds into copy-location buckets
4586     # In the main print loop, sort each bucket by callnumber before printing
4587     SET holds_list = [];
4588     SET loc_data = [];
4589     SET current_location = target.0.current_copy.location.id;
4590     FOR hold IN target;
4591         IF current_location != hold.current_copy.location.id;
4592             SET current_location = hold.current_copy.location.id;
4593             holds_list.push(loc_data);
4594             SET loc_data = [];
4595         END;
4596         SET hold_data = {
4597             'hold' => hold,
4598             'callnumber' => hold.current_copy.call_number.label
4599         };
4600         loc_data.push(hold_data);
4601     END;
4602     holds_list.push(loc_data)
4603 %]
4604 <table>
4605     <thead>
4606         <tr>
4607             <th>Title</th>
4608             <th>Author</th>
4609             <th>Shelving Location</th>
4610             <th>Call Number</th>
4611             <th>Barcode</th>
4612             <th>Patron</th>
4613         </tr>
4614     </thead>
4615     <tbody>
4616     [% FOR loc_data IN holds_list  %]
4617         [% FOR hold_data IN loc_data.sort('callnumber') %]
4618             [% 
4619                 SET hold = hold_data.hold;
4620                 SET copy_data = helpers.get_copy_bib_basics(hold.current_copy.id);
4621             %]
4622             <tr>
4623                 <td>[% copy_data.title | truncate %]</td>
4624                 <td>[% copy_data.author | truncate %]</td>
4625                 <td>[% hold.current_copy.location.name %]</td>
4626                 <td>[% hold.current_copy.call_number.label %]</td>
4627                 <td>[% hold.current_copy.barcode %]</td>
4628                 <td>[% hold.usr.card.barcode %]</td>
4629             </tr>
4630         [% END %]
4631     [% END %]
4632     <tbody>
4633 </table>
4634 $$
4635 );
4636
4637 INSERT INTO action_trigger.environment (
4638         event_def,
4639         path
4640     ) VALUES
4641         (35, 'current_copy.location'),
4642         (35, 'current_copy.call_number'),
4643         (35, 'usr.card'),
4644         (35, 'pickup_lib')
4645 ;
4646
4647 INSERT INTO action_trigger.validator (module, description) VALUES ( 
4648     'HoldIsCancelled', 
4649     oils_i18n_gettext( 
4650         'HoldIsCancelled', 
4651         'Check whether a hold request is cancelled.', 
4652         'atval', 
4653         'description' 
4654     ) 
4655 );
4656
4657 -- Create the query schema, and the tables and views therein
4658
4659 DROP SCHEMA IF EXISTS sql CASCADE;
4660 DROP SCHEMA IF EXISTS query CASCADE;
4661
4662 CREATE SCHEMA query;
4663
4664 CREATE TABLE query.datatype (
4665         id              SERIAL            PRIMARY KEY,
4666         datatype_name   TEXT              NOT NULL UNIQUE,
4667         is_numeric      BOOL              NOT NULL DEFAULT FALSE,
4668         is_composite    BOOL              NOT NULL DEFAULT FALSE,
4669         CONSTRAINT qdt_comp_not_num CHECK
4670         ( is_numeric IS FALSE OR is_composite IS FALSE )
4671 );
4672
4673 -- Define the most common datatypes in query.datatype.  Note that none of
4674 -- these stock datatypes specifies a width or precision.
4675
4676 -- Also: set the sequence for query.datatype to 1000, leaving plenty of
4677 -- room for more stock datatypes if we ever want to add them.
4678
4679 SELECT setval( 'query.datatype_id_seq', 1000 );
4680
4681 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4682   VALUES (1, 'SMALLINT', true);
4683  
4684 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4685   VALUES (2, 'INTEGER', true);
4686  
4687 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4688   VALUES (3, 'BIGINT', true);
4689  
4690 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4691   VALUES (4, 'DECIMAL', true);
4692  
4693 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4694   VALUES (5, 'NUMERIC', true);
4695  
4696 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4697   VALUES (6, 'REAL', true);
4698  
4699 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4700   VALUES (7, 'DOUBLE PRECISION', true);
4701  
4702 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4703   VALUES (8, 'SERIAL', true);
4704  
4705 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4706   VALUES (9, 'BIGSERIAL', true);
4707  
4708 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4709   VALUES (10, 'MONEY', false);
4710  
4711 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4712   VALUES (11, 'VARCHAR', false);
4713  
4714 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4715   VALUES (12, 'CHAR', false);
4716  
4717 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4718   VALUES (13, 'TEXT', false);
4719  
4720 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4721   VALUES (14, '"char"', false);
4722  
4723 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4724   VALUES (15, 'NAME', false);
4725  
4726 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4727   VALUES (16, 'BYTEA', false);
4728  
4729 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4730   VALUES (17, 'TIMESTAMP WITHOUT TIME ZONE', false);
4731  
4732 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4733   VALUES (18, 'TIMESTAMP WITH TIME ZONE', false);
4734  
4735 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4736   VALUES (19, 'DATE', false);
4737  
4738 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4739   VALUES (20, 'TIME WITHOUT TIME ZONE', false);
4740  
4741 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4742   VALUES (21, 'TIME WITH TIME ZONE', false);
4743  
4744 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4745   VALUES (22, 'INTERVAL', false);
4746  
4747 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4748   VALUES (23, 'BOOLEAN', false);
4749  
4750 CREATE TABLE query.subfield (
4751         id              SERIAL            PRIMARY KEY,
4752         composite_type  INT               NOT NULL
4753                                           REFERENCES query.datatype(id)
4754                                           ON DELETE CASCADE
4755                                           DEFERRABLE INITIALLY DEFERRED,
4756         seq_no          INT               NOT NULL
4757                                           CONSTRAINT qsf_pos_seq_no
4758                                           CHECK( seq_no > 0 ),
4759         subfield_type   INT               NOT NULL
4760                                           REFERENCES query.datatype(id)
4761                                           DEFERRABLE INITIALLY DEFERRED,
4762         CONSTRAINT qsf_datatype_seq_no UNIQUE (composite_type, seq_no)
4763 );
4764
4765 CREATE TABLE query.function_sig (
4766         id              SERIAL            PRIMARY KEY,
4767         function_name   TEXT              NOT NULL,
4768         return_type     INT               REFERENCES query.datatype(id)
4769                                           DEFERRABLE INITIALLY DEFERRED,
4770         is_aggregate    BOOL              NOT NULL DEFAULT FALSE,
4771         CONSTRAINT qfd_rtn_or_aggr CHECK
4772         ( return_type IS NULL OR is_aggregate = FALSE )
4773 );
4774
4775 CREATE INDEX query_function_sig_name_idx 
4776         ON query.function_sig (function_name);
4777
4778 CREATE TABLE query.function_param_def (
4779         id              SERIAL            PRIMARY KEY,
4780         function_id     INT               NOT NULL
4781                                           REFERENCES query.function_sig( id )
4782                                           ON DELETE CASCADE
4783                                           DEFERRABLE INITIALLY DEFERRED,
4784         seq_no          INT               NOT NULL
4785                                           CONSTRAINT qfpd_pos_seq_no CHECK
4786                                           ( seq_no > 0 ),
4787         datatype        INT               NOT NULL
4788                                           REFERENCES query.datatype( id )
4789                                           DEFERRABLE INITIALLY DEFERRED,
4790         CONSTRAINT qfpd_function_param_seq UNIQUE (function_id, seq_no)
4791 );
4792
4793 CREATE TABLE  query.stored_query (
4794         id            SERIAL         PRIMARY KEY,
4795         type          TEXT           NOT NULL CONSTRAINT query_type CHECK
4796                                      ( type IN ( 'SELECT', 'UNION', 'INTERSECT', 'EXCEPT' ) ),
4797         use_all       BOOLEAN        NOT NULL DEFAULT FALSE,
4798         use_distinct  BOOLEAN        NOT NULL DEFAULT FALSE,
4799         from_clause   INT            , --REFERENCES query.from_clause
4800                                      --DEFERRABLE INITIALLY DEFERRED,
4801         where_clause  INT            , --REFERENCES query.expression
4802                                      --DEFERRABLE INITIALLY DEFERRED,
4803         having_clause INT            , --REFERENCES query.expression
4804                                      --DEFERRABLE INITIALLY DEFERRED
4805         limit_count   INT            , --REFERENCES query.expression( id )
4806                                      --DEFERRABLE INITIALLY DEFERRED,
4807         offset_count  INT            --REFERENCES query.expression( id )
4808                                      --DEFERRABLE INITIALLY DEFERRED
4809 );
4810
4811 -- (Foreign keys to be defined later after other tables are created)
4812
4813 CREATE TABLE query.query_sequence (
4814         id              SERIAL            PRIMARY KEY,
4815         parent_query    INT               NOT NULL
4816                                           REFERENCES query.stored_query
4817                                                                           ON DELETE CASCADE
4818                                                                           DEFERRABLE INITIALLY DEFERRED,
4819         seq_no          INT               NOT NULL,
4820         child_query     INT               NOT NULL
4821                                           REFERENCES query.stored_query
4822                                                                           ON DELETE CASCADE
4823                                                                           DEFERRABLE INITIALLY DEFERRED,
4824         CONSTRAINT query_query_seq UNIQUE( parent_query, seq_no )
4825 );
4826
4827 CREATE TABLE query.bind_variable (
4828         name          TEXT             PRIMARY KEY,
4829         type          TEXT             NOT NULL
4830                                            CONSTRAINT bind_variable_type CHECK
4831                                            ( type in ( 'string', 'number', 'string_list', 'number_list' )),
4832         description   TEXT             NOT NULL,
4833         default_value TEXT,            -- to be encoded in JSON
4834         label         TEXT             NOT NULL
4835 );
4836
4837 CREATE TABLE query.expression (
4838         id            SERIAL        PRIMARY KEY,
4839         type          TEXT          NOT NULL CONSTRAINT expression_type CHECK
4840                                     ( type IN (
4841                                     'xbet',    -- between
4842                                     'xbind',   -- bind variable
4843                                     'xbool',   -- boolean
4844                                     'xcase',   -- case
4845                                     'xcast',   -- cast
4846                                     'xcol',    -- column
4847                                     'xex',     -- exists
4848                                     'xfunc',   -- function
4849                                     'xin',     -- in
4850                                     'xisnull', -- is null
4851                                     'xnull',   -- null
4852                                     'xnum',    -- number
4853                                     'xop',     -- operator
4854                                     'xser',    -- series
4855                                     'xstr',    -- string
4856                                     'xsubq'    -- subquery
4857                                                                 ) ),
4858         parenthesize  BOOL          NOT NULL DEFAULT FALSE,
4859         parent_expr   INT           REFERENCES query.expression
4860                                     ON DELETE CASCADE
4861                                     DEFERRABLE INITIALLY DEFERRED,
4862         seq_no        INT           NOT NULL DEFAULT 1,
4863         literal       TEXT,
4864         table_alias   TEXT,
4865         column_name   TEXT,
4866         left_operand  INT           REFERENCES query.expression
4867                                     DEFERRABLE INITIALLY DEFERRED,
4868         operator      TEXT,
4869         right_operand INT           REFERENCES query.expression
4870                                     DEFERRABLE INITIALLY DEFERRED,
4871         function_id   INT           REFERENCES query.function_sig
4872                                     DEFERRABLE INITIALLY DEFERRED,
4873         subquery      INT           REFERENCES query.stored_query
4874                                     DEFERRABLE INITIALLY DEFERRED,
4875         cast_type     INT           REFERENCES query.datatype
4876                                     DEFERRABLE INITIALLY DEFERRED,
4877         negate        BOOL          NOT NULL DEFAULT FALSE,
4878         bind_variable TEXT          REFERENCES query.bind_variable
4879                                         DEFERRABLE INITIALLY DEFERRED
4880 );
4881
4882 CREATE UNIQUE INDEX query_expr_parent_seq
4883         ON query.expression( parent_expr, seq_no )
4884         WHERE parent_expr IS NOT NULL;
4885
4886 -- Due to some circular references, the following foreign key definitions
4887 -- had to be deferred until query.expression existed:
4888
4889 ALTER TABLE query.stored_query
4890         ADD FOREIGN KEY ( where_clause )
4891         REFERENCES query.expression( id )
4892         DEFERRABLE INITIALLY DEFERRED;
4893
4894 ALTER TABLE query.stored_query
4895         ADD FOREIGN KEY ( having_clause )
4896         REFERENCES query.expression( id )
4897         DEFERRABLE INITIALLY DEFERRED;
4898
4899 ALTER TABLE query.stored_query
4900     ADD FOREIGN KEY ( limit_count )
4901     REFERENCES query.expression( id )
4902     DEFERRABLE INITIALLY DEFERRED;
4903
4904 ALTER TABLE query.stored_query
4905     ADD FOREIGN KEY ( offset_count )
4906     REFERENCES query.expression( id )
4907     DEFERRABLE INITIALLY DEFERRED;
4908
4909 CREATE TABLE query.case_branch (
4910         id            SERIAL        PRIMARY KEY,
4911         parent_expr   INT           NOT NULL REFERENCES query.expression
4912                                     ON DELETE CASCADE
4913                                     DEFERRABLE INITIALLY DEFERRED,
4914         seq_no        INT           NOT NULL,
4915         condition     INT           REFERENCES query.expression
4916                                     DEFERRABLE INITIALLY DEFERRED,
4917         result        INT           NOT NULL REFERENCES query.expression
4918                                     DEFERRABLE INITIALLY DEFERRED,
4919         CONSTRAINT case_branch_parent_seq UNIQUE (parent_expr, seq_no)
4920 );
4921
4922 CREATE TABLE query.from_relation (
4923         id               SERIAL        PRIMARY KEY,
4924         type             TEXT          NOT NULL CONSTRAINT relation_type CHECK (
4925                                            type IN ( 'RELATION', 'SUBQUERY', 'FUNCTION' ) ),
4926         table_name       TEXT,
4927         class_name       TEXT,
4928         subquery         INT           REFERENCES query.stored_query,
4929         function_call    INT           REFERENCES query.expression,
4930         table_alias      TEXT,
4931         parent_relation  INT           REFERENCES query.from_relation
4932                                        ON DELETE CASCADE
4933                                        DEFERRABLE INITIALLY DEFERRED,
4934         seq_no           INT           NOT NULL DEFAULT 1,
4935         join_type        TEXT          CONSTRAINT good_join_type CHECK (
4936                                            join_type IS NULL OR join_type IN
4937                                            ( 'INNER', 'LEFT', 'RIGHT', 'FULL' )
4938                                        ),
4939         on_clause        INT           REFERENCES query.expression
4940                                        DEFERRABLE INITIALLY DEFERRED,
4941         CONSTRAINT join_or_core CHECK (
4942         ( parent_relation IS NULL AND join_type IS NULL
4943           AND on_clause IS NULL )
4944         OR
4945         ( parent_relation IS NOT NULL AND join_type IS NOT NULL
4946           AND on_clause IS NOT NULL )
4947         )
4948 );
4949
4950 CREATE UNIQUE INDEX from_parent_seq
4951         ON query.from_relation( parent_relation, seq_no )
4952         WHERE parent_relation IS NOT NULL;
4953
4954 -- The following foreign key had to be deferred until
4955 -- query.from_relation existed
4956
4957 ALTER TABLE query.stored_query
4958         ADD FOREIGN KEY (from_clause)
4959         REFERENCES query.from_relation
4960         DEFERRABLE INITIALLY DEFERRED;
4961
4962 CREATE TABLE query.record_column (
4963         id            SERIAL            PRIMARY KEY,
4964         from_relation INT               NOT NULL REFERENCES query.from_relation
4965                                         ON DELETE CASCADE
4966                                         DEFERRABLE INITIALLY DEFERRED,
4967         seq_no        INT               NOT NULL,
4968         column_name   TEXT              NOT NULL,
4969         column_type   INT               NOT NULL REFERENCES query.datatype
4970                                         ON DELETE CASCADE
4971                                                                         DEFERRABLE INITIALLY DEFERRED,
4972         CONSTRAINT column_sequence UNIQUE (from_relation, seq_no)
4973 );
4974
4975 CREATE TABLE query.select_item (
4976         id               SERIAL         PRIMARY KEY,
4977         stored_query     INT            NOT NULL REFERENCES query.stored_query
4978                                         ON DELETE CASCADE
4979                                         DEFERRABLE INITIALLY DEFERRED,
4980         seq_no           INT            NOT NULL,
4981         expression       INT            NOT NULL REFERENCES query.expression
4982                                         DEFERRABLE INITIALLY DEFERRED,
4983         column_alias     TEXT,
4984         grouped_by       BOOL           NOT NULL DEFAULT FALSE,
4985         CONSTRAINT select_sequence UNIQUE( stored_query, seq_no )
4986 );
4987
4988 CREATE TABLE query.order_by_item (
4989         id               SERIAL         PRIMARY KEY,
4990         stored_query     INT            NOT NULL REFERENCES query.stored_query
4991                                         ON DELETE CASCADE
4992                                         DEFERRABLE INITIALLY DEFERRED,
4993         seq_no           INT            NOT NULL,
4994         expression       INT            NOT NULL REFERENCES query.expression
4995                                         ON DELETE CASCADE
4996                                         DEFERRABLE INITIALLY DEFERRED,
4997         CONSTRAINT order_by_sequence UNIQUE( stored_query, seq_no )
4998 );
4999
5000 ------------------------------------------------------------
5001 -- Create updatable views for different kinds of expressions
5002 ------------------------------------------------------------
5003
5004 -- Create updatable view for BETWEEN expressions
5005
5006 CREATE OR REPLACE VIEW query.expr_xbet AS
5007     SELECT
5008                 id,
5009                 parenthesize,
5010                 parent_expr,
5011                 seq_no,
5012                 left_operand,
5013                 negate
5014     FROM
5015         query.expression
5016     WHERE
5017         type = 'xbet';
5018
5019 CREATE OR REPLACE RULE query_expr_xbet_insert_rule AS
5020     ON INSERT TO query.expr_xbet
5021     DO INSTEAD
5022     INSERT INTO query.expression (
5023                 id,
5024                 type,
5025                 parenthesize,
5026                 parent_expr,
5027                 seq_no,
5028                 left_operand,
5029                 negate
5030     ) VALUES (
5031         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5032         'xbet',
5033         COALESCE(NEW.parenthesize, FALSE),
5034         NEW.parent_expr,
5035         COALESCE(NEW.seq_no, 1),
5036                 NEW.left_operand,
5037                 COALESCE(NEW.negate, false)
5038     );
5039
5040 CREATE OR REPLACE RULE query_expr_xbet_update_rule AS
5041     ON UPDATE TO query.expr_xbet
5042     DO INSTEAD
5043     UPDATE query.expression SET
5044         id = NEW.id,
5045         parenthesize = NEW.parenthesize,
5046         parent_expr = NEW.parent_expr,
5047         seq_no = NEW.seq_no,
5048                 left_operand = NEW.left_operand,
5049                 negate = NEW.negate
5050     WHERE
5051         id = OLD.id;
5052
5053 CREATE OR REPLACE RULE query_expr_xbet_delete_rule AS
5054     ON DELETE TO query.expr_xbet
5055     DO INSTEAD
5056     DELETE FROM query.expression WHERE id = OLD.id;
5057
5058 -- Create updatable view for bind variable expressions
5059
5060 CREATE OR REPLACE VIEW query.expr_xbind AS
5061     SELECT
5062                 id,
5063                 parenthesize,
5064                 parent_expr,
5065                 seq_no,
5066                 bind_variable
5067     FROM
5068         query.expression
5069     WHERE
5070         type = 'xbind';
5071
5072 CREATE OR REPLACE RULE query_expr_xbind_insert_rule AS
5073     ON INSERT TO query.expr_xbind
5074     DO INSTEAD
5075     INSERT INTO query.expression (
5076                 id,
5077                 type,
5078                 parenthesize,
5079                 parent_expr,
5080                 seq_no,
5081                 bind_variable
5082     ) VALUES (
5083         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5084         'xbind',
5085         COALESCE(NEW.parenthesize, FALSE),
5086         NEW.parent_expr,
5087         COALESCE(NEW.seq_no, 1),
5088                 NEW.bind_variable
5089     );
5090
5091 CREATE OR REPLACE RULE query_expr_xbind_update_rule AS
5092     ON UPDATE TO query.expr_xbind
5093     DO INSTEAD
5094     UPDATE query.expression SET
5095         id = NEW.id,
5096         parenthesize = NEW.parenthesize,
5097         parent_expr = NEW.parent_expr,
5098         seq_no = NEW.seq_no,
5099                 bind_variable = NEW.bind_variable
5100     WHERE
5101         id = OLD.id;
5102
5103 CREATE OR REPLACE RULE query_expr_xbind_delete_rule AS
5104     ON DELETE TO query.expr_xbind
5105     DO INSTEAD
5106     DELETE FROM query.expression WHERE id = OLD.id;
5107
5108 -- Create updatable view for boolean expressions
5109
5110 CREATE OR REPLACE VIEW query.expr_xbool AS
5111     SELECT
5112                 id,
5113                 parenthesize,
5114                 parent_expr,
5115                 seq_no,
5116                 literal,
5117                 negate
5118     FROM
5119         query.expression
5120     WHERE
5121         type = 'xbool';
5122
5123 CREATE OR REPLACE RULE query_expr_xbool_insert_rule AS
5124     ON INSERT TO query.expr_xbool
5125     DO INSTEAD
5126     INSERT INTO query.expression (
5127                 id,
5128                 type,
5129                 parenthesize,
5130                 parent_expr,
5131                 seq_no,
5132                 literal,
5133                 negate
5134     ) VALUES (
5135         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5136         'xbool',
5137         COALESCE(NEW.parenthesize, FALSE),
5138         NEW.parent_expr,
5139         COALESCE(NEW.seq_no, 1),
5140         NEW.literal,
5141                 COALESCE(NEW.negate, false)
5142     );
5143
5144 CREATE OR REPLACE RULE query_expr_xbool_update_rule AS
5145     ON UPDATE TO query.expr_xbool
5146     DO INSTEAD
5147     UPDATE query.expression SET
5148         id = NEW.id,
5149         parenthesize = NEW.parenthesize,
5150         parent_expr = NEW.parent_expr,
5151         seq_no = NEW.seq_no,
5152         literal = NEW.literal,
5153                 negate = NEW.negate
5154     WHERE
5155         id = OLD.id;
5156
5157 CREATE OR REPLACE RULE query_expr_xbool_delete_rule AS
5158     ON DELETE TO query.expr_xbool
5159     DO INSTEAD
5160     DELETE FROM query.expression WHERE id = OLD.id;
5161
5162 -- Create updatable view for CASE expressions
5163
5164 CREATE OR REPLACE VIEW query.expr_xcase AS
5165     SELECT
5166                 id,
5167                 parenthesize,
5168                 parent_expr,
5169                 seq_no,
5170                 left_operand,
5171                 negate
5172     FROM
5173         query.expression
5174     WHERE
5175         type = 'xcase';
5176
5177 CREATE OR REPLACE RULE query_expr_xcase_insert_rule AS
5178     ON INSERT TO query.expr_xcase
5179     DO INSTEAD
5180     INSERT INTO query.expression (
5181                 id,
5182                 type,
5183                 parenthesize,
5184                 parent_expr,
5185                 seq_no,
5186                 left_operand,
5187                 negate
5188     ) VALUES (
5189         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5190         'xcase',
5191         COALESCE(NEW.parenthesize, FALSE),
5192         NEW.parent_expr,
5193         COALESCE(NEW.seq_no, 1),
5194                 NEW.left_operand,
5195                 COALESCE(NEW.negate, false)
5196     );
5197
5198 CREATE OR REPLACE RULE query_expr_xcase_update_rule AS
5199     ON UPDATE TO query.expr_xcase
5200     DO INSTEAD
5201     UPDATE query.expression SET
5202         id = NEW.id,
5203         parenthesize = NEW.parenthesize,
5204         parent_expr = NEW.parent_expr,
5205         seq_no = NEW.seq_no,
5206                 left_operand = NEW.left_operand,
5207                 negate = NEW.negate
5208     WHERE
5209         id = OLD.id;
5210
5211 CREATE OR REPLACE RULE query_expr_xcase_delete_rule AS
5212     ON DELETE TO query.expr_xcase
5213     DO INSTEAD
5214     DELETE FROM query.expression WHERE id = OLD.id;
5215
5216 -- Create updatable view for cast expressions
5217
5218 CREATE OR REPLACE VIEW query.expr_xcast AS
5219     SELECT
5220                 id,
5221                 parenthesize,
5222                 parent_expr,
5223                 seq_no,
5224                 left_operand,
5225                 cast_type,
5226                 negate
5227     FROM
5228         query.expression
5229     WHERE
5230         type = 'xcast';
5231
5232 CREATE OR REPLACE RULE query_expr_xcast_insert_rule AS
5233     ON INSERT TO query.expr_xcast
5234     DO INSTEAD
5235     INSERT INTO query.expression (
5236         id,
5237         type,
5238         parenthesize,
5239         parent_expr,
5240         seq_no,
5241         left_operand,
5242         cast_type,
5243         negate
5244     ) VALUES (
5245         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5246         'xcast',
5247         COALESCE(NEW.parenthesize, FALSE),
5248         NEW.parent_expr,
5249         COALESCE(NEW.seq_no, 1),
5250         NEW.left_operand,
5251         NEW.cast_type,
5252         COALESCE(NEW.negate, false)
5253     );
5254
5255 CREATE OR REPLACE RULE query_expr_xcast_update_rule AS
5256     ON UPDATE TO query.expr_xcast
5257     DO INSTEAD
5258     UPDATE query.expression SET
5259         id = NEW.id,
5260         parenthesize = NEW.parenthesize,
5261         parent_expr = NEW.parent_expr,
5262         seq_no = NEW.seq_no,
5263                 left_operand = NEW.left_operand,
5264                 cast_type = NEW.cast_type,
5265                 negate = NEW.negate
5266     WHERE
5267         id = OLD.id;
5268
5269 CREATE OR REPLACE RULE query_expr_xcast_delete_rule AS
5270     ON DELETE TO query.expr_xcast
5271     DO INSTEAD
5272     DELETE FROM query.expression WHERE id = OLD.id;
5273
5274 -- Create updatable view for column expressions
5275
5276 CREATE OR REPLACE VIEW query.expr_xcol AS
5277     SELECT
5278                 id,
5279                 parenthesize,
5280                 parent_expr,
5281                 seq_no,
5282                 table_alias,
5283                 column_name,
5284                 negate
5285     FROM
5286         query.expression
5287     WHERE
5288         type = 'xcol';
5289
5290 CREATE OR REPLACE RULE query_expr_xcol_insert_rule AS
5291     ON INSERT TO query.expr_xcol
5292     DO INSTEAD
5293     INSERT INTO query.expression (
5294                 id,
5295                 type,
5296                 parenthesize,
5297                 parent_expr,
5298                 seq_no,
5299                 table_alias,
5300                 column_name,
5301                 negate
5302     ) VALUES (
5303         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5304         'xcol',
5305         COALESCE(NEW.parenthesize, FALSE),
5306         NEW.parent_expr,
5307         COALESCE(NEW.seq_no, 1),
5308                 NEW.table_alias,
5309                 NEW.column_name,
5310                 COALESCE(NEW.negate, false)
5311     );
5312
5313 CREATE OR REPLACE RULE query_expr_xcol_update_rule AS
5314     ON UPDATE TO query.expr_xcol
5315     DO INSTEAD
5316     UPDATE query.expression SET
5317         id = NEW.id,
5318         parenthesize = NEW.parenthesize,
5319         parent_expr = NEW.parent_expr,
5320         seq_no = NEW.seq_no,
5321                 table_alias = NEW.table_alias,
5322                 column_name = NEW.column_name,
5323                 negate = NEW.negate
5324     WHERE
5325         id = OLD.id;
5326
5327 CREATE OR REPLACE RULE query_expr_xcol_delete_rule AS
5328     ON DELETE TO query.expr_xcol
5329     DO INSTEAD
5330     DELETE FROM query.expression WHERE id = OLD.id;
5331
5332 -- Create updatable view for EXISTS expressions
5333
5334 CREATE OR REPLACE VIEW query.expr_xex AS
5335     SELECT
5336                 id,
5337                 parenthesize,
5338                 parent_expr,
5339                 seq_no,
5340                 subquery,
5341                 negate
5342     FROM
5343         query.expression
5344     WHERE
5345         type = 'xex';
5346
5347 CREATE OR REPLACE RULE query_expr_xex_insert_rule AS
5348     ON INSERT TO query.expr_xex
5349     DO INSTEAD
5350     INSERT INTO query.expression (
5351                 id,
5352                 type,
5353                 parenthesize,
5354                 parent_expr,
5355                 seq_no,
5356                 subquery,
5357                 negate
5358     ) VALUES (
5359         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5360         'xex',
5361         COALESCE(NEW.parenthesize, FALSE),
5362         NEW.parent_expr,
5363         COALESCE(NEW.seq_no, 1),
5364                 NEW.subquery,
5365                 COALESCE(NEW.negate, false)
5366     );
5367
5368 CREATE OR REPLACE RULE query_expr_xex_update_rule AS
5369     ON UPDATE TO query.expr_xex
5370     DO INSTEAD
5371     UPDATE query.expression SET
5372         id = NEW.id,
5373         parenthesize = NEW.parenthesize,
5374         parent_expr = NEW.parent_expr,
5375         seq_no = NEW.seq_no,
5376                 subquery = NEW.subquery,
5377                 negate = NEW.negate
5378     WHERE
5379         id = OLD.id;
5380
5381 CREATE OR REPLACE RULE query_expr_xex_delete_rule AS
5382     ON DELETE TO query.expr_xex
5383     DO INSTEAD
5384     DELETE FROM query.expression WHERE id = OLD.id;
5385
5386 -- Create updatable view for function call expressions
5387
5388 CREATE OR REPLACE VIEW query.expr_xfunc AS
5389     SELECT
5390         id,
5391         parenthesize,
5392         parent_expr,
5393         seq_no,
5394         column_name,
5395         function_id,
5396         negate
5397     FROM
5398         query.expression
5399     WHERE
5400         type = 'xfunc';
5401
5402 CREATE OR REPLACE RULE query_expr_xfunc_insert_rule AS
5403     ON INSERT TO query.expr_xfunc
5404     DO INSTEAD
5405     INSERT INTO query.expression (
5406         id,
5407         type,
5408         parenthesize,
5409         parent_expr,
5410         seq_no,
5411         column_name,
5412         function_id,
5413         negate
5414     ) VALUES (
5415         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5416         'xfunc',
5417         COALESCE(NEW.parenthesize, FALSE),
5418         NEW.parent_expr,
5419         COALESCE(NEW.seq_no, 1),
5420         NEW.column_name,
5421         NEW.function_id,
5422         COALESCE(NEW.negate, false)
5423     );
5424
5425 CREATE OR REPLACE RULE query_expr_xfunc_update_rule AS
5426     ON UPDATE TO query.expr_xfunc
5427     DO INSTEAD
5428     UPDATE query.expression SET
5429         id = NEW.id,
5430         parenthesize = NEW.parenthesize,
5431         parent_expr = NEW.parent_expr,
5432         seq_no = NEW.seq_no,
5433         column_name = NEW.column_name,
5434         function_id = NEW.function_id,
5435         negate = NEW.negate
5436     WHERE
5437         id = OLD.id;
5438
5439 CREATE OR REPLACE RULE query_expr_xfunc_delete_rule AS
5440     ON DELETE TO query.expr_xfunc
5441     DO INSTEAD
5442     DELETE FROM query.expression WHERE id = OLD.id;
5443
5444 -- Create updatable view for IN expressions
5445
5446 CREATE OR REPLACE VIEW query.expr_xin AS
5447     SELECT
5448                 id,
5449                 parenthesize,
5450                 parent_expr,
5451                 seq_no,
5452                 left_operand,
5453                 subquery,
5454                 negate
5455     FROM
5456         query.expression
5457     WHERE
5458         type = 'xin';
5459
5460 CREATE OR REPLACE RULE query_expr_xin_insert_rule AS
5461     ON INSERT TO query.expr_xin
5462     DO INSTEAD
5463     INSERT INTO query.expression (
5464                 id,
5465                 type,
5466                 parenthesize,
5467                 parent_expr,
5468                 seq_no,
5469                 left_operand,
5470                 subquery,
5471                 negate
5472     ) VALUES (
5473         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5474         'xin',
5475         COALESCE(NEW.parenthesize, FALSE),
5476         NEW.parent_expr,
5477         COALESCE(NEW.seq_no, 1),
5478                 NEW.left_operand,
5479                 NEW.subquery,
5480                 COALESCE(NEW.negate, false)
5481     );
5482
5483 CREATE OR REPLACE RULE query_expr_xin_update_rule AS
5484     ON UPDATE TO query.expr_xin
5485     DO INSTEAD
5486     UPDATE query.expression SET
5487         id = NEW.id,
5488         parenthesize = NEW.parenthesize,
5489         parent_expr = NEW.parent_expr,
5490         seq_no = NEW.seq_no,
5491                 left_operand = NEW.left_operand,
5492                 subquery = NEW.subquery,
5493                 negate = NEW.negate
5494     WHERE
5495         id = OLD.id;
5496
5497 CREATE OR REPLACE RULE query_expr_xin_delete_rule AS
5498     ON DELETE TO query.expr_xin
5499     DO INSTEAD
5500     DELETE FROM query.expression WHERE id = OLD.id;
5501
5502 -- Create updatable view for IS NULL expressions
5503
5504 CREATE OR REPLACE VIEW query.expr_xisnull AS
5505     SELECT
5506                 id,
5507                 parenthesize,
5508                 parent_expr,
5509                 seq_no,
5510                 left_operand,
5511                 negate
5512     FROM
5513         query.expression
5514     WHERE
5515         type = 'xisnull';
5516
5517 CREATE OR REPLACE RULE query_expr_xisnull_insert_rule AS
5518     ON INSERT TO query.expr_xisnull
5519     DO INSTEAD
5520     INSERT INTO query.expression (
5521                 id,
5522                 type,
5523                 parenthesize,
5524                 parent_expr,
5525                 seq_no,
5526                 left_operand,
5527                 negate
5528     ) VALUES (
5529         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5530         'xisnull',
5531         COALESCE(NEW.parenthesize, FALSE),
5532         NEW.parent_expr,
5533         COALESCE(NEW.seq_no, 1),
5534                 NEW.left_operand,
5535                 COALESCE(NEW.negate, false)
5536     );
5537
5538 CREATE OR REPLACE RULE query_expr_xisnull_update_rule AS
5539     ON UPDATE TO query.expr_xisnull
5540     DO INSTEAD
5541     UPDATE query.expression SET
5542         id = NEW.id,
5543         parenthesize = NEW.parenthesize,
5544         parent_expr = NEW.parent_expr,
5545         seq_no = NEW.seq_no,
5546                 left_operand = NEW.left_operand,
5547                 negate = NEW.negate
5548     WHERE
5549         id = OLD.id;
5550
5551 CREATE OR REPLACE RULE query_expr_xisnull_delete_rule AS
5552     ON DELETE TO query.expr_xisnull
5553     DO INSTEAD
5554     DELETE FROM query.expression WHERE id = OLD.id;
5555
5556 -- Create updatable view for NULL expressions
5557
5558 CREATE OR REPLACE VIEW query.expr_xnull AS
5559     SELECT
5560                 id,
5561                 parenthesize,
5562                 parent_expr,
5563                 seq_no,
5564                 negate
5565     FROM
5566         query.expression
5567     WHERE
5568         type = 'xnull';
5569
5570 CREATE OR REPLACE RULE query_expr_xnull_insert_rule AS
5571     ON INSERT TO query.expr_xnull
5572     DO INSTEAD
5573     INSERT INTO query.expression (
5574                 id,
5575                 type,
5576                 parenthesize,
5577                 parent_expr,
5578                 seq_no,
5579                 negate
5580     ) VALUES (
5581         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5582         'xnull',
5583         COALESCE(NEW.parenthesize, FALSE),
5584         NEW.parent_expr,
5585         COALESCE(NEW.seq_no, 1),
5586                 COALESCE(NEW.negate, false)
5587     );
5588
5589 CREATE OR REPLACE RULE query_expr_xnull_update_rule AS
5590     ON UPDATE TO query.expr_xnull
5591     DO INSTEAD
5592     UPDATE query.expression SET
5593         id = NEW.id,
5594         parenthesize = NEW.parenthesize,
5595         parent_expr = NEW.parent_expr,
5596         seq_no = NEW.seq_no,
5597                 negate = NEW.negate
5598     WHERE
5599         id = OLD.id;
5600
5601 CREATE OR REPLACE RULE query_expr_xnull_delete_rule AS
5602     ON DELETE TO query.expr_xnull
5603     DO INSTEAD
5604     DELETE FROM query.expression WHERE id = OLD.id;
5605
5606 -- Create updatable view for numeric literal expressions
5607
5608 CREATE OR REPLACE VIEW query.expr_xnum AS
5609     SELECT
5610                 id,
5611                 parenthesize,
5612                 parent_expr,
5613                 seq_no,
5614                 literal
5615     FROM
5616         query.expression
5617     WHERE
5618         type = 'xnum';
5619
5620 CREATE OR REPLACE RULE query_expr_xnum_insert_rule AS
5621     ON INSERT TO query.expr_xnum
5622     DO INSTEAD
5623     INSERT INTO query.expression (
5624                 id,
5625                 type,
5626                 parenthesize,
5627                 parent_expr,
5628                 seq_no,
5629                 literal
5630     ) VALUES (
5631         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5632         'xnum',
5633         COALESCE(NEW.parenthesize, FALSE),
5634         NEW.parent_expr,
5635         COALESCE(NEW.seq_no, 1),
5636         NEW.literal
5637     );
5638
5639 CREATE OR REPLACE RULE query_expr_xnum_update_rule AS
5640     ON UPDATE TO query.expr_xnum
5641     DO INSTEAD
5642     UPDATE query.expression SET
5643         id = NEW.id,
5644         parenthesize = NEW.parenthesize,
5645         parent_expr = NEW.parent_expr,
5646         seq_no = NEW.seq_no,
5647         literal = NEW.literal
5648     WHERE
5649         id = OLD.id;
5650
5651 CREATE OR REPLACE RULE query_expr_xnum_delete_rule AS
5652     ON DELETE TO query.expr_xnum
5653     DO INSTEAD
5654     DELETE FROM query.expression WHERE id = OLD.id;
5655
5656 -- Create updatable view for operator expressions
5657
5658 CREATE OR REPLACE VIEW query.expr_xop AS
5659     SELECT
5660                 id,
5661                 parenthesize,
5662                 parent_expr,
5663                 seq_no,
5664                 left_operand,
5665                 operator,
5666                 right_operand,
5667                 negate
5668     FROM
5669         query.expression
5670     WHERE
5671         type = 'xop';
5672
5673 CREATE OR REPLACE RULE query_expr_xop_insert_rule AS
5674     ON INSERT TO query.expr_xop
5675     DO INSTEAD
5676     INSERT INTO query.expression (
5677                 id,
5678                 type,
5679                 parenthesize,
5680                 parent_expr,
5681                 seq_no,
5682                 left_operand,
5683                 operator,
5684                 right_operand,
5685                 negate
5686     ) VALUES (
5687         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5688         'xop',
5689         COALESCE(NEW.parenthesize, FALSE),
5690         NEW.parent_expr,
5691         COALESCE(NEW.seq_no, 1),
5692                 NEW.left_operand,
5693                 NEW.operator,
5694                 NEW.right_operand,
5695                 COALESCE(NEW.negate, false)
5696     );
5697
5698 CREATE OR REPLACE RULE query_expr_xop_update_rule AS
5699     ON UPDATE TO query.expr_xop
5700     DO INSTEAD
5701     UPDATE query.expression SET
5702         id = NEW.id,
5703         parenthesize = NEW.parenthesize,
5704         parent_expr = NEW.parent_expr,
5705         seq_no = NEW.seq_no,
5706                 left_operand = NEW.left_operand,
5707                 operator = NEW.operator,
5708                 right_operand = NEW.right_operand,
5709                 negate = NEW.negate
5710     WHERE
5711         id = OLD.id;
5712
5713 CREATE OR REPLACE RULE query_expr_xop_delete_rule AS
5714     ON DELETE TO query.expr_xop
5715     DO INSTEAD
5716     DELETE FROM query.expression WHERE id = OLD.id;
5717
5718 -- Create updatable view for series expressions
5719 -- i.e. series of expressions separated by operators
5720
5721 CREATE OR REPLACE VIEW query.expr_xser AS
5722     SELECT
5723                 id,
5724                 parenthesize,
5725                 parent_expr,
5726                 seq_no,
5727                 operator,
5728                 negate
5729     FROM
5730         query.expression
5731     WHERE
5732         type = 'xser';
5733
5734 CREATE OR REPLACE RULE query_expr_xser_insert_rule AS
5735     ON INSERT TO query.expr_xser
5736     DO INSTEAD
5737     INSERT INTO query.expression (
5738                 id,
5739                 type,
5740                 parenthesize,
5741                 parent_expr,
5742                 seq_no,
5743                 operator,
5744                 negate
5745     ) VALUES (
5746         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5747         'xser',
5748         COALESCE(NEW.parenthesize, FALSE),
5749         NEW.parent_expr,
5750         COALESCE(NEW.seq_no, 1),
5751                 NEW.operator,
5752                 COALESCE(NEW.negate, false)
5753     );
5754
5755 CREATE OR REPLACE RULE query_expr_xser_update_rule AS
5756     ON UPDATE TO query.expr_xser
5757     DO INSTEAD
5758     UPDATE query.expression SET
5759         id = NEW.id,
5760         parenthesize = NEW.parenthesize,
5761         parent_expr = NEW.parent_expr,
5762         seq_no = NEW.seq_no,
5763                 operator = NEW.operator,
5764                 negate = NEW.negate
5765     WHERE
5766         id = OLD.id;
5767
5768 CREATE OR REPLACE RULE query_expr_xser_delete_rule AS
5769     ON DELETE TO query.expr_xser
5770     DO INSTEAD
5771     DELETE FROM query.expression WHERE id = OLD.id;
5772
5773 -- Create updatable view for string literal expressions
5774
5775 CREATE OR REPLACE VIEW query.expr_xstr AS
5776     SELECT
5777         id,
5778         parenthesize,
5779         parent_expr,
5780         seq_no,
5781         literal
5782     FROM
5783         query.expression
5784     WHERE
5785         type = 'xstr';
5786
5787 CREATE OR REPLACE RULE query_expr_string_insert_rule AS
5788     ON INSERT TO query.expr_xstr
5789     DO INSTEAD
5790     INSERT INTO query.expression (
5791         id,
5792         type,
5793         parenthesize,
5794         parent_expr,
5795         seq_no,
5796         literal
5797     ) VALUES (
5798         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5799         'xstr',
5800         COALESCE(NEW.parenthesize, FALSE),
5801         NEW.parent_expr,
5802         COALESCE(NEW.seq_no, 1),
5803         NEW.literal
5804     );
5805
5806 CREATE OR REPLACE RULE query_expr_string_update_rule AS
5807     ON UPDATE TO query.expr_xstr
5808     DO INSTEAD
5809     UPDATE query.expression SET
5810         id = NEW.id,
5811         parenthesize = NEW.parenthesize,
5812         parent_expr = NEW.parent_expr,
5813         seq_no = NEW.seq_no,
5814         literal = NEW.literal
5815     WHERE
5816         id = OLD.id;
5817
5818 CREATE OR REPLACE RULE query_expr_string_delete_rule AS
5819     ON DELETE TO query.expr_xstr
5820     DO INSTEAD
5821     DELETE FROM query.expression WHERE id = OLD.id;
5822
5823 -- Create updatable view for subquery expressions
5824
5825 CREATE OR REPLACE VIEW query.expr_xsubq AS
5826     SELECT
5827                 id,
5828                 parenthesize,
5829                 parent_expr,
5830                 seq_no,
5831                 subquery,
5832                 negate
5833     FROM
5834         query.expression
5835     WHERE
5836         type = 'xsubq';
5837
5838 CREATE OR REPLACE RULE query_expr_xsubq_insert_rule AS
5839     ON INSERT TO query.expr_xsubq
5840     DO INSTEAD
5841     INSERT INTO query.expression (
5842                 id,
5843                 type,
5844                 parenthesize,
5845                 parent_expr,
5846                 seq_no,
5847                 subquery,
5848                 negate
5849     ) VALUES (
5850         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5851         'xsubq',
5852         COALESCE(NEW.parenthesize, FALSE),
5853         NEW.parent_expr,
5854         COALESCE(NEW.seq_no, 1),
5855                 NEW.subquery,
5856                 COALESCE(NEW.negate, false)
5857     );
5858
5859 CREATE OR REPLACE RULE query_expr_xsubq_update_rule AS
5860     ON UPDATE TO query.expr_xsubq
5861     DO INSTEAD
5862     UPDATE query.expression SET
5863         id = NEW.id,
5864         parenthesize = NEW.parenthesize,
5865         parent_expr = NEW.parent_expr,
5866         seq_no = NEW.seq_no,
5867                 subquery = NEW.subquery,
5868                 negate = NEW.negate
5869     WHERE
5870         id = OLD.id;
5871
5872 CREATE OR REPLACE RULE query_expr_xsubq_delete_rule AS
5873     ON DELETE TO query.expr_xsubq
5874     DO INSTEAD
5875     DELETE FROM query.expression WHERE id = OLD.id;
5876
5877 CREATE TABLE action.fieldset (
5878     id              SERIAL          PRIMARY KEY,
5879     owner           INT             NOT NULL REFERENCES actor.usr (id)
5880                                     DEFERRABLE INITIALLY DEFERRED,
5881     owning_lib      INT             NOT NULL REFERENCES actor.org_unit (id)
5882                                     DEFERRABLE INITIALLY DEFERRED,
5883     status          TEXT            NOT NULL
5884                                     CONSTRAINT valid_status CHECK ( status in
5885                                     ( 'PENDING', 'APPLIED', 'ERROR' )),
5886     creation_time   TIMESTAMPTZ     NOT NULL DEFAULT NOW(),
5887     scheduled_time  TIMESTAMPTZ,
5888     applied_time    TIMESTAMPTZ,
5889     classname       TEXT            NOT NULL, -- an IDL class name
5890     name            TEXT            NOT NULL,
5891     stored_query    INT             REFERENCES query.stored_query (id)
5892                                     DEFERRABLE INITIALLY DEFERRED,
5893     pkey_value      TEXT,
5894     CONSTRAINT lib_name_unique UNIQUE (owning_lib, name),
5895     CONSTRAINT fieldset_one_or_the_other CHECK (
5896         (stored_query IS NOT NULL AND pkey_value IS NULL) OR
5897         (pkey_value IS NOT NULL AND stored_query IS NULL)
5898     )
5899     -- the CHECK constraint means we can update the fields for a single
5900     -- row without all the extra overhead involved in a query
5901 );
5902
5903 CREATE INDEX action_fieldset_sched_time_idx ON action.fieldset( scheduled_time );
5904 CREATE INDEX action_owner_idx               ON action.fieldset( owner );
5905
5906 CREATE TABLE action.fieldset_col_val (
5907     id              SERIAL  PRIMARY KEY,
5908     fieldset        INT     NOT NULL REFERENCES action.fieldset
5909                                          ON DELETE CASCADE
5910                                          DEFERRABLE INITIALLY DEFERRED,
5911     col             TEXT    NOT NULL,  -- "field" from the idl ... the column on the table
5912     val             TEXT,              -- value for the column ... NULL means, well, NULL
5913     CONSTRAINT fieldset_col_once_per_set UNIQUE (fieldset, col)
5914 );
5915
5916 CREATE OR REPLACE FUNCTION action.apply_fieldset(
5917         fieldset_id IN INT,        -- id from action.fieldset
5918         table_name  IN TEXT,       -- table to be updated
5919         pkey_name   IN TEXT,       -- name of primary key column in that table
5920         query       IN TEXT        -- query constructed by qstore (for query-based
5921                                    --    fieldsets only; otherwise null
5922 )
5923 RETURNS TEXT AS $$
5924 DECLARE
5925         statement TEXT;
5926         fs_status TEXT;
5927         fs_pkey_value TEXT;
5928         fs_query TEXT;
5929         sep CHAR;
5930         status_code TEXT;
5931         msg TEXT;
5932         update_count INT;
5933         cv RECORD;
5934 BEGIN
5935         -- Sanity checks
5936         IF fieldset_id IS NULL THEN
5937                 RETURN 'Fieldset ID parameter is NULL';
5938         END IF;
5939         IF table_name IS NULL THEN
5940                 RETURN 'Table name parameter is NULL';
5941         END IF;
5942         IF pkey_name IS NULL THEN
5943                 RETURN 'Primary key name parameter is NULL';
5944         END IF;
5945         --
5946         statement := 'UPDATE ' || table_name || ' SET';
5947         --
5948         SELECT
5949                 status,
5950                 quote_literal( pkey_value )
5951         INTO
5952                 fs_status,
5953                 fs_pkey_value
5954         FROM
5955                 action.fieldset
5956         WHERE
5957                 id = fieldset_id;
5958         --
5959         IF fs_status IS NULL THEN
5960                 RETURN 'No fieldset found for id = ' || fieldset_id;
5961         ELSIF fs_status = 'APPLIED' THEN
5962                 RETURN 'Fieldset ' || fieldset_id || ' has already been applied';
5963         END IF;
5964         --
5965         sep := '';
5966         FOR cv IN
5967                 SELECT  col,
5968                                 val
5969                 FROM    action.fieldset_col_val
5970                 WHERE   fieldset = fieldset_id
5971         LOOP
5972                 statement := statement || sep || ' ' || cv.col
5973                                          || ' = ' || coalesce( quote_literal( cv.val ), 'NULL' );
5974                 sep := ',';
5975         END LOOP;
5976         --
5977         IF sep = '' THEN
5978                 RETURN 'Fieldset ' || fieldset_id || ' has no column values defined';
5979         END IF;
5980         --
5981         -- Add the WHERE clause.  This differs according to whether it's a
5982         -- single-row fieldset or a query-based fieldset.
5983         --
5984         IF query IS NULL        AND fs_pkey_value IS NULL THEN
5985                 RETURN 'Incomplete fieldset: neither a primary key nor a query available';
5986         ELSIF query IS NOT NULL AND fs_pkey_value IS NULL THEN
5987             fs_query := rtrim( query, ';' );
5988             statement := statement || ' WHERE ' || pkey_name || ' IN ( '
5989                          || fs_query || ' );';
5990         ELSIF query IS NULL     AND fs_pkey_value IS NOT NULL THEN
5991                 statement := statement || ' WHERE ' || pkey_name || ' = '
5992                                      || fs_pkey_value || ';';
5993         ELSE  -- both are not null
5994                 RETURN 'Ambiguous fieldset: both a primary key and a query provided';
5995         END IF;
5996         --
5997         -- Execute the update
5998         --
5999         BEGIN
6000                 EXECUTE statement;
6001                 GET DIAGNOSTICS update_count = ROW_COUNT;
6002                 --
6003                 IF UPDATE_COUNT > 0 THEN
6004                         status_code := 'APPLIED';
6005                         msg := NULL;
6006                 ELSE
6007                         status_code := 'ERROR';
6008                         msg := 'No eligible rows found for fieldset ' || fieldset_id;
6009         END IF;
6010         EXCEPTION WHEN OTHERS THEN
6011                 status_code := 'ERROR';
6012                 msg := 'Unable to apply fieldset ' || fieldset_id
6013                            || ': ' || sqlerrm;
6014         END;
6015         --
6016         -- Update fieldset status
6017         --
6018         UPDATE action.fieldset
6019         SET status       = status_code,
6020             applied_time = now()
6021         WHERE id = fieldset_id;
6022         --
6023         RETURN msg;
6024 END;
6025 $$ LANGUAGE plpgsql;
6026
6027 COMMENT ON FUNCTION action.apply_fieldset( INT, TEXT, TEXT, TEXT ) IS $$
6028 /**
6029  * Applies a specified fieldset, using a supplied table name and primary
6030  * key name.  The query parameter should be non-null only for
6031  * query-based fieldsets.
6032  *
6033  * Returns NULL if successful, or an error message if not.
6034  */
6035 $$;
6036
6037 CREATE INDEX uhr_hold_idx ON action.unfulfilled_hold_list (hold);
6038
6039 CREATE OR REPLACE VIEW action.unfulfilled_hold_loops AS
6040     SELECT  u.hold,
6041             c.circ_lib,
6042             count(*)
6043       FROM  action.unfulfilled_hold_list u
6044             JOIN asset.copy c ON (c.id = u.current_copy)
6045       GROUP BY 1,2;
6046
6047 CREATE OR REPLACE VIEW action.unfulfilled_hold_min_loop AS
6048     SELECT  hold,
6049             min(count)
6050       FROM  action.unfulfilled_hold_loops
6051       GROUP BY 1;
6052
6053 CREATE OR REPLACE VIEW action.unfulfilled_hold_innermost_loop AS
6054     SELECT  DISTINCT l.*
6055       FROM  action.unfulfilled_hold_loops l
6056             JOIN action.unfulfilled_hold_min_loop m USING (hold)
6057       WHERE l.count = m.min;
6058
6059 ALTER TABLE asset.copy
6060 ADD COLUMN dummy_isbn TEXT;
6061
6062 ALTER TABLE auditor.asset_copy_history
6063 ADD COLUMN dummy_isbn TEXT;
6064
6065 -- Add new column status_changed_date to asset.copy, with trigger to maintain it
6066 -- Add corresponding new column to auditor.asset_copy_history
6067
6068 ALTER TABLE asset.copy
6069         ADD COLUMN status_changed_time TIMESTAMPTZ;
6070
6071 ALTER TABLE auditor.asset_copy_history
6072         ADD COLUMN status_changed_time TIMESTAMPTZ;
6073
6074 CREATE OR REPLACE FUNCTION asset.acp_status_changed()
6075 RETURNS TRIGGER AS $$
6076 BEGIN
6077     IF NEW.status <> OLD.status THEN
6078         NEW.status_changed_time := now();
6079     END IF;
6080     RETURN NEW;
6081 END;
6082 $$ LANGUAGE plpgsql;
6083
6084 CREATE TRIGGER acp_status_changed_trig
6085         BEFORE UPDATE ON asset.copy
6086         FOR EACH ROW EXECUTE PROCEDURE asset.acp_status_changed();
6087
6088 ALTER TABLE asset.copy
6089 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6090
6091 ALTER TABLE auditor.asset_copy_history
6092 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6093
6094 ALTER TABLE asset.copy ADD COLUMN floating BOOL NOT NULL DEFAULT FALSE;
6095 ALTER TABLE auditor.asset_copy_history ADD COLUMN floating BOOL;
6096
6097 DROP INDEX IF EXISTS asset.copy_barcode_key;
6098 CREATE UNIQUE INDEX copy_barcode_key ON asset.copy (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
6099
6100 -- Note: later we create a trigger a_opac_vis_mat_view_tgr
6101 -- AFTER INSERT OR UPDATE ON asset.copy
6102
6103 ALTER TABLE asset.copy ADD COLUMN cost NUMERIC(8,2);
6104 ALTER TABLE auditor.asset_copy_history ADD COLUMN cost NUMERIC(8,2);
6105
6106 -- Moke mostly parallel changes to action.circulation
6107 -- and action.aged_circulation
6108
6109 ALTER TABLE action.circulation
6110 ADD COLUMN workstation INT
6111     REFERENCES actor.workstation
6112         ON DELETE SET NULL
6113         DEFERRABLE INITIALLY DEFERRED;
6114
6115 ALTER TABLE action.aged_circulation
6116 ADD COLUMN workstation INT;
6117
6118 ALTER TABLE action.circulation
6119 ADD COLUMN parent_circ BIGINT
6120         REFERENCES action.circulation(id)
6121         DEFERRABLE INITIALLY DEFERRED;
6122
6123 CREATE UNIQUE INDEX circ_parent_idx
6124 ON action.circulation( parent_circ )
6125 WHERE parent_circ IS NOT NULL;
6126
6127 ALTER TABLE action.aged_circulation
6128 ADD COLUMN parent_circ BIGINT;
6129
6130 ALTER TABLE action.circulation
6131 ADD COLUMN checkin_workstation INT
6132         REFERENCES actor.workstation(id)
6133         ON DELETE SET NULL
6134         DEFERRABLE INITIALLY DEFERRED;
6135
6136 ALTER TABLE action.aged_circulation
6137 ADD COLUMN checkin_workstation INT;
6138
6139 ALTER TABLE action.circulation
6140 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6141
6142 ALTER TABLE action.aged_circulation
6143 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6144
6145 CREATE INDEX action_circulation_target_copy_idx
6146 ON action.circulation (target_copy);
6147
6148 CREATE INDEX action_aged_circulation_target_copy_idx
6149 ON action.aged_circulation (target_copy);
6150
6151 ALTER TABLE action.circulation
6152 DROP CONSTRAINT circulation_stop_fines_check;
6153
6154 ALTER TABLE action.circulation
6155         ADD CONSTRAINT circulation_stop_fines_check
6156         CHECK (stop_fines IN (
6157         'CHECKIN','CLAIMSRETURNED','LOST','MAXFINES','RENEW','LONGOVERDUE','CLAIMSNEVERCHECKEDOUT'));
6158
6159 -- Correct some long-standing misspellings involving variations of "recur"
6160
6161 ALTER TABLE action.circulation RENAME COLUMN recuring_fine TO recurring_fine;
6162 ALTER TABLE action.circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6163
6164 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine TO recurring_fine;
6165 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6166
6167 ALTER TABLE config.rule_recuring_fine RENAME TO rule_recurring_fine;
6168 ALTER TABLE config.rule_recuring_fine_id_seq RENAME TO rule_recurring_fine_id_seq;
6169
6170 ALTER TABLE config.rule_recurring_fine RENAME COLUMN recurance_interval TO recurrence_interval;
6171
6172 -- Might as well keep the comment in sync as well
6173 COMMENT ON TABLE config.rule_recurring_fine IS $$
6174 /*
6175  * Copyright (C) 2005  Georgia Public Library Service 
6176  * Mike Rylander <mrylander@gmail.com>
6177  *
6178  * Circulation Recurring Fine rules
6179  *
6180  * Each circulation is given a recurring fine amount based on one of
6181  * these rules.  The recurrence_interval should not be any shorter
6182  * than the interval between runs of the fine_processor.pl script
6183  * (which is run from CRON), or you could miss fines.
6184  * 
6185  *
6186  * ****
6187  *
6188  * This program is free software; you can redistribute it and/or
6189  * modify it under the terms of the GNU General Public License
6190  * as published by the Free Software Foundation; either version 2
6191  * of the License, or (at your option) any later version.
6192  *
6193  * This program is distributed in the hope that it will be useful,
6194  * but WITHOUT ANY WARRANTY; without even the implied warranty of
6195  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6196  * GNU General Public License for more details.
6197  */
6198 $$;
6199
6200 -- Extend the name change to some related views:
6201
6202 DROP VIEW IF EXISTS reporter.overdue_circs;
6203
6204 CREATE OR REPLACE VIEW reporter.overdue_circs AS
6205 SELECT  *
6206   FROM  action.circulation
6207     WHERE checkin_time is null
6208                 AND (stop_fines NOT IN ('LOST','CLAIMSRETURNED') OR stop_fines IS NULL)
6209                                 AND due_date < now();
6210
6211 DROP VIEW IF EXISTS stats.fleshed_circulation;
6212
6213 DROP VIEW IF EXISTS stats.fleshed_copy;
6214
6215 CREATE VIEW stats.fleshed_copy AS
6216         SELECT  cp.*,
6217         CAST(cp.create_date AS DATE) AS create_date_day,
6218         CAST(cp.edit_date AS DATE) AS edit_date_day,
6219         DATE_TRUNC('hour', cp.create_date) AS create_date_hour,
6220         DATE_TRUNC('hour', cp.edit_date) AS edit_date_hour,
6221                 cn.label AS call_number_label,
6222                 cn.owning_lib,
6223                 rd.item_lang,
6224                 rd.item_type,
6225                 rd.item_form
6226         FROM    asset.copy cp
6227                 JOIN asset.call_number cn ON (cp.call_number = cn.id)
6228                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
6229
6230 CREATE VIEW stats.fleshed_circulation AS
6231         SELECT  c.*,
6232                 CAST(c.xact_start AS DATE) AS start_date_day,
6233                 CAST(c.xact_finish AS DATE) AS finish_date_day,
6234                 DATE_TRUNC('hour', c.xact_start) AS start_date_hour,
6235                 DATE_TRUNC('hour', c.xact_finish) AS finish_date_hour,
6236                 cp.call_number_label,
6237                 cp.owning_lib,
6238                 cp.item_lang,
6239                 cp.item_type,
6240                 cp.item_form
6241         FROM    action.circulation c
6242                 JOIN stats.fleshed_copy cp ON (cp.id = c.target_copy);
6243
6244 -- Drop a view temporarily in order to alter action.all_circulation, upon
6245 -- which it is dependent.  We will recreate the view later.
6246
6247 DROP VIEW IF EXISTS extend_reporter.full_circ_count;
6248
6249 -- You would think that CREATE OR REPLACE would be enough, but in testing
6250 -- PostgreSQL complained about renaming the columns in the view. So we
6251 -- drop the view first.
6252 DROP VIEW IF EXISTS action.all_circulation;
6253
6254 CREATE OR REPLACE VIEW action.all_circulation AS
6255     SELECT  id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6256         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6257         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6258         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6259         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6260         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6261       FROM  action.aged_circulation
6262             UNION ALL
6263     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,
6264         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,
6265         cn.record AS copy_bib_record, circ.xact_start, circ.xact_finish, circ.target_copy, circ.circ_lib, circ.circ_staff, circ.checkin_staff,
6266         circ.checkin_lib, circ.renewal_remaining, circ.due_date, circ.stop_fines_time, circ.checkin_time, circ.create_time, circ.duration,
6267         circ.fine_interval, circ.recurring_fine, circ.max_fine, circ.phone_renewal, circ.desk_renewal, circ.opac_renewal, circ.duration_rule,
6268         circ.recurring_fine_rule, circ.max_fine_rule, circ.stop_fines, circ.workstation, circ.checkin_workstation, circ.checkin_scan_time,
6269         circ.parent_circ
6270       FROM  action.circulation circ
6271         JOIN asset.copy cp ON (circ.target_copy = cp.id)
6272         JOIN asset.call_number cn ON (cp.call_number = cn.id)
6273         JOIN actor.usr p ON (circ.usr = p.id)
6274         LEFT JOIN actor.usr_address a ON (p.mailing_address = a.id)
6275         LEFT JOIN actor.usr_address b ON (p.billing_address = a.id);
6276
6277 -- Recreate the temporarily dropped view, having altered the action.all_circulation view:
6278
6279 CREATE OR REPLACE VIEW extend_reporter.full_circ_count AS
6280  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
6281    FROM asset."copy" cp
6282    LEFT JOIN extend_reporter.legacy_circ_count c USING (id)
6283    LEFT JOIN "action".circulation circ ON circ.target_copy = cp.id
6284    LEFT JOIN "action".aged_circulation acirc ON acirc.target_copy = cp.id
6285   GROUP BY cp.id;
6286
6287 CREATE UNIQUE INDEX only_one_concurrent_checkout_per_copy ON action.circulation(target_copy) WHERE checkin_time IS NULL;
6288
6289 ALTER TABLE action.circulation DROP CONSTRAINT action_circulation_target_copy_fkey;
6290
6291 -- Rebuild dependent views
6292
6293 DROP VIEW IF EXISTS action.billable_circulations;
6294
6295 CREATE OR REPLACE VIEW action.billable_circulations AS
6296     SELECT  *
6297       FROM  action.circulation
6298       WHERE xact_finish IS NULL;
6299
6300 DROP VIEW IF EXISTS action.open_circulation;
6301
6302 CREATE OR REPLACE VIEW action.open_circulation AS
6303     SELECT  *
6304       FROM  action.circulation
6305       WHERE checkin_time IS NULL
6306       ORDER BY due_date;
6307
6308 CREATE OR REPLACE FUNCTION action.age_circ_on_delete () RETURNS TRIGGER AS $$
6309 DECLARE
6310 found char := 'N';
6311 BEGIN
6312
6313     -- If there are any renewals for this circulation, don't archive or delete
6314     -- it yet.   We'll do so later, when we archive and delete the renewals.
6315
6316     SELECT 'Y' INTO found
6317     FROM action.circulation
6318     WHERE parent_circ = OLD.id
6319     LIMIT 1;
6320
6321     IF found = 'Y' THEN
6322         RETURN NULL;  -- don't delete
6323         END IF;
6324
6325     -- Archive a copy of the old row to action.aged_circulation
6326
6327     INSERT INTO action.aged_circulation
6328         (id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6329         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6330         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6331         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6332         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6333         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ)
6334       SELECT
6335         id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6336         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6337         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6338         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6339         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6340         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6341         FROM action.all_circulation WHERE id = OLD.id;
6342
6343     RETURN OLD;
6344 END;
6345 $$ LANGUAGE 'plpgsql';
6346
6347 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND name = 'title';
6348
6349 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND truncation = 0;
6350
6351 -- Adding circ.holds.target_skip_me OU setting logic to the pre-matchpoint tests
6352
6353 CREATE OR REPLACE FUNCTION action.find_hold_matrix_matchpoint( pickup_ou INT, request_ou INT, match_item BIGINT, match_user INT, match_requestor INT ) RETURNS INT AS $func$
6354 DECLARE
6355     current_requestor_group    permission.grp_tree%ROWTYPE;
6356     root_ou            actor.org_unit%ROWTYPE;
6357     requestor_object    actor.usr%ROWTYPE;
6358     user_object        actor.usr%ROWTYPE;
6359     item_object        asset.copy%ROWTYPE;
6360     item_cn_object        asset.call_number%ROWTYPE;
6361     rec_descriptor        metabib.rec_descriptor%ROWTYPE;
6362     current_mp_weight    FLOAT;
6363     matchpoint_weight    FLOAT;
6364     tmp_weight        FLOAT;
6365     current_mp        config.hold_matrix_matchpoint%ROWTYPE;
6366     matchpoint        config.hold_matrix_matchpoint%ROWTYPE;
6367 BEGIN
6368     SELECT INTO root_ou * FROM actor.org_unit WHERE parent_ou IS NULL;
6369     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6370     SELECT INTO requestor_object * FROM actor.usr WHERE id = match_requestor;
6371     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6372     SELECT INTO item_cn_object * FROM asset.call_number WHERE id = item_object.call_number;
6373     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r WHERE r.record = item_cn_object.record;
6374
6375     PERFORM * FROM config.internal_flag WHERE name = 'circ.holds.usr_not_requestor' AND enabled;
6376
6377     IF NOT FOUND THEN
6378         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = requestor_object.profile;
6379     ELSE
6380         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = user_object.profile;
6381     END IF;
6382
6383     LOOP 
6384         -- for each potential matchpoint for this ou and group ...
6385         FOR current_mp IN
6386             SELECT    m.*
6387               FROM    config.hold_matrix_matchpoint m
6388               WHERE    m.requestor_grp = current_requestor_group.id AND m.active
6389               ORDER BY    CASE WHEN m.circ_modifier    IS NOT NULL THEN 16 ELSE 0 END +
6390                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 16 ELSE 0 END +
6391                     CASE WHEN m.marc_type        IS NOT NULL THEN 8 ELSE 0 END +
6392                     CASE WHEN m.marc_form        IS NOT NULL THEN 4 ELSE 0 END +
6393                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 2 ELSE 0 END +
6394                     CASE WHEN m.ref_flag        IS NOT NULL THEN 1 ELSE 0 END DESC LOOP
6395
6396             current_mp_weight := 5.0;
6397
6398             IF current_mp.circ_modifier IS NOT NULL THEN
6399                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
6400             END IF;
6401
6402             IF current_mp.marc_type IS NOT NULL THEN
6403                 IF item_object.circ_as_type IS NOT NULL THEN
6404                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
6405                 ELSE
6406                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
6407                 END IF;
6408             END IF;
6409
6410             IF current_mp.marc_form IS NOT NULL THEN
6411                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
6412             END IF;
6413
6414             IF current_mp.marc_vr_format IS NOT NULL THEN
6415                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
6416             END IF;
6417
6418             IF current_mp.juvenile_flag IS NOT NULL THEN
6419                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
6420             END IF;
6421
6422             IF current_mp.ref_flag IS NOT NULL THEN
6423                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
6424             END IF;
6425
6426
6427             -- caclulate the rule match weight
6428             IF current_mp.item_owning_ou IS NOT NULL AND current_mp.item_owning_ou <> root_ou.id THEN
6429                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.item_owning_ou, item_cn_object.owning_lib)::FLOAT + 1.0)::FLOAT;
6430                 current_mp_weight := current_mp_weight - tmp_weight;
6431             END IF; 
6432
6433             IF current_mp.item_circ_ou IS NOT NULL AND current_mp.item_circ_ou <> root_ou.id THEN
6434                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.item_circ_ou, item_object.circ_lib)::FLOAT + 1.0)::FLOAT;
6435                 current_mp_weight := current_mp_weight - tmp_weight;
6436             END IF; 
6437
6438             IF current_mp.pickup_ou IS NOT NULL AND current_mp.pickup_ou <> root_ou.id THEN
6439                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.pickup_ou, pickup_ou)::FLOAT + 1.0)::FLOAT;
6440                 current_mp_weight := current_mp_weight - tmp_weight;
6441             END IF; 
6442
6443             IF current_mp.request_ou IS NOT NULL AND current_mp.request_ou <> root_ou.id THEN
6444                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.request_ou, request_ou)::FLOAT + 1.0)::FLOAT;
6445                 current_mp_weight := current_mp_weight - tmp_weight;
6446             END IF; 
6447
6448             IF current_mp.user_home_ou IS NOT NULL AND current_mp.user_home_ou <> root_ou.id THEN
6449                 SELECT INTO tmp_weight 1.0 / (actor.org_unit_proximity(current_mp.user_home_ou, user_object.home_ou)::FLOAT + 1.0)::FLOAT;
6450                 current_mp_weight := current_mp_weight - tmp_weight;
6451             END IF; 
6452
6453             -- set the matchpoint if we found the best one
6454             IF matchpoint_weight IS NULL OR matchpoint_weight > current_mp_weight THEN
6455                 matchpoint = current_mp;
6456                 matchpoint_weight = current_mp_weight;
6457             END IF;
6458
6459         END LOOP;
6460
6461         EXIT WHEN current_requestor_group.parent IS NULL OR matchpoint.id IS NOT NULL;
6462
6463         SELECT INTO current_requestor_group * FROM permission.grp_tree WHERE id = current_requestor_group.parent;
6464     END LOOP;
6465
6466     RETURN matchpoint.id;
6467 END;
6468 $func$ LANGUAGE plpgsql;
6469
6470 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$
6471 DECLARE
6472     matchpoint_id        INT;
6473     user_object        actor.usr%ROWTYPE;
6474     age_protect_object    config.rule_age_hold_protect%ROWTYPE;
6475     standing_penalty    config.standing_penalty%ROWTYPE;
6476     transit_range_ou_type    actor.org_unit_type%ROWTYPE;
6477     transit_source        actor.org_unit%ROWTYPE;
6478     item_object        asset.copy%ROWTYPE;
6479     ou_skip              actor.org_unit_setting%ROWTYPE;
6480     result            action.matrix_test_result;
6481     hold_test        config.hold_matrix_matchpoint%ROWTYPE;
6482     hold_count        INT;
6483     hold_transit_prox    INT;
6484     frozen_hold_count    INT;
6485     context_org_list    INT[];
6486     done            BOOL := FALSE;
6487 BEGIN
6488     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6489     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( pickup_ou );
6490
6491     result.success := TRUE;
6492
6493     -- Fail if we couldn't find a user
6494     IF user_object.id IS NULL THEN
6495         result.fail_part := 'no_user';
6496         result.success := FALSE;
6497         done := TRUE;
6498         RETURN NEXT result;
6499         RETURN;
6500     END IF;
6501
6502     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6503
6504     -- Fail if we couldn't find a copy
6505     IF item_object.id IS NULL THEN
6506         result.fail_part := 'no_item';
6507         result.success := FALSE;
6508         done := TRUE;
6509         RETURN NEXT result;
6510         RETURN;
6511     END IF;
6512
6513     SELECT INTO matchpoint_id action.find_hold_matrix_matchpoint(pickup_ou, request_ou, match_item, match_user, match_requestor);
6514     result.matchpoint := matchpoint_id;
6515
6516     SELECT INTO ou_skip * FROM actor.org_unit_setting WHERE name = 'circ.holds.target_skip_me' AND org_unit = item_object.circ_lib;
6517
6518     -- Fail if the circ_lib for the item has circ.holds.target_skip_me set to true
6519     IF ou_skip.id IS NOT NULL AND ou_skip.value = 'true' THEN
6520         result.fail_part := 'circ.holds.target_skip_me';
6521         result.success := FALSE;
6522         done := TRUE;
6523         RETURN NEXT result;
6524         RETURN;
6525     END IF;
6526
6527     -- Fail if user is barred
6528     IF user_object.barred IS TRUE THEN
6529         result.fail_part := 'actor.usr.barred';
6530         result.success := FALSE;
6531         done := TRUE;
6532         RETURN NEXT result;
6533         RETURN;
6534     END IF;
6535
6536     -- Fail if we couldn't find any matchpoint (requires a default)
6537     IF matchpoint_id IS NULL THEN
6538         result.fail_part := 'no_matchpoint';
6539         result.success := FALSE;
6540         done := TRUE;
6541         RETURN NEXT result;
6542         RETURN;
6543     END IF;
6544
6545     SELECT INTO hold_test * FROM config.hold_matrix_matchpoint WHERE id = matchpoint_id;
6546
6547     IF hold_test.holdable IS FALSE THEN
6548         result.fail_part := 'config.hold_matrix_test.holdable';
6549         result.success := FALSE;
6550         done := TRUE;
6551         RETURN NEXT result;
6552     END IF;
6553
6554     IF hold_test.transit_range IS NOT NULL THEN
6555         SELECT INTO transit_range_ou_type * FROM actor.org_unit_type WHERE id = hold_test.transit_range;
6556         IF hold_test.distance_is_from_owner THEN
6557             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;
6558         ELSE
6559             SELECT INTO transit_source * FROM actor.org_unit WHERE id = item_object.circ_lib;
6560         END IF;
6561
6562         PERFORM * FROM actor.org_unit_descendants( transit_source.id, transit_range_ou_type.depth ) WHERE id = pickup_ou;
6563
6564         IF NOT FOUND THEN
6565             result.fail_part := 'transit_range';
6566             result.success := FALSE;
6567             done := TRUE;
6568             RETURN NEXT result;
6569         END IF;
6570     END IF;
6571  
6572     FOR standing_penalty IN
6573         SELECT  DISTINCT csp.*
6574           FROM  actor.usr_standing_penalty usp
6575                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6576           WHERE usr = match_user
6577                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6578                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6579                 AND csp.block_list LIKE '%HOLD%' LOOP
6580
6581         result.fail_part := standing_penalty.name;
6582         result.success := FALSE;
6583         done := TRUE;
6584         RETURN NEXT result;
6585     END LOOP;
6586
6587     IF hold_test.stop_blocked_user IS TRUE THEN
6588         FOR standing_penalty IN
6589             SELECT  DISTINCT csp.*
6590               FROM  actor.usr_standing_penalty usp
6591                     JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6592               WHERE usr = match_user
6593                     AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6594                     AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6595                     AND csp.block_list LIKE '%CIRC%' LOOP
6596     
6597             result.fail_part := standing_penalty.name;
6598             result.success := FALSE;
6599             done := TRUE;
6600             RETURN NEXT result;
6601         END LOOP;
6602     END IF;
6603
6604     IF hold_test.max_holds IS NOT NULL THEN
6605         SELECT    INTO hold_count COUNT(*)
6606           FROM    action.hold_request
6607           WHERE    usr = match_user
6608             AND fulfillment_time IS NULL
6609             AND cancel_time IS NULL
6610             AND CASE WHEN hold_test.include_frozen_holds THEN TRUE ELSE frozen IS FALSE END;
6611
6612         IF hold_count >= hold_test.max_holds THEN
6613             result.fail_part := 'config.hold_matrix_test.max_holds';
6614             result.success := FALSE;
6615             done := TRUE;
6616             RETURN NEXT result;
6617         END IF;
6618     END IF;
6619
6620     IF item_object.age_protect IS NOT NULL THEN
6621         SELECT INTO age_protect_object * FROM config.rule_age_hold_protect WHERE id = item_object.age_protect;
6622
6623         IF item_object.create_date + age_protect_object.age > NOW() THEN
6624             IF hold_test.distance_is_from_owner THEN
6625                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_cn_object.owning_lib AND to_org = pickup_ou;
6626             ELSE
6627                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_object.circ_lib AND to_org = pickup_ou;
6628             END IF;
6629
6630             IF hold_transit_prox > age_protect_object.prox THEN
6631                 result.fail_part := 'config.rule_age_hold_protect.prox';
6632                 result.success := FALSE;
6633                 done := TRUE;
6634                 RETURN NEXT result;
6635             END IF;
6636         END IF;
6637     END IF;
6638
6639     IF NOT done THEN
6640         RETURN NEXT result;
6641     END IF;
6642
6643     RETURN;
6644 END;
6645 $func$ LANGUAGE plpgsql;
6646
6647 -- New post-delete trigger to propagate deletions to parent(s)
6648
6649 CREATE OR REPLACE FUNCTION action.age_parent_circ_on_delete () RETURNS TRIGGER AS $$
6650 BEGIN
6651
6652     -- Having deleted a renewal, we can delete the original circulation (or a previous
6653     -- renewal, if that's what parent_circ is pointing to).  That deletion will trigger
6654     -- deletion of any prior parents, etc. recursively.
6655
6656     IF OLD.parent_circ IS NOT NULL THEN
6657         DELETE FROM action.circulation
6658         WHERE id = OLD.parent_circ;
6659     END IF;
6660
6661     RETURN OLD;
6662 END;
6663 $$ LANGUAGE 'plpgsql';
6664
6665 CREATE TRIGGER age_parent_circ AFTER DELETE ON action.circulation
6666 FOR EACH ROW EXECUTE PROCEDURE action.age_parent_circ_on_delete ();
6667
6668 -- This only gets inserted if there are no other id > 100 billing types
6669 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;
6670 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101) FROM config.billing_type_id_seq WHERE last_value < 101;
6671
6672 -- Populate xact_type column in the materialized version of billable_xact_summary
6673
6674 CREATE OR REPLACE FUNCTION money.mat_summary_create () RETURNS TRIGGER AS $$
6675 BEGIN
6676         INSERT INTO money.materialized_billable_xact_summary (id, usr, xact_start, xact_finish, total_paid, total_owed, balance_owed, xact_type)
6677                 VALUES ( NEW.id, NEW.usr, NEW.xact_start, NEW.xact_finish, 0.0, 0.0, 0.0, TG_ARGV[0]);
6678         RETURN NEW;
6679 END;
6680 $$ LANGUAGE PLPGSQL;
6681  
6682 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON action.circulation;
6683 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('circulation');
6684  
6685 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON money.grocery;
6686 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON money.grocery FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('grocery');
6687
6688 CREATE RULE money_payment_view_update AS ON UPDATE TO money.payment_view DO INSTEAD 
6689     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;
6690
6691 -- Generate the equivalent of compound subject entries from the existing rows
6692 -- so that we don't have to laboriously reindex them
6693
6694 --INSERT INTO config.metabib_field (field_class, name, format, xpath ) VALUES
6695 --    ( 'subject', 'complete', 'mods32', $$//mods32:mods/mods32:subject//text()$$ );
6696 --
6697 --CREATE INDEX metabib_subject_field_entry_source_idx ON metabib.subject_field_entry (source);
6698 --
6699 --INSERT INTO metabib.subject_field_entry (source, field, value)
6700 --    SELECT source, (
6701 --            SELECT id 
6702 --            FROM config.metabib_field
6703 --            WHERE field_class = 'subject' AND name = 'complete'
6704 --        ), 
6705 --        ARRAY_TO_STRING ( 
6706 --            ARRAY (
6707 --                SELECT value 
6708 --                FROM metabib.subject_field_entry msfe
6709 --                WHERE msfe.source = groupee.source
6710 --                ORDER BY source 
6711 --            ), ' ' 
6712 --        ) AS grouped
6713 --    FROM ( 
6714 --        SELECT source
6715 --        FROM metabib.subject_field_entry
6716 --        GROUP BY source
6717 --    ) AS groupee;
6718
6719 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_del () RETURNS TRIGGER AS $$
6720 DECLARE
6721         prev_billing    money.billing%ROWTYPE;
6722         old_billing     money.billing%ROWTYPE;
6723 BEGIN
6724         SELECT * INTO prev_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1 OFFSET 1;
6725         SELECT * INTO old_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1;
6726
6727         IF OLD.id = old_billing.id THEN
6728                 UPDATE  money.materialized_billable_xact_summary
6729                   SET   last_billing_ts = prev_billing.billing_ts,
6730                         last_billing_note = prev_billing.note,
6731                         last_billing_type = prev_billing.billing_type
6732                   WHERE id = OLD.xact;
6733         END IF;
6734
6735         IF NOT OLD.voided THEN
6736                 UPDATE  money.materialized_billable_xact_summary
6737                   SET   total_owed = total_owed - OLD.amount,
6738                         balance_owed = balance_owed + OLD.amount
6739                   WHERE id = OLD.xact;
6740         END IF;
6741
6742         RETURN OLD;
6743 END;
6744 $$ LANGUAGE PLPGSQL;
6745
6746 -- ARG! need to rid ourselves of the broken table definition ... this mechanism is not ideal, sorry.
6747 DROP TABLE IF EXISTS config.index_normalizer CASCADE;
6748
6749 CREATE OR REPLACE FUNCTION public.naco_normalize( TEXT, TEXT ) RETURNS TEXT AS $func$
6750         use Unicode::Normalize;
6751         use Encode;
6752
6753         # When working with Unicode data, the first step is to decode it to
6754         # a byte string; after that, lowercasing is safe
6755         my $txt = lc(decode_utf8(shift));
6756         my $sf = shift;
6757
6758         $txt = NFD($txt);
6759         $txt =~ s/\pM+//go;     # Remove diacritics
6760
6761         $txt =~ s/\xE6/AE/go;   # Convert ae digraph
6762         $txt =~ s/\x{153}/OE/go;# Convert oe digraph
6763         $txt =~ s/\xFE/TH/go;   # Convert Icelandic thorn
6764
6765         $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
6766         $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
6767
6768         $txt =~ tr/\x{0251}\x{03B1}\x{03B2}\x{0262}\x{03B3}/AABGG/;             # Convert Latin and Greek
6769         $txt =~ tr/\x{2113}\xF0\!\"\(\)\-\{\}\<\>\;\:\.\?\xA1\xBF\/\\\@\*\%\=\xB1\+\xAE\xA9\x{2117}\$\xA3\x{FFE1}\xB0\^\_\~\`/LD /;     # Convert Misc
6770         $txt =~ tr/\'\[\]\|//d;                                                 # Remove Misc
6771
6772         if ($sf && $sf =~ /^a/o) {
6773                 my $commapos = index($txt,',');
6774                 if ($commapos > -1) {
6775                         if ($commapos != length($txt) - 1) {
6776                                 my @list = split /,/, $txt;
6777                                 my $first = shift @list;
6778                                 $txt = $first . ',' . join(' ', @list);
6779                         } else {
6780                                 $txt =~ s/,/ /go;
6781                         }
6782                 }
6783         } else {
6784                 $txt =~ s/,/ /go;
6785         }
6786
6787         $txt =~ s/\s+/ /go;     # Compress multiple spaces
6788         $txt =~ s/^\s+//o;      # Remove leading space
6789         $txt =~ s/\s+$//o;      # Remove trailing space
6790
6791         # Encoding the outgoing string is good practice, but not strictly
6792         # necessary in this case because we've stripped everything from it
6793         return encode_utf8($txt);
6794 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6795
6796 -- Some handy functions, based on existing ones, to provide optional ingest normalization
6797
6798 CREATE OR REPLACE FUNCTION public.left_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6799         SELECT SUBSTRING($1,$2);
6800 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6801
6802 CREATE OR REPLACE FUNCTION public.right_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6803         SELECT SUBSTRING($1,1,$2);
6804 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6805
6806 CREATE OR REPLACE FUNCTION public.naco_normalize_keep_comma( TEXT ) RETURNS TEXT AS $func$
6807         SELECT public.naco_normalize($1,'a');
6808 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6809
6810 CREATE OR REPLACE FUNCTION public.split_date_range( TEXT ) RETURNS TEXT AS $func$
6811         SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' );
6812 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6813
6814 -- And ... a table in which to register them
6815
6816 CREATE TABLE config.index_normalizer (
6817         id              SERIAL  PRIMARY KEY,
6818         name            TEXT    UNIQUE NOT NULL,
6819         description     TEXT,
6820         func            TEXT    NOT NULL,
6821         param_count     INT     NOT NULL DEFAULT 0
6822 );
6823
6824 CREATE TABLE config.metabib_field_index_norm_map (
6825         id      SERIAL  PRIMARY KEY,
6826         field   INT     NOT NULL REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6827         norm    INT     NOT NULL REFERENCES config.index_normalizer (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6828         params  TEXT,
6829         pos     INT     NOT NULL DEFAULT 0
6830 );
6831
6832 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6833         'NACO Normalize',
6834         'Apply NACO normalization rules to the extracted text.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
6835         'naco_normalize',
6836         0
6837 );
6838
6839 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6840         'Normalize date range',
6841         'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.',
6842         'split_date_range',
6843         1
6844 );
6845
6846 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6847         'NACO Normalize -- retain first comma',
6848         '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.',
6849         'naco_normalize_keep_comma',
6850         0
6851 );
6852
6853 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6854         'Strip Diacritics',
6855         'Convert text to NFD form and remove non-spacing combining marks.',
6856         'remove_diacritics',
6857         0
6858 );
6859
6860 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6861         'Up-case',
6862         'Convert text upper case.',
6863         'uppercase',
6864         0
6865 );
6866
6867 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6868         'Down-case',
6869         'Convert text lower case.',
6870         'lowercase',
6871         0
6872 );
6873
6874 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6875         'Extract Dewey-like number',
6876         'Extract a string of numeric characters ther resembles a DDC number.',
6877         'call_number_dewey',
6878         0
6879 );
6880
6881 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6882         'Left truncation',
6883         'Discard the specified number of characters from the left side of the string.',
6884         'left_trunc',
6885         1
6886 );
6887
6888 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6889         'Right truncation',
6890         'Include only the specified number of characters from the left side of the string.',
6891         'right_trunc',
6892         1
6893 );
6894
6895 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6896         'First word',
6897         'Include only the first space-separated word of a string.',
6898         'first_word',
6899         0
6900 );
6901
6902 INSERT INTO config.metabib_field_index_norm_map (field,norm)
6903         SELECT  m.id,
6904                 i.id
6905           FROM  config.metabib_field m,
6906                 config.index_normalizer i
6907           WHERE i.func IN ('naco_normalize','split_date_range');
6908
6909 CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
6910 DECLARE
6911     normalizer      RECORD;
6912     value           TEXT := '';
6913 BEGIN
6914
6915     value := NEW.value;
6916
6917     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
6918         FOR normalizer IN
6919             SELECT  n.func AS func,
6920                     n.param_count AS param_count,
6921                     m.params AS params
6922               FROM  config.index_normalizer n
6923                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
6924               WHERE field = NEW.field AND m.pos < 0
6925               ORDER BY m.pos LOOP
6926                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
6927                     quote_literal( value ) ||
6928                     CASE
6929                         WHEN normalizer.param_count > 0
6930                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
6931                             ELSE ''
6932                         END ||
6933                     ')' INTO value;
6934
6935         END LOOP;
6936
6937         NEW.value := value;
6938     END IF;
6939
6940     IF NEW.index_vector = ''::tsvector THEN
6941         RETURN NEW;
6942     END IF;
6943
6944     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
6945         FOR normalizer IN
6946             SELECT  n.func AS func,
6947                     n.param_count AS param_count,
6948                     m.params AS params
6949               FROM  config.index_normalizer n
6950                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
6951               WHERE field = NEW.field AND m.pos >= 0
6952               ORDER BY m.pos LOOP
6953                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
6954                     quote_literal( value ) ||
6955                     CASE
6956                         WHEN normalizer.param_count > 0
6957                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
6958                             ELSE ''
6959                         END ||
6960                     ')' INTO value;
6961
6962         END LOOP;
6963     END IF;
6964
6965     IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT > 8.2 THEN
6966         NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, value);
6967     ELSE
6968         NEW.index_vector = to_tsvector(TG_ARGV[0], value);
6969     END IF;
6970
6971     RETURN NEW;
6972 END;
6973 $$ LANGUAGE PLPGSQL;
6974
6975 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
6976
6977 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
6978
6979 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
6980     SELECT  ARRAY_TO_STRING(
6981                 oils_xpath(
6982                     $1 ||
6983                         CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END,
6984                     $2,
6985                     $4
6986                 ),
6987                 $3
6988             );
6989 $func$ LANGUAGE SQL IMMUTABLE;
6990
6991 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT ) RETURNS TEXT AS $func$
6992     SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] );
6993 $func$ LANGUAGE SQL IMMUTABLE;
6994
6995 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
6996     SELECT oils_xpath_string( $1, $2, '', $3 );
6997 $func$ LANGUAGE SQL IMMUTABLE;
6998
6999 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT ) RETURNS TEXT AS $func$
7000     SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] );
7001 $func$ LANGUAGE SQL IMMUTABLE;
7002
7003 CREATE TYPE metabib.field_entry_template AS (
7004         field_class     TEXT,
7005         field           INT,
7006         source          BIGINT,
7007         value           TEXT
7008 );
7009
7010 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $func$
7011   use strict;
7012
7013   use XML::LibXSLT;
7014   use XML::LibXML;
7015
7016   my $doc = shift;
7017   my $xslt = shift;
7018
7019   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
7020   # methods of parsing XML documents and stylesheets, in the hopes of broader
7021   # compatibility with distributions
7022   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
7023
7024   # Cache the XML parser, if we do not already have one
7025   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
7026     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
7027
7028   my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new();
7029
7030   # Cache the XSLT processor, if we do not already have one
7031   $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser
7032     unless ($_SHARED{'_xslt_process'}{parsers}{xslt});
7033
7034   my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} ||
7035     $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) );
7036
7037   $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet
7038     unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt});
7039
7040   return $stylesheet->output_string(
7041     $stylesheet->transform(
7042       $parser->parse_string($doc)
7043     )
7044   );
7045
7046 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
7047
7048 -- Add two columns so that the following function will compile.
7049 -- Eventually the label column will be NOT NULL, but not yet.
7050 ALTER TABLE config.metabib_field ADD COLUMN label TEXT;
7051 ALTER TABLE config.metabib_field ADD COLUMN facet_xpath TEXT;
7052
7053 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( rid BIGINT, default_joiner TEXT ) RETURNS SETOF metabib.field_entry_template AS $func$
7054 DECLARE
7055     bib     biblio.record_entry%ROWTYPE;
7056     idx     config.metabib_field%ROWTYPE;
7057     xfrm        config.xml_transform%ROWTYPE;
7058     prev_xfrm   TEXT;
7059     transformed_xml TEXT;
7060     xml_node    TEXT;
7061     xml_node_list   TEXT[];
7062     facet_text  TEXT;
7063     raw_text    TEXT;
7064     curr_text   TEXT;
7065     joiner      TEXT := default_joiner; -- XXX will index defs supply a joiner?
7066     output_row  metabib.field_entry_template%ROWTYPE;
7067 BEGIN
7068
7069     -- Get the record
7070     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7071
7072     -- Loop over the indexing entries
7073     FOR idx IN SELECT * FROM config.metabib_field ORDER BY format LOOP
7074
7075         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
7076
7077         -- See if we can skip the XSLT ... it's expensive
7078         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
7079             -- Can't skip the transform
7080             IF xfrm.xslt <> '---' THEN
7081                 transformed_xml := oils_xslt_process(bib.marc,xfrm.xslt);
7082             ELSE
7083                 transformed_xml := bib.marc;
7084             END IF;
7085
7086             prev_xfrm := xfrm.name;
7087         END IF;
7088
7089         xml_node_list := oils_xpath( idx.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
7090
7091         raw_text := NULL;
7092         FOR xml_node IN SELECT x FROM explode_array(xml_node_list) AS x LOOP
7093             CONTINUE WHEN xml_node !~ E'^\\s*<';
7094
7095             curr_text := ARRAY_TO_STRING(
7096                 oils_xpath( '//text()',
7097                     REGEXP_REPLACE( -- This escapes all &s not followed by "amp;".  Data ise returned from oils_xpath (above) in UTF-8, not entity encoded
7098                         REGEXP_REPLACE( -- This escapes embeded <s
7099                             xml_node,
7100                             $re$(>[^<]+)(<)([^>]+<)$re$,
7101                             E'\\1&lt;\\3',
7102                             'g'
7103                         ),
7104                         '&(?!amp;)',
7105                         '&amp;',
7106                         'g'
7107                     )
7108                 ),
7109                 ' '
7110             );
7111
7112             CONTINUE WHEN curr_text IS NULL OR curr_text = '';
7113
7114             IF raw_text IS NOT NULL THEN
7115                 raw_text := raw_text || joiner;
7116             END IF;
7117
7118             raw_text := COALESCE(raw_text,'') || curr_text;
7119
7120             -- insert raw node text for faceting
7121             IF idx.facet_field THEN
7122
7123                 IF idx.facet_xpath IS NOT NULL AND idx.facet_xpath <> '' THEN
7124                     facet_text := oils_xpath_string( idx.facet_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
7125                 ELSE
7126                     facet_text := curr_text;
7127                 END IF;
7128
7129                 output_row.field_class = idx.field_class;
7130                 output_row.field = -1 * idx.id;
7131                 output_row.source = rid;
7132                 output_row.value = BTRIM(REGEXP_REPLACE(facet_text, E'\\s+', ' ', 'g'));
7133
7134                 RETURN NEXT output_row;
7135             END IF;
7136
7137         END LOOP;
7138
7139         CONTINUE WHEN raw_text IS NULL OR raw_text = '';
7140
7141         -- insert combined node text for searching
7142         IF idx.search_field THEN
7143             output_row.field_class = idx.field_class;
7144             output_row.field = idx.id;
7145             output_row.source = rid;
7146             output_row.value = BTRIM(REGEXP_REPLACE(raw_text, E'\\s+', ' ', 'g'));
7147
7148             RETURN NEXT output_row;
7149         END IF;
7150
7151     END LOOP;
7152
7153 END;
7154 $func$ LANGUAGE PLPGSQL;
7155
7156 -- default to a space joiner
7157 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( BIGINT ) RETURNS SETOF metabib.field_entry_template AS $func$
7158         SELECT * FROM biblio.extract_metabib_field_entry($1, ' ');
7159 $func$ LANGUAGE SQL;
7160
7161 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
7162
7163 use MARC::Record;
7164 use MARC::File::XML (BinaryEncoding => 'UTF-8');
7165
7166 my $xml = shift;
7167 my $r = MARC::Record->new_from_xml( $xml );
7168
7169 return_next( { tag => 'LDR', value => $r->leader } );
7170
7171 for my $f ( $r->fields ) {
7172     if ($f->is_control_field) {
7173         return_next({ tag => $f->tag, value => $f->data });
7174     } else {
7175         for my $s ($f->subfields) {
7176             return_next({
7177                 tag      => $f->tag,
7178                 ind1     => $f->indicator(1),
7179                 ind2     => $f->indicator(2),
7180                 subfield => $s->[0],
7181                 value    => $s->[1]
7182             });
7183
7184             if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
7185                 my $trim = $f->indicator(2) || 0;
7186                 return_next({
7187                     tag      => 'tnf',
7188                     ind1     => $f->indicator(1),
7189                     ind2     => $f->indicator(2),
7190                     subfield => 'a',
7191                     value    => substr( $s->[1], $trim )
7192                 });
7193             }
7194         }
7195     }
7196 }
7197
7198 return undef;
7199
7200 $func$ LANGUAGE PLPERLU;
7201
7202 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( rid BIGINT ) RETURNS SETOF metabib.full_rec AS $func$
7203 DECLARE
7204     bib biblio.record_entry%ROWTYPE;
7205     output  metabib.full_rec%ROWTYPE;
7206     field   RECORD;
7207 BEGIN
7208     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7209
7210     FOR field IN SELECT * FROM biblio.flatten_marc( bib.marc ) LOOP
7211         output.record := rid;
7212         output.ind1 := field.ind1;
7213         output.ind2 := field.ind2;
7214         output.tag := field.tag;
7215         output.subfield := field.subfield;
7216         IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields
7217             output.value := naco_normalize(field.value, field.subfield);
7218         ELSE
7219             output.value := field.value;
7220         END IF;
7221
7222         CONTINUE WHEN output.value IS NULL;
7223
7224         RETURN NEXT output;
7225     END LOOP;
7226 END;
7227 $func$ LANGUAGE PLPGSQL;
7228
7229 -- functions to create auditor objects
7230
7231 CREATE FUNCTION auditor.create_auditor_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7232 BEGIN
7233     EXECUTE $$
7234         CREATE SEQUENCE auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
7235     $$;
7236         RETURN TRUE;
7237 END;
7238 $creator$ LANGUAGE 'plpgsql';
7239
7240 CREATE FUNCTION auditor.create_auditor_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7241 BEGIN
7242     EXECUTE $$
7243         CREATE TABLE auditor.$$ || sch || $$_$$ || tbl || $$_history (
7244             audit_id    BIGINT                          PRIMARY KEY,
7245             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
7246             audit_action        TEXT                            NOT NULL,
7247             LIKE $$ || sch || $$.$$ || tbl || $$
7248         );
7249     $$;
7250         RETURN TRUE;
7251 END;
7252 $creator$ LANGUAGE 'plpgsql';
7253
7254 CREATE FUNCTION auditor.create_auditor_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7255 BEGIN
7256     EXECUTE $$
7257         CREATE FUNCTION auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ()
7258         RETURNS TRIGGER AS $func$
7259         BEGIN
7260             INSERT INTO auditor.$$ || sch || $$_$$ || tbl || $$_history
7261                 SELECT  nextval('auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
7262                     now(),
7263                     SUBSTR(TG_OP,1,1),
7264                     OLD.*;
7265             RETURN NULL;
7266         END;
7267         $func$ LANGUAGE 'plpgsql';
7268     $$;
7269         RETURN TRUE;
7270 END;
7271 $creator$ LANGUAGE 'plpgsql';
7272
7273 CREATE FUNCTION auditor.create_auditor_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7274 BEGIN
7275     EXECUTE $$
7276         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
7277             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
7278             EXECUTE PROCEDURE auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ();
7279     $$;
7280         RETURN TRUE;
7281 END;
7282 $creator$ LANGUAGE 'plpgsql';
7283
7284 CREATE FUNCTION auditor.create_auditor_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7285 BEGIN
7286     EXECUTE $$
7287         CREATE VIEW auditor.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
7288             SELECT      -1, now() as audit_time, '-' as audit_action, *
7289               FROM      $$ || sch || $$.$$ || tbl || $$
7290                 UNION ALL
7291             SELECT      *
7292               FROM      auditor.$$ || sch || $$_$$ || tbl || $$_history;
7293     $$;
7294         RETURN TRUE;
7295 END;
7296 $creator$ LANGUAGE 'plpgsql';
7297
7298 DROP FUNCTION IF EXISTS auditor.create_auditor (TEXT, TEXT);
7299
7300 -- The main event
7301
7302 CREATE FUNCTION auditor.create_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7303 BEGIN
7304     PERFORM auditor.create_auditor_seq(sch, tbl);
7305     PERFORM auditor.create_auditor_history(sch, tbl);
7306     PERFORM auditor.create_auditor_func(sch, tbl);
7307     PERFORM auditor.create_auditor_update_trigger(sch, tbl);
7308     PERFORM auditor.create_auditor_lifecycle(sch, tbl);
7309     RETURN TRUE;
7310 END;
7311 $creator$ LANGUAGE 'plpgsql';
7312
7313 ALTER TABLE action.hold_request ADD COLUMN cut_in_line BOOL;
7314
7315 ALTER TABLE action.hold_request
7316 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
7317
7318 ALTER TABLE action.hold_request
7319 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
7320
7321 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_current_copy_fkey;
7322
7323 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_hold_type_check;
7324
7325 UPDATE config.index_normalizer SET param_count = 0 WHERE func = 'split_date_range';
7326
7327 CREATE INDEX actor_usr_usrgroup_idx ON actor.usr (usrgroup);
7328
7329 -- Add claims_never_checked_out_count to actor.usr, related history
7330
7331 ALTER TABLE actor.usr ADD COLUMN
7332         claims_never_checked_out_count  INT         NOT NULL DEFAULT 0;
7333
7334 ALTER TABLE AUDITOR.actor_usr_history ADD COLUMN 
7335         claims_never_checked_out_count INT;
7336
7337 DROP VIEW IF EXISTS auditor.actor_usr_lifecycle;
7338
7339 SELECT auditor.create_auditor_lifecycle( 'actor', 'usr' );
7340
7341 -----------
7342
7343 CREATE OR REPLACE FUNCTION action.circulation_claims_returned () RETURNS TRIGGER AS $$
7344 BEGIN
7345         IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN
7346                 IF NEW.stop_fines = 'CLAIMSRETURNED' THEN
7347                         UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr;
7348                 END IF;
7349                 IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN
7350                         UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr;
7351                 END IF;
7352                 IF NEW.stop_fines = 'LOST' THEN
7353                         UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy;
7354                 END IF;
7355         END IF;
7356         RETURN NEW;
7357 END;
7358 $$ LANGUAGE 'plpgsql';
7359
7360 -- Create new table acq.fund_allocation_percent
7361 -- Populate it from acq.fund_allocation
7362 -- Convert all percentages to amounts in acq.fund_allocation
7363
7364 CREATE TABLE acq.fund_allocation_percent
7365 (
7366     id                   SERIAL            PRIMARY KEY,
7367     funding_source       INT               NOT NULL REFERENCES acq.funding_source
7368                                                DEFERRABLE INITIALLY DEFERRED,
7369     org                  INT               NOT NULL REFERENCES actor.org_unit
7370                                                DEFERRABLE INITIALLY DEFERRED,
7371     fund_code            TEXT,
7372     percent              NUMERIC           NOT NULL,
7373     allocator            INTEGER           NOT NULL REFERENCES actor.usr
7374                                                DEFERRABLE INITIALLY DEFERRED,
7375     note                 TEXT,
7376     create_time          TIMESTAMPTZ       NOT NULL DEFAULT now(),
7377     CONSTRAINT logical_key UNIQUE( funding_source, org, fund_code ),
7378     CONSTRAINT percentage_range CHECK( percent >= 0 AND percent <= 100 )
7379 );
7380
7381 -- Trigger function to validate combination of org_unit and fund_code
7382
7383 CREATE OR REPLACE FUNCTION acq.fund_alloc_percent_val()
7384 RETURNS TRIGGER AS $$
7385 --
7386 DECLARE
7387 --
7388 dummy int := 0;
7389 --
7390 BEGIN
7391     SELECT
7392         1
7393     INTO
7394         dummy
7395     FROM
7396         acq.fund
7397     WHERE
7398         org = NEW.org
7399         AND code = NEW.fund_code
7400         LIMIT 1;
7401     --
7402     IF dummy = 1 then
7403         RETURN NEW;
7404     ELSE
7405         RAISE EXCEPTION 'No fund exists for org % and code %', NEW.org, NEW.fund_code;
7406     END IF;
7407 END;
7408 $$ LANGUAGE plpgsql;
7409
7410 CREATE TRIGGER acq_fund_alloc_percent_val_trig
7411     BEFORE INSERT OR UPDATE ON acq.fund_allocation_percent
7412     FOR EACH ROW EXECUTE PROCEDURE acq.fund_alloc_percent_val();
7413
7414 CREATE OR REPLACE FUNCTION acq.fap_limit_100()
7415 RETURNS TRIGGER AS $$
7416 DECLARE
7417 --
7418 total_percent numeric;
7419 --
7420 BEGIN
7421     SELECT
7422         sum( percent )
7423     INTO
7424         total_percent
7425     FROM
7426         acq.fund_allocation_percent AS fap
7427     WHERE
7428         fap.funding_source = NEW.funding_source;
7429     --
7430     IF total_percent > 100 THEN
7431         RAISE EXCEPTION 'Total percentages exceed 100 for funding_source %',
7432             NEW.funding_source;
7433     ELSE
7434         RETURN NEW;
7435     END IF;
7436 END;
7437 $$ LANGUAGE plpgsql;
7438
7439 CREATE TRIGGER acqfap_limit_100_trig
7440     AFTER INSERT OR UPDATE ON acq.fund_allocation_percent
7441     FOR EACH ROW EXECUTE PROCEDURE acq.fap_limit_100();
7442
7443 -- Populate new table from acq.fund_allocation
7444
7445 INSERT INTO acq.fund_allocation_percent
7446 (
7447     funding_source,
7448     org,
7449     fund_code,
7450     percent,
7451     allocator,
7452     note,
7453     create_time
7454 )
7455     SELECT
7456         fa.funding_source,
7457         fund.org,
7458         fund.code,
7459         fa.percent,
7460         fa.allocator,
7461         fa.note,
7462         fa.create_time
7463     FROM
7464         acq.fund_allocation AS fa
7465             INNER JOIN acq.fund AS fund
7466                 ON ( fa.fund = fund.id )
7467     WHERE
7468         fa.percent is not null
7469     ORDER BY
7470         fund.org;
7471
7472 -- Temporary function to convert percentages to amounts in acq.fund_allocation
7473
7474 -- Algorithm to apply to each funding source:
7475
7476 -- 1. Add up the credits.
7477 -- 2. Add up the percentages.
7478 -- 3. Multiply the sum of the percentages times the sum of the credits.  Drop any
7479 --    fractional cents from the result.  This is the total amount to be allocated.
7480 -- 4. For each allocation: multiply the percentage by the total allocation.  Drop any
7481 --    fractional cents to get a preliminary amount.
7482 -- 5. Add up the preliminary amounts for all the allocations.
7483 -- 6. Subtract the results of step 5 from the result of step 3.  The difference is the
7484 --    number of residual cents (resulting from having dropped fractional cents) that
7485 --    must be distributed across the funds in order to make the total of the amounts
7486 --    match the total allocation.
7487 -- 7. Make a second pass through the allocations, in decreasing order of the fractional
7488 --    cents that were dropped from their amounts in step 4.  Add one cent to the amount
7489 --    for each successive fund, until all the residual cents have been exhausted.
7490
7491 -- Result: the sum of the individual allocations now equals the total to be allocated,
7492 -- to the penny.  The individual amounts match the percentages as closely as possible,
7493 -- given the constraint that the total must match.
7494
7495 CREATE OR REPLACE FUNCTION acq.apply_percents()
7496 RETURNS VOID AS $$
7497 declare
7498 --
7499 tot              RECORD;
7500 fund             RECORD;
7501 tot_cents        INTEGER;
7502 src              INTEGER;
7503 id               INTEGER[];
7504 curr_id          INTEGER;
7505 pennies          NUMERIC[];
7506 curr_amount      NUMERIC;
7507 i                INTEGER;
7508 total_of_floors  INTEGER;
7509 total_percent    NUMERIC;
7510 total_allocation INTEGER;
7511 residue          INTEGER;
7512 --
7513 begin
7514         RAISE NOTICE 'Applying percents';
7515         FOR tot IN
7516                 SELECT
7517                         fsrc.funding_source,
7518                         sum( fsrc.amount ) AS total
7519                 FROM
7520                         acq.funding_source_credit AS fsrc
7521                 WHERE fsrc.funding_source IN
7522                         ( SELECT DISTINCT fa.funding_source
7523                           FROM acq.fund_allocation AS fa
7524                           WHERE fa.percent IS NOT NULL )
7525                 GROUP BY
7526                         fsrc.funding_source
7527         LOOP
7528                 tot_cents = floor( tot.total * 100 );
7529                 src = tot.funding_source;
7530                 RAISE NOTICE 'Funding source % total %',
7531                         src, tot_cents;
7532                 i := 0;
7533                 total_of_floors := 0;
7534                 total_percent := 0;
7535                 --
7536                 FOR fund in
7537                         SELECT
7538                                 fa.id,
7539                                 fa.percent,
7540                                 floor( fa.percent * tot_cents / 100 ) as floor_pennies
7541                         FROM
7542                                 acq.fund_allocation AS fa
7543                         WHERE
7544                                 fa.funding_source = src
7545                                 AND fa.percent IS NOT NULL
7546                         ORDER BY
7547                                 mod( fa.percent * tot_cents / 100, 1 ),
7548                                 fa.fund,
7549                                 fa.id
7550                 LOOP
7551                         RAISE NOTICE '   %: %',
7552                                 fund.id,
7553                                 fund.floor_pennies;
7554                         i := i + 1;
7555                         id[i] = fund.id;
7556                         pennies[i] = fund.floor_pennies;
7557                         total_percent := total_percent + fund.percent;
7558                         total_of_floors := total_of_floors + pennies[i];
7559                 END LOOP;
7560                 total_allocation := floor( total_percent * tot_cents /100 );
7561                 RAISE NOTICE 'Total before distributing residue: %', total_of_floors;
7562                 residue := total_allocation - total_of_floors;
7563                 RAISE NOTICE 'Residue: %', residue;
7564                 --
7565                 -- Post the calculated amounts, revising as needed to
7566                 -- distribute the rounding error
7567                 --
7568                 WHILE i > 0 LOOP
7569                         IF residue > 0 THEN
7570                                 pennies[i] = pennies[i] + 1;
7571                                 residue := residue - 1;
7572                         END IF;
7573                         --
7574                         -- Post amount
7575                         --
7576                         curr_id     := id[i];
7577                         curr_amount := trunc( pennies[i] / 100, 2 );
7578                         --
7579                         UPDATE
7580                                 acq.fund_allocation AS fa
7581                         SET
7582                                 amount = curr_amount,
7583                                 percent = NULL
7584                         WHERE
7585                                 fa.id = curr_id;
7586                         --
7587                         RAISE NOTICE '   ID % and amount %',
7588                                 curr_id,
7589                                 curr_amount;
7590                         i = i - 1;
7591                 END LOOP;
7592         END LOOP;
7593 end;
7594 $$ LANGUAGE 'plpgsql';
7595
7596 -- Run the temporary function
7597
7598 select * from acq.apply_percents();
7599
7600 -- Drop the temporary function now that we're done with it
7601
7602 DROP FUNCTION IF EXISTS acq.apply_percents();
7603
7604 -- Eliminate acq.fund_allocation.percent, which has been moved to the acq.fund_allocation_percent table.
7605
7606 -- If the following step fails, it's probably because there are still some non-null percent values in
7607 -- acq.fund_allocation.  They should have all been converted to amounts, and then set to null, by a
7608 -- previous upgrade step based on 0049.schema.acq_funding_allocation_percent.sql.  If there are any
7609 -- non-null values, then either that step didn't run, or it didn't work, or some non-null values
7610 -- slipped in afterwards.
7611
7612 -- To convert any remaining percents to amounts: create, run, and then drop the temporary stored
7613 -- procedure acq.apply_percents() as defined above.
7614
7615 ALTER TABLE acq.fund_allocation
7616 ALTER COLUMN amount SET NOT NULL;
7617
7618 CREATE OR REPLACE VIEW acq.fund_allocation_total AS
7619     SELECT  fund,
7620             SUM(a.amount * acq.exchange_ratio(s.currency_type, f.currency_type))::NUMERIC(100,2) AS amount
7621     FROM acq.fund_allocation a
7622          JOIN acq.fund f ON (a.fund = f.id)
7623          JOIN acq.funding_source s ON (a.funding_source = s.id)
7624     GROUP BY 1;
7625
7626 CREATE OR REPLACE VIEW acq.funding_source_allocation_total AS
7627     SELECT  funding_source,
7628             SUM(a.amount)::NUMERIC(100,2) AS amount
7629     FROM  acq.fund_allocation a
7630     GROUP BY 1;
7631
7632 ALTER TABLE acq.fund_allocation
7633 DROP COLUMN percent;
7634
7635 CREATE TABLE asset.copy_location_order
7636 (
7637         id              SERIAL           PRIMARY KEY,
7638         location        INT              NOT NULL
7639                                              REFERENCES asset.copy_location
7640                                              ON DELETE CASCADE
7641                                              DEFERRABLE INITIALLY DEFERRED,
7642         org             INT              NOT NULL
7643                                              REFERENCES actor.org_unit
7644                                              ON DELETE CASCADE
7645                                              DEFERRABLE INITIALLY DEFERRED,
7646         position        INT              NOT NULL DEFAULT 0,
7647         CONSTRAINT acplo_once_per_org UNIQUE ( location, org )
7648 );
7649
7650 ALTER TABLE money.credit_card_payment ADD COLUMN cc_processor TEXT;
7651
7652 -- If you ran this before its most recent incarnation:
7653 -- delete from config.upgrade_log where version = '0328';
7654 -- alter table money.credit_card_payment drop column cc_name;
7655
7656 ALTER TABLE money.credit_card_payment ADD COLUMN cc_first_name TEXT;
7657 ALTER TABLE money.credit_card_payment ADD COLUMN cc_last_name TEXT;
7658
7659 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$
7660 DECLARE
7661     current_group    permission.grp_tree%ROWTYPE;
7662     user_object    actor.usr%ROWTYPE;
7663     item_object    asset.copy%ROWTYPE;
7664     cn_object    asset.call_number%ROWTYPE;
7665     rec_descriptor    metabib.rec_descriptor%ROWTYPE;
7666     current_mp    config.circ_matrix_matchpoint%ROWTYPE;
7667     matchpoint    config.circ_matrix_matchpoint%ROWTYPE;
7668 BEGIN
7669     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7670     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7671     SELECT INTO cn_object * FROM asset.call_number WHERE id = item_object.call_number;
7672     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r JOIN asset.call_number c USING (record) WHERE c.id = item_object.call_number;
7673     SELECT INTO current_group * FROM permission.grp_tree WHERE id = user_object.profile;
7674
7675     LOOP 
7676         -- for each potential matchpoint for this ou and group ...
7677         FOR current_mp IN
7678             SELECT  m.*
7679               FROM  config.circ_matrix_matchpoint m
7680                     JOIN actor.org_unit_ancestors( context_ou ) d ON (m.org_unit = d.id)
7681                     LEFT JOIN actor.org_unit_proximity p ON (p.from_org = context_ou AND p.to_org = d.id)
7682               WHERE m.grp = current_group.id
7683                     AND m.active
7684                     AND (m.copy_owning_lib IS NULL OR cn_object.owning_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_owning_lib) ))
7685                     AND (m.copy_circ_lib   IS NULL OR item_object.circ_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_circ_lib)   ))
7686               ORDER BY    CASE WHEN p.prox        IS NULL THEN 999 ELSE p.prox END,
7687                     CASE WHEN m.copy_owning_lib IS NOT NULL
7688                         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 )
7689                         ELSE 0
7690                     END +
7691                     CASE WHEN m.copy_circ_lib IS NOT NULL
7692                         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 )
7693                         ELSE 0
7694                     END +
7695                     CASE WHEN m.is_renewal = renewal        THEN 128 ELSE 0 END +
7696                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 64 ELSE 0 END +
7697                     CASE WHEN m.circ_modifier    IS NOT NULL THEN 32 ELSE 0 END +
7698                     CASE WHEN m.marc_type        IS NOT NULL THEN 16 ELSE 0 END +
7699                     CASE WHEN m.marc_form        IS NOT NULL THEN 8 ELSE 0 END +
7700                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 4 ELSE 0 END +
7701                     CASE WHEN m.ref_flag        IS NOT NULL THEN 2 ELSE 0 END +
7702                     CASE WHEN m.usr_age_lower_bound    IS NOT NULL THEN 0.5 ELSE 0 END +
7703                     CASE WHEN m.usr_age_upper_bound    IS NOT NULL THEN 0.5 ELSE 0 END DESC LOOP
7704
7705             IF current_mp.is_renewal IS NOT NULL THEN
7706                 CONTINUE WHEN current_mp.is_renewal <> renewal;
7707             END IF;
7708
7709             IF current_mp.circ_modifier IS NOT NULL THEN
7710                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
7711             END IF;
7712
7713             IF current_mp.marc_type IS NOT NULL THEN
7714                 IF item_object.circ_as_type IS NOT NULL THEN
7715                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
7716                 ELSE
7717                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
7718                 END IF;
7719             END IF;
7720
7721             IF current_mp.marc_form IS NOT NULL THEN
7722                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
7723             END IF;
7724
7725             IF current_mp.marc_vr_format IS NOT NULL THEN
7726                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
7727             END IF;
7728
7729             IF current_mp.ref_flag IS NOT NULL THEN
7730                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
7731             END IF;
7732
7733             IF current_mp.juvenile_flag IS NOT NULL THEN
7734                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
7735             END IF;
7736
7737             IF current_mp.usr_age_lower_bound IS NOT NULL THEN
7738                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_lower_bound < age(user_object.dob);
7739             END IF;
7740
7741             IF current_mp.usr_age_upper_bound IS NOT NULL THEN
7742                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_upper_bound > age(user_object.dob);
7743             END IF;
7744
7745
7746             -- everything was undefined or matched
7747             matchpoint = current_mp;
7748
7749             EXIT WHEN matchpoint.id IS NOT NULL;
7750         END LOOP;
7751
7752         EXIT WHEN current_group.parent IS NULL OR matchpoint.id IS NOT NULL;
7753
7754         SELECT INTO current_group * FROM permission.grp_tree WHERE id = current_group.parent;
7755     END LOOP;
7756
7757     RETURN matchpoint;
7758 END;
7759 $func$ LANGUAGE plpgsql;
7760
7761 CREATE TYPE action.hold_stats AS (
7762     hold_count              INT,
7763     copy_count              INT,
7764     available_count         INT,
7765     total_copy_ratio        FLOAT,
7766     available_copy_ratio    FLOAT
7767 );
7768
7769 CREATE OR REPLACE FUNCTION action.copy_related_hold_stats (copy_id INT) RETURNS action.hold_stats AS $func$
7770 DECLARE
7771     output          action.hold_stats%ROWTYPE;
7772     hold_count      INT := 0;
7773     copy_count      INT := 0;
7774     available_count INT := 0;
7775     hold_map_data   RECORD;
7776 BEGIN
7777
7778     output.hold_count := 0;
7779     output.copy_count := 0;
7780     output.available_count := 0;
7781
7782     SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
7783       FROM  action.hold_copy_map m
7784             JOIN action.hold_request h ON (m.hold = h.id)
7785       WHERE m.target_copy = copy_id
7786             AND NOT h.frozen;
7787
7788     output.hold_count := hold_count;
7789
7790     IF output.hold_count > 0 THEN
7791         FOR hold_map_data IN
7792             SELECT  DISTINCT m.target_copy,
7793                     acp.status
7794               FROM  action.hold_copy_map m
7795                     JOIN asset.copy acp ON (m.target_copy = acp.id)
7796                     JOIN action.hold_request h ON (m.hold = h.id)
7797               WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
7798         LOOP
7799             output.copy_count := output.copy_count + 1;
7800             IF hold_map_data.status IN (0,7,12) THEN
7801                 output.available_count := output.available_count + 1;
7802             END IF;
7803         END LOOP;
7804         output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
7805         output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
7806
7807     END IF;
7808
7809     RETURN output;
7810
7811 END;
7812 $func$ LANGUAGE PLPGSQL;
7813
7814 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN total_copy_hold_ratio FLOAT;
7815 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN available_copy_hold_ratio FLOAT;
7816
7817 ALTER TABLE config.circ_matrix_matchpoint DROP CONSTRAINT ep_once_per_grp_loc_mod_marc;
7818
7819 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_circ_lib   INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7820 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_owning_lib INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7821
7822 ALTER TABLE config.circ_matrix_matchpoint ADD CONSTRAINT ep_once_per_grp_loc_mod_marc UNIQUE (
7823     grp, org_unit, circ_modifier, marc_type, marc_form, marc_vr_format, ref_flag,
7824     juvenile_flag, usr_age_lower_bound, usr_age_upper_bound, is_renewal, copy_circ_lib,
7825     copy_owning_lib
7826 );
7827
7828 -- Return the correct fail_part when the item can't be found
7829 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$
7830 DECLARE
7831     user_object        actor.usr%ROWTYPE;
7832     standing_penalty    config.standing_penalty%ROWTYPE;
7833     item_object        asset.copy%ROWTYPE;
7834     item_status_object    config.copy_status%ROWTYPE;
7835     item_location_object    asset.copy_location%ROWTYPE;
7836     result            action.matrix_test_result;
7837     circ_test        config.circ_matrix_matchpoint%ROWTYPE;
7838     out_by_circ_mod        config.circ_matrix_circ_mod_test%ROWTYPE;
7839     circ_mod_map        config.circ_matrix_circ_mod_test_map%ROWTYPE;
7840     hold_ratio          action.hold_stats%ROWTYPE;
7841     penalty_type         TEXT;
7842     tmp_grp         INT;
7843     items_out        INT;
7844     context_org_list        INT[];
7845     done            BOOL := FALSE;
7846 BEGIN
7847     result.success := TRUE;
7848
7849     -- Fail if the user is BARRED
7850     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7851
7852     -- Fail if we couldn't find the user 
7853     IF user_object.id IS NULL THEN
7854         result.fail_part := 'no_user';
7855         result.success := FALSE;
7856         done := TRUE;
7857         RETURN NEXT result;
7858         RETURN;
7859     END IF;
7860
7861     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7862
7863     -- Fail if we couldn't find the item 
7864     IF item_object.id IS NULL THEN
7865         result.fail_part := 'no_item';
7866         result.success := FALSE;
7867         done := TRUE;
7868         RETURN NEXT result;
7869         RETURN;
7870     END IF;
7871
7872     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, match_item, match_user, renewal);
7873     result.matchpoint := circ_test.id;
7874
7875     -- Fail if we couldn't find a matchpoint
7876     IF result.matchpoint IS NULL THEN
7877         result.fail_part := 'no_matchpoint';
7878         result.success := FALSE;
7879         done := TRUE;
7880         RETURN NEXT result;
7881     END IF;
7882
7883     IF user_object.barred IS TRUE THEN
7884         result.fail_part := 'actor.usr.barred';
7885         result.success := FALSE;
7886         done := TRUE;
7887         RETURN NEXT result;
7888     END IF;
7889
7890     -- Fail if the item can't circulate
7891     IF item_object.circulate IS FALSE THEN
7892         result.fail_part := 'asset.copy.circulate';
7893         result.success := FALSE;
7894         done := TRUE;
7895         RETURN NEXT result;
7896     END IF;
7897
7898     -- Fail if the item isn't in a circulateable status on a non-renewal
7899     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN
7900         result.fail_part := 'asset.copy.status';
7901         result.success := FALSE;
7902         done := TRUE;
7903         RETURN NEXT result;
7904     ELSIF renewal AND item_object.status <> 1 THEN
7905         result.fail_part := 'asset.copy.status';
7906         result.success := FALSE;
7907         done := TRUE;
7908         RETURN NEXT result;
7909     END IF;
7910
7911     -- Fail if the item can't circulate because of the shelving location
7912     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
7913     IF item_location_object.circulate IS FALSE THEN
7914         result.fail_part := 'asset.copy_location.circulate';
7915         result.success := FALSE;
7916         done := TRUE;
7917         RETURN NEXT result;
7918     END IF;
7919
7920     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( circ_test.org_unit );
7921
7922     -- Fail if the test is set to hard non-circulating
7923     IF circ_test.circulate IS FALSE THEN
7924         result.fail_part := 'config.circ_matrix_test.circulate';
7925         result.success := FALSE;
7926         done := TRUE;
7927         RETURN NEXT result;
7928     END IF;
7929
7930     -- Fail if the total copy-hold ratio is too low
7931     IF circ_test.total_copy_hold_ratio IS NOT NULL THEN
7932         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
7933         IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_test.total_copy_hold_ratio THEN
7934             result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio';
7935             result.success := FALSE;
7936             done := TRUE;
7937             RETURN NEXT result;
7938         END IF;
7939     END IF;
7940
7941     -- Fail if the available copy-hold ratio is too low
7942     IF circ_test.available_copy_hold_ratio IS NOT NULL THEN
7943         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
7944         IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_test.available_copy_hold_ratio THEN
7945             result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio';
7946             result.success := FALSE;
7947             done := TRUE;
7948             RETURN NEXT result;
7949         END IF;
7950     END IF;
7951
7952     IF renewal THEN
7953         penalty_type = '%RENEW%';
7954     ELSE
7955         penalty_type = '%CIRC%';
7956     END IF;
7957
7958     FOR standing_penalty IN
7959         SELECT  DISTINCT csp.*
7960           FROM  actor.usr_standing_penalty usp
7961                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
7962           WHERE usr = match_user
7963                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
7964                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
7965                 AND csp.block_list LIKE penalty_type LOOP
7966
7967         result.fail_part := standing_penalty.name;
7968         result.success := FALSE;
7969         done := TRUE;
7970         RETURN NEXT result;
7971     END LOOP;
7972
7973     -- Fail if the user has too many items with specific circ_modifiers checked out
7974     FOR out_by_circ_mod IN SELECT * FROM config.circ_matrix_circ_mod_test WHERE matchpoint = circ_test.id LOOP
7975         SELECT  INTO items_out COUNT(*)
7976           FROM  action.circulation circ
7977             JOIN asset.copy cp ON (cp.id = circ.target_copy)
7978           WHERE circ.usr = match_user
7979                AND circ.circ_lib IN ( SELECT * FROM explode_array(context_org_list) )
7980             AND circ.checkin_time IS NULL
7981             AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
7982             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);
7983         IF items_out >= out_by_circ_mod.items_out THEN
7984             result.fail_part := 'config.circ_matrix_circ_mod_test';
7985             result.success := FALSE;
7986             done := TRUE;
7987             RETURN NEXT result;
7988         END IF;
7989     END LOOP;
7990
7991     -- If we passed everything, return the successful matchpoint id
7992     IF NOT done THEN
7993         RETURN NEXT result;
7994     END IF;
7995
7996     RETURN;
7997 END;
7998 $func$ LANGUAGE plpgsql;
7999
8000 CREATE TABLE config.remote_account (
8001     id          SERIAL  PRIMARY KEY,
8002     label       TEXT    NOT NULL,
8003     host        TEXT    NOT NULL,   -- name or IP, :port optional
8004     username    TEXT,               -- optional, since we could default to $USER
8005     password    TEXT,               -- optional, since we could use SSH keys, or anonymous login.
8006     account     TEXT,               -- aka profile or FTP "account" command
8007     path        TEXT,               -- aka directory
8008     owner       INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
8009     last_activity TIMESTAMP WITH TIME ZONE
8010 );
8011
8012 CREATE TABLE acq.edi_account (      -- similar tables can extend remote_account for other parts of EG
8013     provider    INT     NOT NULL REFERENCES acq.provider          (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
8014     in_dir      TEXT,   -- incoming messages dir (probably different than config.remote_account.path, the outgoing dir)
8015         vendcode    TEXT,
8016         vendacct    TEXT
8017
8018 ) INHERITS (config.remote_account);
8019
8020 ALTER TABLE acq.edi_account ADD PRIMARY KEY (id);
8021
8022 CREATE TABLE acq.claim_type (
8023         id             SERIAL           PRIMARY KEY,
8024         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8025                                                  DEFERRABLE INITIALLY DEFERRED,
8026         code           TEXT             NOT NULL,
8027         description    TEXT             NOT NULL,
8028         CONSTRAINT claim_type_once_per_org UNIQUE ( org_unit, code )
8029 );
8030
8031 CREATE TABLE acq.claim (
8032         id             SERIAL           PRIMARY KEY,
8033         type           INT              NOT NULL REFERENCES acq.claim_type
8034                                                  DEFERRABLE INITIALLY DEFERRED,
8035         lineitem_detail BIGINT          NOT NULL REFERENCES acq.lineitem_detail
8036                                                  DEFERRABLE INITIALLY DEFERRED
8037 );
8038
8039 CREATE TABLE acq.claim_policy (
8040         id              SERIAL       PRIMARY KEY,
8041         org_unit        INT          NOT NULL REFERENCES actor.org_unit
8042                                      DEFERRABLE INITIALLY DEFERRED,
8043         name            TEXT         NOT NULL,
8044         description     TEXT         NOT NULL,
8045         CONSTRAINT name_once_per_org UNIQUE (org_unit, name)
8046 );
8047
8048 -- Add a san column for EDI. 
8049 -- See: http://isbn.org/standards/home/isbn/us/san/san-qa.asp
8050
8051 ALTER TABLE acq.provider ADD COLUMN san INT;
8052
8053 ALTER TABLE acq.provider ALTER COLUMN san TYPE TEXT USING lpad(text(san), 7, '0');
8054
8055 -- null edi_default is OK... it has to be, since we have no values in acq.edi_account yet
8056 ALTER TABLE acq.provider ADD COLUMN edi_default INT REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
8057
8058 ALTER TABLE acq.provider
8059         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
8060
8061 ALTER TABLE acq.provider
8062         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
8063
8064 ALTER TABLE acq.provider
8065         ADD COLUMN url TEXT;
8066
8067 ALTER TABLE acq.provider
8068         ADD COLUMN email TEXT;
8069
8070 ALTER TABLE acq.provider
8071         ADD COLUMN phone TEXT;
8072
8073 ALTER TABLE acq.provider
8074         ADD COLUMN fax_phone TEXT;
8075
8076 ALTER TABLE acq.provider
8077         ADD COLUMN default_claim_policy INT
8078                 REFERENCES acq.claim_policy
8079                 DEFERRABLE INITIALLY DEFERRED;
8080
8081 ALTER TABLE action.transit_copy
8082 ADD COLUMN prev_dest INTEGER REFERENCES actor.org_unit( id )
8083                                                          DEFERRABLE INITIALLY DEFERRED;
8084
8085 DROP SCHEMA IF EXISTS booking CASCADE;
8086
8087 CREATE SCHEMA booking;
8088
8089 CREATE TABLE booking.resource_type (
8090         id             SERIAL          PRIMARY KEY,
8091         name           TEXT            NOT NULL,
8092         fine_interval  INTERVAL,
8093         fine_amount    DECIMAL(8,2)    NOT NULL DEFAULT 0,
8094         owner          INT             NOT NULL
8095                                        REFERENCES actor.org_unit( id )
8096                                        DEFERRABLE INITIALLY DEFERRED,
8097         catalog_item   BOOLEAN         NOT NULL DEFAULT FALSE,
8098         transferable   BOOLEAN         NOT NULL DEFAULT FALSE,
8099     record         BIGINT          REFERENCES biblio.record_entry (id)
8100                                        DEFERRABLE INITIALLY DEFERRED,
8101     max_fine       NUMERIC(8,2),
8102     elbow_room     INTERVAL,
8103     CONSTRAINT brt_name_and_record_once_per_owner UNIQUE(owner, name, record)
8104 );
8105
8106 CREATE TABLE booking.resource (
8107         id             SERIAL           PRIMARY KEY,
8108         owner          INT              NOT NULL
8109                                         REFERENCES actor.org_unit(id)
8110                                         DEFERRABLE INITIALLY DEFERRED,
8111         type           INT              NOT NULL
8112                                         REFERENCES booking.resource_type(id)
8113                                         DEFERRABLE INITIALLY DEFERRED,
8114         overbook       BOOLEAN          NOT NULL DEFAULT FALSE,
8115         barcode        TEXT             NOT NULL,
8116         deposit        BOOLEAN          NOT NULL DEFAULT FALSE,
8117         deposit_amount DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
8118         user_fee       DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
8119         CONSTRAINT br_unique UNIQUE (owner, barcode)
8120 );
8121
8122 -- For non-catalog items: hijack barcode for name/description
8123
8124 CREATE TABLE booking.resource_attr (
8125         id              SERIAL          PRIMARY KEY,
8126         owner           INT             NOT NULL
8127                                         REFERENCES actor.org_unit(id)
8128                                         DEFERRABLE INITIALLY DEFERRED,
8129         name            TEXT            NOT NULL,
8130         resource_type   INT             NOT NULL
8131                                         REFERENCES booking.resource_type(id)
8132                                         ON DELETE CASCADE
8133                                         DEFERRABLE INITIALLY DEFERRED,
8134         required        BOOLEAN         NOT NULL DEFAULT FALSE,
8135         CONSTRAINT bra_name_once_per_type UNIQUE(resource_type, name)
8136 );
8137
8138 CREATE TABLE booking.resource_attr_value (
8139         id               SERIAL         PRIMARY KEY,
8140         owner            INT            NOT NULL
8141                                         REFERENCES actor.org_unit(id)
8142                                         DEFERRABLE INITIALLY DEFERRED,
8143         attr             INT            NOT NULL
8144                                         REFERENCES booking.resource_attr(id)
8145                                         DEFERRABLE INITIALLY DEFERRED,
8146         valid_value      TEXT           NOT NULL,
8147         CONSTRAINT brav_logical_key UNIQUE(owner, attr, valid_value)
8148 );
8149
8150 CREATE TABLE booking.resource_attr_map (
8151         id               SERIAL         PRIMARY KEY,
8152         resource         INT            NOT NULL
8153                                         REFERENCES booking.resource(id)
8154                                         ON DELETE CASCADE
8155                                         DEFERRABLE INITIALLY DEFERRED,
8156         resource_attr    INT            NOT NULL
8157                                         REFERENCES booking.resource_attr(id)
8158                                         ON DELETE CASCADE
8159                                         DEFERRABLE INITIALLY DEFERRED,
8160         value            INT            NOT NULL
8161                                         REFERENCES booking.resource_attr_value(id)
8162                                         DEFERRABLE INITIALLY DEFERRED,
8163         CONSTRAINT bram_one_value_per_attr UNIQUE(resource, resource_attr)
8164 );
8165
8166 CREATE TABLE booking.reservation (
8167         request_time     TIMESTAMPTZ   NOT NULL DEFAULT now(),
8168         start_time       TIMESTAMPTZ,
8169         end_time         TIMESTAMPTZ,
8170         capture_time     TIMESTAMPTZ,
8171         cancel_time      TIMESTAMPTZ,
8172         pickup_time      TIMESTAMPTZ,
8173         return_time      TIMESTAMPTZ,
8174         booking_interval INTERVAL,
8175         fine_interval    INTERVAL,
8176         fine_amount      DECIMAL(8,2),
8177         target_resource_type  INT       NOT NULL
8178                                         REFERENCES booking.resource_type(id)
8179                                         ON DELETE CASCADE
8180                                         DEFERRABLE INITIALLY DEFERRED,
8181         target_resource  INT            REFERENCES booking.resource(id)
8182                                         ON DELETE CASCADE
8183                                         DEFERRABLE INITIALLY DEFERRED,
8184         current_resource INT            REFERENCES booking.resource(id)
8185                                         ON DELETE CASCADE
8186                                         DEFERRABLE INITIALLY DEFERRED,
8187         request_lib      INT            NOT NULL
8188                                         REFERENCES actor.org_unit(id)
8189                                         DEFERRABLE INITIALLY DEFERRED,
8190         pickup_lib       INT            REFERENCES actor.org_unit(id)
8191                                         DEFERRABLE INITIALLY DEFERRED,
8192         capture_staff    INT            REFERENCES actor.usr(id)
8193                                         DEFERRABLE INITIALLY DEFERRED,
8194     max_fine         NUMERIC(8,2)
8195 ) INHERITS (money.billable_xact);
8196
8197 ALTER TABLE booking.reservation ADD PRIMARY KEY (id);
8198
8199 ALTER TABLE booking.reservation
8200         ADD CONSTRAINT booking_reservation_usr_fkey
8201         FOREIGN KEY (usr) REFERENCES actor.usr (id)
8202         DEFERRABLE INITIALLY DEFERRED;
8203
8204 CREATE TABLE booking.reservation_attr_value_map (
8205         id               SERIAL         PRIMARY KEY,
8206         reservation      INT            NOT NULL
8207                                         REFERENCES booking.reservation(id)
8208                                         ON DELETE CASCADE
8209                                         DEFERRABLE INITIALLY DEFERRED,
8210         attr_value       INT            NOT NULL
8211                                         REFERENCES booking.resource_attr_value(id)
8212                                         ON DELETE CASCADE
8213                                         DEFERRABLE INITIALLY DEFERRED,
8214         CONSTRAINT bravm_logical_key UNIQUE(reservation, attr_value)
8215 );
8216
8217 -- represents a circ chain summary
8218 CREATE TYPE action.circ_chain_summary AS (
8219     num_circs INTEGER,
8220     start_time TIMESTAMP WITH TIME ZONE,
8221     checkout_workstation TEXT,
8222     last_renewal_time TIMESTAMP WITH TIME ZONE, -- NULL if no renewals
8223     last_stop_fines TEXT,
8224     last_stop_fines_time TIMESTAMP WITH TIME ZONE,
8225     last_renewal_workstation TEXT, -- NULL if no renewals
8226     last_checkin_workstation TEXT,
8227     last_checkin_time TIMESTAMP WITH TIME ZONE,
8228     last_checkin_scan_time TIMESTAMP WITH TIME ZONE
8229 );
8230
8231 CREATE OR REPLACE FUNCTION action.circ_chain ( ctx_circ_id INTEGER ) RETURNS SETOF action.circulation AS $$
8232 DECLARE
8233     tmp_circ action.circulation%ROWTYPE;
8234     circ_0 action.circulation%ROWTYPE;
8235 BEGIN
8236
8237     SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id;
8238
8239     IF tmp_circ IS NULL THEN
8240         RETURN NEXT tmp_circ;
8241     END IF;
8242     circ_0 := tmp_circ;
8243
8244     -- find the front of the chain
8245     WHILE TRUE LOOP
8246         SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ;
8247         IF tmp_circ IS NULL THEN
8248             EXIT;
8249         END IF;
8250         circ_0 := tmp_circ;
8251     END LOOP;
8252
8253     -- now send the circs to the caller, oldest to newest
8254     tmp_circ := circ_0;
8255     WHILE TRUE LOOP
8256         IF tmp_circ IS NULL THEN
8257             EXIT;
8258         END IF;
8259         RETURN NEXT tmp_circ;
8260         SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id;
8261     END LOOP;
8262
8263 END;
8264 $$ LANGUAGE 'plpgsql';
8265
8266 CREATE OR REPLACE FUNCTION action.summarize_circ_chain ( ctx_circ_id INTEGER ) RETURNS action.circ_chain_summary AS $$
8267
8268 DECLARE
8269
8270     -- first circ in the chain
8271     circ_0 action.circulation%ROWTYPE;
8272
8273     -- last circ in the chain
8274     circ_n action.circulation%ROWTYPE;
8275
8276     -- circ chain under construction
8277     chain action.circ_chain_summary;
8278     tmp_circ action.circulation%ROWTYPE;
8279
8280 BEGIN
8281     
8282     chain.num_circs := 0;
8283     FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP
8284
8285         IF chain.num_circs = 0 THEN
8286             circ_0 := tmp_circ;
8287         END IF;
8288
8289         chain.num_circs := chain.num_circs + 1;
8290         circ_n := tmp_circ;
8291     END LOOP;
8292
8293     chain.start_time := circ_0.xact_start;
8294     chain.last_stop_fines := circ_n.stop_fines;
8295     chain.last_stop_fines_time := circ_n.stop_fines_time;
8296     chain.last_checkin_time := circ_n.checkin_time;
8297     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
8298     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
8299     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
8300
8301     IF chain.num_circs > 1 THEN
8302         chain.last_renewal_time := circ_n.xact_start;
8303         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
8304     END IF;
8305
8306     RETURN chain;
8307
8308 END;
8309 $$ LANGUAGE 'plpgsql';
8310
8311 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('reservation');
8312 CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update ();
8313 CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete ();
8314
8315 ALTER TABLE config.standing_penalty
8316         ADD COLUMN org_depth   INTEGER;
8317
8318 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
8319 DECLARE
8320     user_object         actor.usr%ROWTYPE;
8321     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
8322     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
8323     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
8324     max_fines           permission.grp_penalty_threshold%ROWTYPE;
8325     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
8326     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
8327     tmp_grp             INT;
8328     items_overdue       INT;
8329     items_out           INT;
8330     context_org_list    INT[];
8331     current_fines        NUMERIC(8,2) := 0.0;
8332     tmp_fines            NUMERIC(8,2);
8333     tmp_groc            RECORD;
8334     tmp_circ            RECORD;
8335     tmp_org             actor.org_unit%ROWTYPE;
8336     tmp_penalty         config.standing_penalty%ROWTYPE;
8337     tmp_depth           INTEGER;
8338 BEGIN
8339     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8340
8341     -- Max fines
8342     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8343
8344     -- Fail if the user has a high fine balance
8345     LOOP
8346         tmp_grp := user_object.profile;
8347         LOOP
8348             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
8349
8350             IF max_fines.threshold IS NULL THEN
8351                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8352             ELSE
8353                 EXIT;
8354             END IF;
8355
8356             IF tmp_grp IS NULL THEN
8357                 EXIT;
8358             END IF;
8359         END LOOP;
8360
8361         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8362             EXIT;
8363         END IF;
8364
8365         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8366
8367     END LOOP;
8368
8369     IF max_fines.threshold IS NOT NULL THEN
8370
8371         FOR existing_sp_row IN
8372                 SELECT  *
8373                   FROM  actor.usr_standing_penalty
8374                   WHERE usr = match_user
8375                         AND org_unit = max_fines.org_unit
8376                         AND (stop_date IS NULL or stop_date > NOW())
8377                         AND standing_penalty = 1
8378                 LOOP
8379             RETURN NEXT existing_sp_row;
8380         END LOOP;
8381
8382         SELECT  SUM(f.balance_owed) INTO current_fines
8383           FROM  money.materialized_billable_xact_summary f
8384                 JOIN (
8385                     SELECT  r.id
8386                       FROM  booking.reservation r
8387                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8388                       WHERE usr = match_user
8389                             AND xact_finish IS NULL
8390                                 UNION ALL
8391                     SELECT  g.id
8392                       FROM  money.grocery g
8393                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8394                       WHERE usr = match_user
8395                             AND xact_finish IS NULL
8396                                 UNION ALL
8397                     SELECT  circ.id
8398                       FROM  action.circulation circ
8399                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8400                       WHERE usr = match_user
8401                             AND xact_finish IS NULL ) l USING (id);
8402
8403         IF current_fines >= max_fines.threshold THEN
8404             new_sp_row.usr := match_user;
8405             new_sp_row.org_unit := max_fines.org_unit;
8406             new_sp_row.standing_penalty := 1;
8407             RETURN NEXT new_sp_row;
8408         END IF;
8409     END IF;
8410
8411     -- Start over for max overdue
8412     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8413
8414     -- Fail if the user has too many overdue items
8415     LOOP
8416         tmp_grp := user_object.profile;
8417         LOOP
8418
8419             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
8420
8421             IF max_overdue.threshold IS NULL THEN
8422                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8423             ELSE
8424                 EXIT;
8425             END IF;
8426
8427             IF tmp_grp IS NULL THEN
8428                 EXIT;
8429             END IF;
8430         END LOOP;
8431
8432         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8433             EXIT;
8434         END IF;
8435
8436         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8437
8438     END LOOP;
8439
8440     IF max_overdue.threshold IS NOT NULL THEN
8441
8442         FOR existing_sp_row IN
8443                 SELECT  *
8444                   FROM  actor.usr_standing_penalty
8445                   WHERE usr = match_user
8446                         AND org_unit = max_overdue.org_unit
8447                         AND (stop_date IS NULL or stop_date > NOW())
8448                         AND standing_penalty = 2
8449                 LOOP
8450             RETURN NEXT existing_sp_row;
8451         END LOOP;
8452
8453         SELECT  INTO items_overdue COUNT(*)
8454           FROM  action.circulation circ
8455                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
8456           WHERE circ.usr = match_user
8457             AND circ.checkin_time IS NULL
8458             AND circ.due_date < NOW()
8459             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
8460
8461         IF items_overdue >= max_overdue.threshold::INT THEN
8462             new_sp_row.usr := match_user;
8463             new_sp_row.org_unit := max_overdue.org_unit;
8464             new_sp_row.standing_penalty := 2;
8465             RETURN NEXT new_sp_row;
8466         END IF;
8467     END IF;
8468
8469     -- Start over for max out
8470     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8471
8472     -- Fail if the user has too many checked out items
8473     LOOP
8474         tmp_grp := user_object.profile;
8475         LOOP
8476             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
8477
8478             IF max_items_out.threshold IS NULL THEN
8479                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8480             ELSE
8481                 EXIT;
8482             END IF;
8483
8484             IF tmp_grp IS NULL THEN
8485                 EXIT;
8486             END IF;
8487         END LOOP;
8488
8489         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8490             EXIT;
8491         END IF;
8492
8493         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8494
8495     END LOOP;
8496
8497
8498     -- Fail if the user has too many items checked out
8499     IF max_items_out.threshold IS NOT NULL THEN
8500
8501         FOR existing_sp_row IN
8502                 SELECT  *
8503                   FROM  actor.usr_standing_penalty
8504                   WHERE usr = match_user
8505                         AND org_unit = max_items_out.org_unit
8506                         AND (stop_date IS NULL or stop_date > NOW())
8507                         AND standing_penalty = 3
8508                 LOOP
8509             RETURN NEXT existing_sp_row;
8510         END LOOP;
8511
8512         SELECT  INTO items_out COUNT(*)
8513           FROM  action.circulation circ
8514                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
8515           WHERE circ.usr = match_user
8516                 AND circ.checkin_time IS NULL
8517                 AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL);
8518
8519            IF items_out >= max_items_out.threshold::INT THEN
8520             new_sp_row.usr := match_user;
8521             new_sp_row.org_unit := max_items_out.org_unit;
8522             new_sp_row.standing_penalty := 3;
8523             RETURN NEXT new_sp_row;
8524            END IF;
8525     END IF;
8526
8527     -- Start over for collections warning
8528     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8529
8530     -- Fail if the user has a collections-level fine balance
8531     LOOP
8532         tmp_grp := user_object.profile;
8533         LOOP
8534             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
8535
8536             IF max_fines.threshold IS NULL THEN
8537                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8538             ELSE
8539                 EXIT;
8540             END IF;
8541
8542             IF tmp_grp IS NULL THEN
8543                 EXIT;
8544             END IF;
8545         END LOOP;
8546
8547         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8548             EXIT;
8549         END IF;
8550
8551         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8552
8553     END LOOP;
8554
8555     IF max_fines.threshold IS NOT NULL THEN
8556
8557         FOR existing_sp_row IN
8558                 SELECT  *
8559                   FROM  actor.usr_standing_penalty
8560                   WHERE usr = match_user
8561                         AND org_unit = max_fines.org_unit
8562                         AND (stop_date IS NULL or stop_date > NOW())
8563                         AND standing_penalty = 4
8564                 LOOP
8565             RETURN NEXT existing_sp_row;
8566         END LOOP;
8567
8568         SELECT  SUM(f.balance_owed) INTO current_fines
8569           FROM  money.materialized_billable_xact_summary f
8570                 JOIN (
8571                     SELECT  r.id
8572                       FROM  booking.reservation r
8573                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8574                       WHERE usr = match_user
8575                             AND xact_finish IS NULL
8576                                 UNION ALL
8577                     SELECT  g.id
8578                       FROM  money.grocery g
8579                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8580                       WHERE usr = match_user
8581                             AND xact_finish IS NULL
8582                                 UNION ALL
8583                     SELECT  circ.id
8584                       FROM  action.circulation circ
8585                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8586                       WHERE usr = match_user
8587                             AND xact_finish IS NULL ) l USING (id);
8588
8589         IF current_fines >= max_fines.threshold THEN
8590             new_sp_row.usr := match_user;
8591             new_sp_row.org_unit := max_fines.org_unit;
8592             new_sp_row.standing_penalty := 4;
8593             RETURN NEXT new_sp_row;
8594         END IF;
8595     END IF;
8596
8597     -- Start over for in collections
8598     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8599
8600     -- Remove the in-collections penalty if the user has paid down enough
8601     -- This penalty is different, because this code is not responsible for creating 
8602     -- new in-collections penalties, only for removing them
8603     LOOP
8604         tmp_grp := user_object.profile;
8605         LOOP
8606             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id;
8607
8608             IF max_fines.threshold IS NULL THEN
8609                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8610             ELSE
8611                 EXIT;
8612             END IF;
8613
8614             IF tmp_grp IS NULL THEN
8615                 EXIT;
8616             END IF;
8617         END LOOP;
8618
8619         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8620             EXIT;
8621         END IF;
8622
8623         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8624
8625     END LOOP;
8626
8627     IF max_fines.threshold IS NOT NULL THEN
8628
8629         -- first, see if the user had paid down to the threshold
8630         SELECT  SUM(f.balance_owed) INTO current_fines
8631           FROM  money.materialized_billable_xact_summary f
8632                 JOIN (
8633                     SELECT  r.id
8634                       FROM  booking.reservation r
8635                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8636                       WHERE usr = match_user
8637                             AND xact_finish IS NULL
8638                                 UNION ALL
8639                     SELECT  g.id
8640                       FROM  money.grocery g
8641                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8642                       WHERE usr = match_user
8643                             AND xact_finish IS NULL
8644                                 UNION ALL
8645                     SELECT  circ.id
8646                       FROM  action.circulation circ
8647                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8648                       WHERE usr = match_user
8649                             AND xact_finish IS NULL ) l USING (id);
8650
8651         IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN
8652             -- patron has paid down enough
8653
8654             SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30;
8655
8656             IF tmp_penalty.org_depth IS NOT NULL THEN
8657
8658                 -- since this code is not responsible for applying the penalty, it can't 
8659                 -- guarantee the current context org will match the org at which the penalty 
8660                 --- was applied.  search up the org tree until we hit the configured penalty depth
8661                 SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8662                 SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8663
8664                 WHILE tmp_depth >= tmp_penalty.org_depth LOOP
8665
8666                     FOR existing_sp_row IN
8667                             SELECT  *
8668                             FROM  actor.usr_standing_penalty
8669                             WHERE usr = match_user
8670                                     AND org_unit = tmp_org.id
8671                                     AND (stop_date IS NULL or stop_date > NOW())
8672                                     AND standing_penalty = 30 
8673                             LOOP
8674
8675                         -- Penalty exists, return it for removal
8676                         RETURN NEXT existing_sp_row;
8677                     END LOOP;
8678
8679                     IF tmp_org.parent_ou IS NULL THEN
8680                         EXIT;
8681                     END IF;
8682
8683                     SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8684                     SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8685                 END LOOP;
8686
8687             ELSE
8688
8689                 -- no penalty depth is defined, look for exact matches
8690
8691                 FOR existing_sp_row IN
8692                         SELECT  *
8693                         FROM  actor.usr_standing_penalty
8694                         WHERE usr = match_user
8695                                 AND org_unit = max_fines.org_unit
8696                                 AND (stop_date IS NULL or stop_date > NOW())
8697                                 AND standing_penalty = 30 
8698                         LOOP
8699                     -- Penalty exists, return it for removal
8700                     RETURN NEXT existing_sp_row;
8701                 END LOOP;
8702             END IF;
8703     
8704         END IF;
8705
8706     END IF;
8707
8708     RETURN;
8709 END;
8710 $func$ LANGUAGE plpgsql;
8711
8712 -- Create a default row in acq.fiscal_calendar
8713 -- Add a column in actor.org_unit to point to it
8714
8715 INSERT INTO acq.fiscal_calendar ( id, name ) VALUES ( 1, 'Default' );
8716
8717 ALTER TABLE actor.org_unit
8718 ADD COLUMN fiscal_calendar INT NOT NULL
8719         REFERENCES acq.fiscal_calendar( id )
8720         DEFERRABLE INITIALLY DEFERRED
8721         DEFAULT 1;
8722
8723 ALTER TABLE auditor.actor_org_unit_history
8724         ADD COLUMN fiscal_calendar INT;
8725
8726 DROP VIEW IF EXISTS auditor.actor_org_unit_lifecycle;
8727
8728 SELECT auditor.create_auditor_lifecycle( 'actor', 'org_unit' );
8729
8730 ALTER TABLE acq.funding_source_credit
8731 ADD COLUMN deadline_date TIMESTAMPTZ;
8732
8733 ALTER TABLE acq.funding_source_credit
8734 ADD COLUMN effective_date TIMESTAMPTZ NOT NULL DEFAULT now();
8735
8736 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS','Patron has been referred to a collections agency');
8737
8738 CREATE TABLE acq.fund_transfer (
8739         id               SERIAL         PRIMARY KEY,
8740         src_fund         INT            NOT NULL REFERENCES acq.fund( id )
8741                                         DEFERRABLE INITIALLY DEFERRED,
8742         src_amount       NUMERIC        NOT NULL,
8743         dest_fund        INT            REFERENCES acq.fund( id )
8744                                         DEFERRABLE INITIALLY DEFERRED,
8745         dest_amount      NUMERIC,
8746         transfer_time    TIMESTAMPTZ    NOT NULL DEFAULT now(),
8747         transfer_user    INT            NOT NULL REFERENCES actor.usr( id )
8748                                         DEFERRABLE INITIALLY DEFERRED,
8749         note             TEXT,
8750     funding_source_credit INTEGER   NOT NULL
8751                                         REFERENCES acq.funding_source_credit(id)
8752                                         DEFERRABLE INITIALLY DEFERRED
8753 );
8754
8755 CREATE INDEX acqftr_usr_idx
8756 ON acq.fund_transfer( transfer_user );
8757
8758 COMMENT ON TABLE acq.fund_transfer IS $$
8759 /*
8760  * Copyright (C) 2009  Georgia Public Library Service
8761  * Scott McKellar <scott@esilibrary.com>
8762  *
8763  * Fund Transfer
8764  *
8765  * Each row represents the transfer of money from a source fund
8766  * to a destination fund.  There should be corresponding entries
8767  * in acq.fund_allocation.  The purpose of acq.fund_transfer is
8768  * to record how much money moved from which fund to which other
8769  * fund.
8770  * 
8771  * The presence of two amount fields, rather than one, reflects
8772  * the possibility that the two funds are denominated in different
8773  * currencies.  If they use the same currency type, the two
8774  * amounts should be the same.
8775  *
8776  * ****
8777  *
8778  * This program is free software; you can redistribute it and/or
8779  * modify it under the terms of the GNU General Public License
8780  * as published by the Free Software Foundation; either version 2
8781  * of the License, or (at your option) any later version.
8782  *
8783  * This program is distributed in the hope that it will be useful,
8784  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8785  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8786  * GNU General Public License for more details.
8787  */
8788 $$;
8789
8790 CREATE TABLE acq.claim_event_type (
8791         id             SERIAL           PRIMARY KEY,
8792         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8793                                                  DEFERRABLE INITIALLY DEFERRED,
8794         code           TEXT             NOT NULL,
8795         description    TEXT             NOT NULL,
8796         library_initiated BOOL          NOT NULL DEFAULT FALSE,
8797         CONSTRAINT event_type_once_per_org UNIQUE ( org_unit, code )
8798 );
8799
8800 CREATE TABLE acq.claim_event (
8801         id             BIGSERIAL        PRIMARY KEY,
8802         type           INT              NOT NULL REFERENCES acq.claim_event_type
8803                                                  DEFERRABLE INITIALLY DEFERRED,
8804         claim          SERIAL           NOT NULL REFERENCES acq.claim
8805                                                  DEFERRABLE INITIALLY DEFERRED,
8806         event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
8807         creator        INT              NOT NULL REFERENCES actor.usr
8808                                                  DEFERRABLE INITIALLY DEFERRED,
8809         note           TEXT
8810 );
8811
8812 CREATE INDEX claim_event_claim_date_idx ON acq.claim_event( claim, event_date );
8813
8814 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
8815         src_usr  IN INTEGER,
8816         dest_usr IN INTEGER
8817 ) RETURNS VOID AS $$
8818 DECLARE
8819         suffix TEXT;
8820         renamable_row RECORD;
8821 BEGIN
8822
8823         UPDATE actor.usr SET
8824                 active = FALSE,
8825                 card = NULL,
8826                 mailing_address = NULL,
8827                 billing_address = NULL
8828         WHERE id = src_usr;
8829
8830         -- acq.*
8831         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
8832         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
8833         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
8834         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
8835         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
8836         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
8837         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
8838
8839         -- Update with a rename to avoid collisions
8840         FOR renamable_row in
8841                 SELECT id, name
8842                 FROM   acq.picklist
8843                 WHERE  owner = src_usr
8844         LOOP
8845                 suffix := ' (' || src_usr || ')';
8846                 LOOP
8847                         BEGIN
8848                                 UPDATE  acq.picklist
8849                                 SET     owner = dest_usr, name = name || suffix
8850                                 WHERE   id = renamable_row.id;
8851                         EXCEPTION WHEN unique_violation THEN
8852                                 suffix := suffix || ' ';
8853                                 CONTINUE;
8854                         END;
8855                         EXIT;
8856                 END LOOP;
8857         END LOOP;
8858
8859         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
8860         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
8861         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
8862         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
8863         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
8864         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
8865         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
8866         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
8867
8868         -- action.*
8869         DELETE FROM action.circulation WHERE usr = src_usr;
8870         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
8871         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
8872         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
8873         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
8874         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
8875         DELETE FROM action.hold_request WHERE usr = src_usr;
8876         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
8877         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
8878         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
8879         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
8880         DELETE FROM action.survey_response WHERE usr = src_usr;
8881         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
8882
8883         -- actor.*
8884         DELETE FROM actor.card WHERE usr = src_usr;
8885         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
8886
8887         -- The following update is intended to avoid transient violations of a foreign
8888         -- key constraint, whereby actor.usr_address references itself.  It may not be
8889         -- necessary, but it does no harm.
8890         UPDATE actor.usr_address SET replaces = NULL
8891                 WHERE usr = src_usr AND replaces IS NOT NULL;
8892         DELETE FROM actor.usr_address WHERE usr = src_usr;
8893         DELETE FROM actor.usr_note WHERE usr = src_usr;
8894         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
8895         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
8896         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
8897         DELETE FROM actor.usr_setting WHERE usr = src_usr;
8898         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
8899         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
8900
8901         -- asset.*
8902         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
8903         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
8904         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
8905         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
8906         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
8907         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
8908
8909         -- auditor.*
8910         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
8911         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
8912         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
8913         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
8914         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
8915         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
8916         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
8917         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
8918
8919         -- biblio.*
8920         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
8921         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
8922         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
8923         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
8924
8925         -- container.*
8926         -- Update buckets with a rename to avoid collisions
8927         FOR renamable_row in
8928                 SELECT id, name
8929                 FROM   container.biblio_record_entry_bucket
8930                 WHERE  owner = src_usr
8931         LOOP
8932                 suffix := ' (' || src_usr || ')';
8933                 LOOP
8934                         BEGIN
8935                                 UPDATE  container.biblio_record_entry_bucket
8936                                 SET     owner = dest_usr, name = name || suffix
8937                                 WHERE   id = renamable_row.id;
8938                         EXCEPTION WHEN unique_violation THEN
8939                                 suffix := suffix || ' ';
8940                                 CONTINUE;
8941                         END;
8942                         EXIT;
8943                 END LOOP;
8944         END LOOP;
8945
8946         FOR renamable_row in
8947                 SELECT id, name
8948                 FROM   container.call_number_bucket
8949                 WHERE  owner = src_usr
8950         LOOP
8951                 suffix := ' (' || src_usr || ')';
8952                 LOOP
8953                         BEGIN
8954                                 UPDATE  container.call_number_bucket
8955                                 SET     owner = dest_usr, name = name || suffix
8956                                 WHERE   id = renamable_row.id;
8957                         EXCEPTION WHEN unique_violation THEN
8958                                 suffix := suffix || ' ';
8959                                 CONTINUE;
8960                         END;
8961                         EXIT;
8962                 END LOOP;
8963         END LOOP;
8964
8965         FOR renamable_row in
8966                 SELECT id, name
8967                 FROM   container.copy_bucket
8968                 WHERE  owner = src_usr
8969         LOOP
8970                 suffix := ' (' || src_usr || ')';
8971                 LOOP
8972                         BEGIN
8973                                 UPDATE  container.copy_bucket
8974                                 SET     owner = dest_usr, name = name || suffix
8975                                 WHERE   id = renamable_row.id;
8976                         EXCEPTION WHEN unique_violation THEN
8977                                 suffix := suffix || ' ';
8978                                 CONTINUE;
8979                         END;
8980                         EXIT;
8981                 END LOOP;
8982         END LOOP;
8983
8984         FOR renamable_row in
8985                 SELECT id, name
8986                 FROM   container.user_bucket
8987                 WHERE  owner = src_usr
8988         LOOP
8989                 suffix := ' (' || src_usr || ')';
8990                 LOOP
8991                         BEGIN
8992                                 UPDATE  container.user_bucket
8993                                 SET     owner = dest_usr, name = name || suffix
8994                                 WHERE   id = renamable_row.id;
8995                         EXCEPTION WHEN unique_violation THEN
8996                                 suffix := suffix || ' ';
8997                                 CONTINUE;
8998                         END;
8999                         EXIT;
9000                 END LOOP;
9001         END LOOP;
9002
9003         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
9004
9005         -- money.*
9006         DELETE FROM money.billable_xact WHERE usr = src_usr;
9007         DELETE FROM money.collections_tracker WHERE usr = src_usr;
9008         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
9009
9010         -- permission.*
9011         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
9012         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
9013         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
9014         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
9015
9016         -- reporter.*
9017         -- Update with a rename to avoid collisions
9018         BEGIN
9019                 FOR renamable_row in
9020                         SELECT id, name
9021                         FROM   reporter.output_folder
9022                         WHERE  owner = src_usr
9023                 LOOP
9024                         suffix := ' (' || src_usr || ')';
9025                         LOOP
9026                                 BEGIN
9027                                         UPDATE  reporter.output_folder
9028                                         SET     owner = dest_usr, name = name || suffix
9029                                         WHERE   id = renamable_row.id;
9030                                 EXCEPTION WHEN unique_violation THEN
9031                                         suffix := suffix || ' ';
9032                                         CONTINUE;
9033                                 END;
9034                                 EXIT;
9035                         END LOOP;
9036                 END LOOP;
9037         EXCEPTION WHEN undefined_table THEN
9038                 -- do nothing
9039         END;
9040
9041         BEGIN
9042                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
9043         EXCEPTION WHEN undefined_table THEN
9044                 -- do nothing
9045         END;
9046
9047         -- Update with a rename to avoid collisions
9048         BEGIN
9049                 FOR renamable_row in
9050                         SELECT id, name
9051                         FROM   reporter.report_folder
9052                         WHERE  owner = src_usr
9053                 LOOP
9054                         suffix := ' (' || src_usr || ')';
9055                         LOOP
9056                                 BEGIN
9057                                         UPDATE  reporter.report_folder
9058                                         SET     owner = dest_usr, name = name || suffix
9059                                         WHERE   id = renamable_row.id;
9060                                 EXCEPTION WHEN unique_violation THEN
9061                                         suffix := suffix || ' ';
9062                                         CONTINUE;
9063                                 END;
9064                                 EXIT;
9065                         END LOOP;
9066                 END LOOP;
9067         EXCEPTION WHEN undefined_table THEN
9068                 -- do nothing
9069         END;
9070
9071         BEGIN
9072                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
9073         EXCEPTION WHEN undefined_table THEN
9074                 -- do nothing
9075         END;
9076
9077         BEGIN
9078                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
9079         EXCEPTION WHEN undefined_table THEN
9080                 -- do nothing
9081         END;
9082
9083         -- Update with a rename to avoid collisions
9084         BEGIN
9085                 FOR renamable_row in
9086                         SELECT id, name
9087                         FROM   reporter.template_folder
9088                         WHERE  owner = src_usr
9089                 LOOP
9090                         suffix := ' (' || src_usr || ')';
9091                         LOOP
9092                                 BEGIN
9093                                         UPDATE  reporter.template_folder
9094                                         SET     owner = dest_usr, name = name || suffix
9095                                         WHERE   id = renamable_row.id;
9096                                 EXCEPTION WHEN unique_violation THEN
9097                                         suffix := suffix || ' ';
9098                                         CONTINUE;
9099                                 END;
9100                                 EXIT;
9101                         END LOOP;
9102                 END LOOP;
9103         EXCEPTION WHEN undefined_table THEN
9104         -- do nothing
9105         END;
9106
9107         -- vandelay.*
9108         -- Update with a rename to avoid collisions
9109         FOR renamable_row in
9110                 SELECT id, name
9111                 FROM   vandelay.queue
9112                 WHERE  owner = src_usr
9113         LOOP
9114                 suffix := ' (' || src_usr || ')';
9115                 LOOP
9116                         BEGIN
9117                                 UPDATE  vandelay.queue
9118                                 SET     owner = dest_usr, name = name || suffix
9119                                 WHERE   id = renamable_row.id;
9120                         EXCEPTION WHEN unique_violation THEN
9121                                 suffix := suffix || ' ';
9122                                 CONTINUE;
9123                         END;
9124                         EXIT;
9125                 END LOOP;
9126         END LOOP;
9127
9128 END;
9129 $$ LANGUAGE plpgsql;
9130
9131 COMMENT ON FUNCTION actor.usr_purge_data(INT, INT) IS $$
9132 /**
9133  * Finds rows dependent on a given row in actor.usr and either deletes them
9134  * or reassigns them to a different user.
9135  */
9136 $$;
9137
9138 CREATE OR REPLACE FUNCTION actor.usr_delete(
9139         src_usr  IN INTEGER,
9140         dest_usr IN INTEGER
9141 ) RETURNS VOID AS $$
9142 DECLARE
9143         old_profile actor.usr.profile%type;
9144         old_home_ou actor.usr.home_ou%type;
9145         new_profile actor.usr.profile%type;
9146         new_home_ou actor.usr.home_ou%type;
9147         new_name    text;
9148         new_dob     actor.usr.dob%type;
9149 BEGIN
9150         SELECT
9151                 id || '-PURGED-' || now(),
9152                 profile,
9153                 home_ou,
9154                 dob
9155         INTO
9156                 new_name,
9157                 old_profile,
9158                 old_home_ou,
9159                 new_dob
9160         FROM
9161                 actor.usr
9162         WHERE
9163                 id = src_usr;
9164         --
9165         -- Quit if no such user
9166         --
9167         IF old_profile IS NULL THEN
9168                 RETURN;
9169         END IF;
9170         --
9171         perform actor.usr_purge_data( src_usr, dest_usr );
9172         --
9173         -- Find the root grp_tree and the root org_unit.  This would be simpler if we 
9174         -- could assume that there is only one root.  Theoretically, someday, maybe,
9175         -- there could be multiple roots, so we take extra trouble to get the right ones.
9176         --
9177         SELECT
9178                 id
9179         INTO
9180                 new_profile
9181         FROM
9182                 permission.grp_ancestors( old_profile )
9183         WHERE
9184                 parent is null;
9185         --
9186         SELECT
9187                 id
9188         INTO
9189                 new_home_ou
9190         FROM
9191                 actor.org_unit_ancestors( old_home_ou )
9192         WHERE
9193                 parent_ou is null;
9194         --
9195         -- Truncate date of birth
9196         --
9197         IF new_dob IS NOT NULL THEN
9198                 new_dob := date_trunc( 'year', new_dob );
9199         END IF;
9200         --
9201         UPDATE
9202                 actor.usr
9203                 SET
9204                         card = NULL,
9205                         profile = new_profile,
9206                         usrname = new_name,
9207                         email = NULL,
9208                         passwd = random()::text,
9209                         standing = DEFAULT,
9210                         ident_type = 
9211                         (
9212                                 SELECT MIN( id )
9213                                 FROM config.identification_type
9214                         ),
9215                         ident_value = NULL,
9216                         ident_type2 = NULL,
9217                         ident_value2 = NULL,
9218                         net_access_level = DEFAULT,
9219                         photo_url = NULL,
9220                         prefix = NULL,
9221                         first_given_name = new_name,
9222                         second_given_name = NULL,
9223                         family_name = new_name,
9224                         suffix = NULL,
9225                         alias = NULL,
9226                         day_phone = NULL,
9227                         evening_phone = NULL,
9228                         other_phone = NULL,
9229                         mailing_address = NULL,
9230                         billing_address = NULL,
9231                         home_ou = new_home_ou,
9232                         dob = new_dob,
9233                         active = FALSE,
9234                         master_account = DEFAULT, 
9235                         super_user = DEFAULT,
9236                         barred = FALSE,
9237                         deleted = TRUE,
9238                         juvenile = DEFAULT,
9239                         usrgroup = 0,
9240                         claims_returned_count = DEFAULT,
9241                         credit_forward_balance = DEFAULT,
9242                         last_xact_id = DEFAULT,
9243                         alert_message = NULL,
9244                         create_date = now(),
9245                         expire_date = now()
9246         WHERE
9247                 id = src_usr;
9248 END;
9249 $$ LANGUAGE plpgsql;
9250
9251 COMMENT ON FUNCTION actor.usr_delete(INT, INT) IS $$
9252 /**
9253  * Logically deletes a user.  Removes personally identifiable information,
9254  * and purges associated data in other tables.
9255  */
9256 $$;
9257
9258 -- INSERT INTO config.copy_status (id,name) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'));
9259
9260 ALTER TABLE acq.fund
9261 ADD COLUMN rollover BOOL NOT NULL DEFAULT FALSE;
9262
9263 ALTER TABLE acq.fund
9264         ADD COLUMN propagate BOOLEAN NOT NULL DEFAULT TRUE;
9265
9266 -- A fund can't roll over if it doesn't propagate from one year to the next
9267
9268 ALTER TABLE acq.fund
9269         ADD CONSTRAINT acq_fund_rollover_implies_propagate CHECK
9270         ( propagate OR NOT rollover );
9271
9272 ALTER TABLE acq.fund
9273         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
9274
9275 ALTER TABLE acq.fund
9276     ADD COLUMN balance_warning_percent INT
9277     CONSTRAINT balance_warning_percent_limit
9278         CHECK( balance_warning_percent <= 100 );
9279
9280 ALTER TABLE acq.fund
9281     ADD COLUMN balance_stop_percent INT
9282     CONSTRAINT balance_stop_percent_limit
9283         CHECK( balance_stop_percent <= 100 );
9284
9285 CREATE VIEW acq.ordered_funding_source_credit AS
9286         SELECT
9287                 CASE WHEN deadline_date IS NULL THEN
9288                         2
9289                 ELSE
9290                         1
9291                 END AS sort_priority,
9292                 CASE WHEN deadline_date IS NULL THEN
9293                         effective_date
9294                 ELSE
9295                         deadline_date
9296                 END AS sort_date,
9297                 id,
9298                 funding_source,
9299                 amount,
9300                 note
9301         FROM
9302                 acq.funding_source_credit;
9303
9304 COMMENT ON VIEW acq.ordered_funding_source_credit IS $$
9305 /*
9306  * Copyright (C) 2009  Georgia Public Library Service
9307  * Scott McKellar <scott@gmail.com>
9308  *
9309  * The acq.ordered_funding_source_credit view is a prioritized
9310  * ordering of funding source credits.  When ordered by the first
9311  * three columns, this view defines the order in which the various
9312  * credits are to be tapped for spending, subject to the allocations
9313  * in the acq.fund_allocation table.
9314  *
9315  * The first column reflects the principle that we should spend
9316  * money with deadlines before spending money without deadlines.
9317  *
9318  * The second column reflects the principle that we should spend the
9319  * oldest money first.  For money with deadlines, that means that we
9320  * spend first from the credit with the earliest deadline.  For
9321  * money without deadlines, we spend first from the credit with the
9322  * earliest effective date.  
9323  *
9324  * The third column is a tie breaker to ensure a consistent
9325  * ordering.
9326  *
9327  * ****
9328  *
9329  * This program is free software; you can redistribute it and/or
9330  * modify it under the terms of the GNU General Public License
9331  * as published by the Free Software Foundation; either version 2
9332  * of the License, or (at your option) any later version.
9333  *
9334  * This program is distributed in the hope that it will be useful,
9335  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9336  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9337  * GNU General Public License for more details.
9338  */
9339 $$;
9340
9341 CREATE OR REPLACE VIEW money.billable_xact_summary_location_view AS
9342     SELECT  m.*, COALESCE(c.circ_lib, g.billing_location, r.pickup_lib) AS billing_location
9343       FROM  money.materialized_billable_xact_summary m
9344             LEFT JOIN action.circulation c ON (c.id = m.id)
9345             LEFT JOIN money.grocery g ON (g.id = m.id)
9346             LEFT JOIN booking.reservation r ON (r.id = m.id);
9347
9348 CREATE TABLE config.marc21_rec_type_map (
9349     code        TEXT    PRIMARY KEY,
9350     type_val    TEXT    NOT NULL,
9351     blvl_val    TEXT    NOT NULL
9352 );
9353
9354 CREATE TABLE config.marc21_ff_pos_map (
9355     id          SERIAL  PRIMARY KEY,
9356     fixed_field TEXT    NOT NULL,
9357     tag         TEXT    NOT NULL,
9358     rec_type    TEXT    NOT NULL,
9359     start_pos   INT     NOT NULL,
9360     length      INT     NOT NULL,
9361     default_val TEXT    NOT NULL DEFAULT ' '
9362 );
9363
9364 CREATE TABLE config.marc21_physical_characteristic_type_map (
9365     ptype_key   TEXT    PRIMARY KEY,
9366     label       TEXT    NOT NULL -- I18N
9367 );
9368
9369 CREATE TABLE config.marc21_physical_characteristic_subfield_map (
9370     id          SERIAL  PRIMARY KEY,
9371     ptype_key   TEXT    NOT NULL REFERENCES config.marc21_physical_characteristic_type_map (ptype_key) ON DELETE CASCADE ON UPDATE CASCADE,
9372     subfield    TEXT    NOT NULL,
9373     start_pos   INT     NOT NULL,
9374     length      INT     NOT NULL,
9375     label       TEXT    NOT NULL -- I18N
9376 );
9377
9378 CREATE TABLE config.marc21_physical_characteristic_value_map (
9379     id              SERIAL  PRIMARY KEY,
9380     value           TEXT    NOT NULL,
9381     ptype_subfield  INT     NOT NULL REFERENCES config.marc21_physical_characteristic_subfield_map (id),
9382     label           TEXT    NOT NULL -- I18N
9383 );
9384
9385 ----------------------------------
9386 -- MARC21 record structure data --
9387 ----------------------------------
9388
9389 -- Record type map
9390 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm');
9391 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi');
9392 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi');
9393 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi');
9394 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi');
9395 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi');
9396 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi');
9397 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi');
9398
9399 ------ Physical Characteristics
9400
9401 -- Map
9402 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map');
9403 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD');
9404 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas');
9405 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram');
9406 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map');
9407 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile');
9408 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model');
9409 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');
9410 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section');
9411 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9412 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View');
9413 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9414 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color');
9415 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');
9416 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9417 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium');
9418 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9419 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9420 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9421 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9422 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9423 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9424 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9425 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9426 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');
9427 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');
9428 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');
9429 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');
9430 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9431 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');
9432 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9433 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction');
9434 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9435 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');
9436 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9437 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9438 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','g','6','1','Production/reproduction details');
9439 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');
9440 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy');
9441 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');
9442 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film');
9443 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9444 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9445 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative');
9446 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9447 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9448 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9449 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');
9450
9451 -- Electronic Resource
9452 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource');
9453 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD');
9454 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');
9455 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');
9456 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');
9457 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');
9458 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');
9459 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');
9460 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');
9461 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');
9462 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote');
9463 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9464 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9465 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color');
9466 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');
9467 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');
9468 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9469 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');
9470 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9471 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');
9472 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9473 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9474 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions');
9475 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.');
9476 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.');
9477 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.');
9478 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.');
9479 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.');
9480 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');
9481 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.');
9482 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9483 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.');
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 ('c','f','5','1','Sound');
9486 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)');
9487 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound');
9488 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9489 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth');
9490 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9491 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple');
9492 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');
9493 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats');
9494 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');
9495 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');
9496 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9497 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)');
9498 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent');
9499 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');
9500 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present');
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_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source');
9503 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');
9504 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');
9505 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');
9506 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)');
9507 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9508 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');
9509 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9510 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','k','12','1','Level of compression');
9511 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed');
9512 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless');
9513 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy');
9514 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9515 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9516 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality');
9517 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access');
9518 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');
9519 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation');
9520 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement');
9521 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9522
9523 -- Globe
9524 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe');
9525 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD');
9526 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');
9527 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');
9528 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');
9529 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');
9530 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9531 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9532 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','d','3','1','Color');
9533 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');
9534 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9535 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium');
9536 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9537 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9538 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9539 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9540 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9541 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9542 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9543 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9544 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9545 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9546 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction');
9547 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9548 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');
9549 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9550 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9551
9552 -- Tactile Material
9553 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material');
9554 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD');
9555 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon');
9556 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Braille');
9557 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9558 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');
9559 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9560 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9561 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing');
9562 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');
9563 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');
9564 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');
9565 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');
9566 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');
9567 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');
9568 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');
9569 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9570 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9571 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','e','4','1','Level of contraction');
9572 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted');
9573 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted');
9574 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9575 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');
9576 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9577 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9578 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format');
9579 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');
9580 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');
9581 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');
9582 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph');
9583 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');
9584 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');
9585 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');
9586 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');
9587 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');
9588 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');
9589 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline');
9590 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');
9591 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');
9592 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9593 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9594 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics');
9595 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');
9596 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');
9597 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');
9598 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9599 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9600
9601 -- Projected Graphic
9602 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic');
9603 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD');
9604 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');
9605 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip');
9606 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');
9607 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');
9608 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide');
9609 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency');
9610 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9611 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color');
9612 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');
9613 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9614 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');
9615 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9616 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');
9617 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9618 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9619 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion');
9620 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9621 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9622 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');
9623 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');
9624 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');
9625 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9626 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9627 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9628 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');
9629 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');
9630 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');
9631 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9632 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound');
9633 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');
9634 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');
9635 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');
9636 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');
9637 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');
9638 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');
9639 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');
9640 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9641 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9642 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9643 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9644 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions');
9645 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.');
9646 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.');
9647 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.');
9648 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.');
9649 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.');
9650 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.');
9651 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.');
9652 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.)');
9653 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.)');
9654 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.)');
9655 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.)');
9656 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9657 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.)');
9658 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.)');
9659 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.)');
9660 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.)');
9661 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9662 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','i','8','1','Secondary support material');
9663 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard');
9664 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9665 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9666 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal');
9667 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');
9668 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');
9669 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');
9670 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9671 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9672
9673 -- Microform
9674 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform');
9675 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD');
9676 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');
9677 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');
9678 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');
9679 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');
9680 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche');
9681 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');
9682 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque');
9683 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
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 ('h','d','3','1','Positive/negative');
9686 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9687 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9688 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9689 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9690 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions');
9691 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.');
9692 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.');
9693 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.');
9694 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.');
9695 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.');
9696 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.)');
9697 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.)');
9698 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.)');
9699 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.)');
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 ('h','f','5','4','Reduction ratio range/Reduction ratio');
9703 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)');
9704 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)');
9705 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)');
9706 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)');
9707 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-)');
9708 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9709 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');
9710 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color');
9711 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');
9712 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9713 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9714 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9715 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9716 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film');
9717 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');
9718 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo');
9719 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular');
9720 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9721 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');
9722 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9723 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9724 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)');
9725 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');
9726 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');
9727 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');
9728 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');
9729 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9730 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film');
9731 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');
9732 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');
9733 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');
9734 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');
9735 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');
9736 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');
9737 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');
9738 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');
9739 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');
9740 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9741 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9742
9743 -- Non-projected Graphic
9744 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic');
9745 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD');
9746 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage');
9747 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing');
9748 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting');
9749 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');
9750 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative');
9751 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint');
9752 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture');
9753 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print');
9754 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');
9755 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart');
9756 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');
9757 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9758 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9759 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color');
9760 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');
9761 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');
9762 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9763 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');
9764 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9765 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9766 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9767 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material');
9768 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9769 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');
9770 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');
9771 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9772 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9773 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9774 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9775 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9776 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');
9777 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9778 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9779 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9780 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9781 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9782 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9783 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9784 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9785 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','f','5','1','Secondary support material');
9786 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9787 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');
9788 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');
9789 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9790 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9791 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9792 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9793 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9794 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');
9795 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9796 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9797 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9798 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9799 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9800 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9801 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9802 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9803
9804 -- Motion Picture
9805 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture');
9806 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD');
9807 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');
9808 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');
9809 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');
9810 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9811 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9812 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','d','3','1','Color');
9813 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');
9814 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9815 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');
9816 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9817 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9818 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9819 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format');
9820 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');
9821 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)');
9822 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D');
9823 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)');
9824 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');
9825 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');
9826 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9827 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9828 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');
9829 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');
9830 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');
9831 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9832 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound');
9833 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');
9834 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');
9835 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');
9836 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');
9837 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');
9838 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');
9839 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');
9840 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9841 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9842 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9843 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9844 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions');
9845 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.');
9846 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.');
9847 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.');
9848 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.');
9849 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.');
9850 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.');
9851 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.');
9852 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9853 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9854 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','i','8','1','Configuration of playback channels');
9855 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9856 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9857 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');
9858 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');
9859 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9860 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9861 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9862 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','j','9','1','Production elements');
9863 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');
9864 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims');
9865 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes');
9866 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes');
9867 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');
9868 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');
9869 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');
9870 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');
9871 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9872
9873 -- Remote-sensing Image
9874 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image');
9875 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD');
9876 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9877 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude of sensor');
9878 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface');
9879 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne');
9880 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne');
9881 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');
9882 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9883 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9884 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','e','4','1','Attitude of sensor');
9885 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');
9886 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');
9887 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical');
9888 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');
9889 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9890 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover');
9891 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%');
9892 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%');
9893 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%');
9894 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%');
9895 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%');
9896 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%');
9897 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%');
9898 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%');
9899 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%');
9900 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%');
9901 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');
9902 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9903 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type');
9904 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon');
9905 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');
9906 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');
9907 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');
9908 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');
9909 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');
9910 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');
9911 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');
9912 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');
9913 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');
9914 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9915 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9916 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category');
9917 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological');
9918 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');
9919 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');
9920 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');
9921 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');
9922 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9923 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9924 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type');
9925 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active');
9926 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive');
9927 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9928 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9929 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type');
9930 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');
9931 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');
9932 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');
9933 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');
9934 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');
9935 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)');
9936 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');
9937 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations');
9938 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');
9939 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)');
9940 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)');
9941 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)');
9942 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');
9943 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');
9944 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');
9945 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');
9946 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');
9947 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');
9948 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');
9949 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');
9950 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');
9951 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');
9952 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');
9953 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');
9954 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');
9955 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');
9956 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');
9957 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');
9958 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');
9959 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');
9960 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');
9961 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');
9962 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');
9963 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)');
9964 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');
9965 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger');
9966 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic');
9967 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');
9968 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');
9969 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9970 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9971
9972 -- Sound Recording
9973 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording');
9974 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD');
9975 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');
9976 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder');
9977 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');
9978 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');
9979 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll');
9980 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');
9981 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');
9982 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9983 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');
9984 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9985 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed');
9986 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');
9987 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');
9988 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');
9989 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');
9990 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');
9991 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');
9992 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');
9993 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');
9994 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');
9995 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');
9996 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');
9997 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');
9998 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');
9999 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');
10000 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10001 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10002 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','e','4','1','Configuration of playback channels');
10003 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10004 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic');
10005 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10006 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10007 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10008 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','f','5','1','Groove width or pitch');
10009 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');
10010 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');
10011 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');
10012 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10013 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10014 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','g','6','1','Dimensions');
10015 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.');
10016 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.');
10017 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.');
10018 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.');
10019 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.');
10020 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.');
10021 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.)');
10022 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.');
10023 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');
10024 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.');
10025 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.');
10026 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10027 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10028 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width');
10029 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.');
10030 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.');
10031 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');
10032 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.');
10033 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.');
10034 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10035 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10036 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration ');
10037 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');
10038 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');
10039 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');
10040 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');
10041 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');
10042 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');
10043 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');
10044 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10045 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10046 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback');
10047 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');
10048 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');
10049 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');
10050 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');
10051 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');
10052 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');
10053 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');
10054 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');
10055 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');
10056 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10057 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10058 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage');
10059 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');
10060 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');
10061 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');
10062 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');
10063 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10064 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10065
10066 -- Videorecording
10067 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording');
10068 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD');
10069 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge');
10070 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10071 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette');
10072 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel');
10073 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
10074 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10075 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','d','3','1','Color');
10076 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');
10077 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
10078 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10079 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');
10080 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10081 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10082 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format');
10083 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta');
10084 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS');
10085 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');
10086 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ');
10087 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');
10088 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex');
10089 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc');
10090 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED');
10091 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam');
10092 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');
10093 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');
10094 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');
10095 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');
10096 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.');
10097 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.');
10098 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10099 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD');
10100 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10101 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');
10102 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');
10103 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');
10104 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10105 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound');
10106 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');
10107 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');
10108 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');
10109 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');
10110 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');
10111 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');
10112 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');
10113 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
10114 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
10115 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10116 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10117 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions');
10118 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.');
10119 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.');
10120 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.');
10121 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.');
10122 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.');
10123 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.');
10124 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10125 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10126 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel');
10127 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
10128 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
10129 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');
10130 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');
10131 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
10132 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
10133 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
10134
10135 -- Fixed Field position data -- 0-based!
10136 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' ');
10137 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' ');
10138 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' ');
10139 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' ');
10140 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' ');
10141 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' ');
10142 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SER', 5, 1, ' ');
10143 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' ');
10144 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' ');
10145 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' ');
10146 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' ');
10147 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' ');
10148 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SER', 22, 1, ' ');
10149 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' ');
10150 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm');
10151 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm');
10152 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm');
10153 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c');
10154 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm');
10155 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm');
10156 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's');
10157 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm');
10158 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' ');
10159 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' ');
10160 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 7, 4, ' ');
10161 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 8, 3, ' ');
10162 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 24, 4, ' ');
10163 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 25, 3, ' ');
10164 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' ');
10165 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' ');
10166 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' ');
10167 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' ');
10168 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' ');
10169 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' ');
10170 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' ');
10171 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' ');
10172 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' ');
10173 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' ');
10174 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' ');
10175 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' ');
10176 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' ');
10177 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' ');
10178 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' ');
10179 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' ');
10180 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' ');
10181 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' ');
10182 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' ');
10183 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' ');
10184 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' ');
10185 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' ');
10186 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' ');
10187 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' ');
10188 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' ');
10189 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' ');
10190 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' ');
10191 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' ');
10192 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' ');
10193 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' ');
10194 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9');
10195 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' ');
10196 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' ');
10197 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' ');
10198 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' ');
10199 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' ');
10200 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' ');
10201 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' ');
10202 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' ');
10203 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' ');
10204 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' ');
10205 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' ');
10206 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' ');
10207 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' ');
10208 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' ');
10209 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' ');
10210 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c');
10211 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' ');
10212 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' ');
10213 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' ');
10214 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' ');
10215 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' ');
10216 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' ');
10217 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' ');
10218 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' ');
10219 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' ');
10220 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0');
10221 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0');
10222 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' ');
10223 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' ');
10224 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' ');
10225 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' ');
10226 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' ');
10227 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' ');
10228 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' ');
10229 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' ');
10230 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' ');
10231 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' ');
10232 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' ');
10233 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' ');
10234 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' ');
10235 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' ');
10236 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' ');
10237 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' ');
10238 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' ');
10239 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' ');
10240 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' ');
10241 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' ');
10242 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' ');
10243 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' ');
10244 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' ');
10245 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' ');
10246 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' ');
10247 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' ');
10248 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0');
10249 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0');
10250 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0');
10251 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0');
10252 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' ');
10253 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' ');
10254 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' ');
10255 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' ');
10256 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' ');
10257 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' ');
10258 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' ');
10259 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' ');
10260 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0');
10261 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0');
10262 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' ');
10263 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' ');
10264 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' ');
10265 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' ');
10266 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' ');
10267 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' ');
10268 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' ');
10269 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' ');
10270 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');
10271 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');
10272 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' ');
10273 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' ');
10274 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a');
10275 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm');
10276 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e');
10277 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p');
10278 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i');
10279 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c');
10280 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a');
10281 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g');
10282
10283 CREATE OR REPLACE FUNCTION biblio.marc21_record_type( rid BIGINT ) RETURNS config.marc21_rec_type_map AS $func$
10284 DECLARE
10285         ldr         RECORD;
10286         tval        TEXT;
10287         tval_rec    RECORD;
10288         bval        TEXT;
10289         bval_rec    RECORD;
10290     retval      config.marc21_rec_type_map%ROWTYPE;
10291 BEGIN
10292     SELECT * INTO ldr FROM metabib.full_rec WHERE record = rid AND tag = 'LDR' LIMIT 1;
10293
10294     IF ldr.id IS NULL THEN
10295         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10296         RETURN retval;
10297     END IF;
10298
10299     SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10300     SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10301
10302
10303     tval := SUBSTRING( ldr.value, tval_rec.start_pos + 1, tval_rec.length );
10304     bval := SUBSTRING( ldr.value, bval_rec.start_pos + 1, bval_rec.length );
10305
10306     -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr.value;
10307
10308     SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10309
10310
10311     IF retval.code IS NULL THEN
10312         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10313     END IF;
10314
10315     RETURN retval;
10316 END;
10317 $func$ LANGUAGE PLPGSQL;
10318
10319 CREATE OR REPLACE FUNCTION biblio.marc21_extract_fixed_field( rid BIGINT, ff TEXT ) RETURNS TEXT AS $func$
10320 DECLARE
10321     rtype       TEXT;
10322     ff_pos      RECORD;
10323     tag_data    RECORD;
10324     val         TEXT;
10325 BEGIN
10326     rtype := (biblio.marc21_record_type( rid )).code;
10327     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP
10328         FOR tag_data IN SELECT * FROM metabib.full_rec WHERE tag = UPPER(ff_pos.tag) AND record = rid LOOP
10329             val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
10330             RETURN val;
10331         END LOOP;
10332         val := REPEAT( ff_pos.default_val, ff_pos.length );
10333         RETURN val;
10334     END LOOP;
10335
10336     RETURN NULL;
10337 END;
10338 $func$ LANGUAGE PLPGSQL;
10339
10340 CREATE TYPE biblio.marc21_physical_characteristics AS ( id INT, record BIGINT, ptype TEXT, subfield INT, value INT );
10341 CREATE OR REPLACE FUNCTION biblio.marc21_physical_characteristics( rid BIGINT ) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
10342 DECLARE
10343     rowid   INT := 0;
10344     _007    RECORD;
10345     ptype   config.marc21_physical_characteristic_type_map%ROWTYPE;
10346     psf     config.marc21_physical_characteristic_subfield_map%ROWTYPE;
10347     pval    config.marc21_physical_characteristic_value_map%ROWTYPE;
10348     retval  biblio.marc21_physical_characteristics%ROWTYPE;
10349 BEGIN
10350
10351     SELECT * INTO _007 FROM metabib.full_rec WHERE record = rid AND tag = '007' LIMIT 1;
10352
10353     IF _007.id IS NOT NULL THEN
10354         SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007.value, 1, 1 );
10355
10356         IF ptype.ptype_key IS NOT NULL THEN
10357             FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP
10358                 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 );
10359
10360                 IF pval.id IS NOT NULL THEN
10361                     rowid := rowid + 1;
10362                     retval.id := rowid;
10363                     retval.record := rid;
10364                     retval.ptype := ptype.ptype_key;
10365                     retval.subfield := psf.id;
10366                     retval.value := pval.id;
10367                     RETURN NEXT retval;
10368                 END IF;
10369
10370             END LOOP;
10371         END IF;
10372     END IF;
10373
10374     RETURN;
10375 END;
10376 $func$ LANGUAGE PLPGSQL;
10377
10378 DROP VIEW IF EXISTS money.open_usr_circulation_summary;
10379 DROP VIEW IF EXISTS money.open_usr_summary;
10380 DROP VIEW IF EXISTS money.open_billable_xact_summary;
10381
10382 -- The view should supply defaults for numeric (amount) columns
10383 CREATE OR REPLACE VIEW money.billable_xact_summary AS
10384     SELECT  xact.id,
10385         xact.usr,
10386         xact.xact_start,
10387         xact.xact_finish,
10388         COALESCE(credit.amount, 0.0::numeric) AS total_paid,
10389         credit.payment_ts AS last_payment_ts,
10390         credit.note AS last_payment_note,
10391         credit.payment_type AS last_payment_type,
10392         COALESCE(debit.amount, 0.0::numeric) AS total_owed,
10393         debit.billing_ts AS last_billing_ts,
10394         debit.note AS last_billing_note,
10395         debit.billing_type AS last_billing_type,
10396         COALESCE(debit.amount, 0.0::numeric) - COALESCE(credit.amount, 0.0::numeric) AS balance_owed,
10397         p.relname AS xact_type
10398       FROM  money.billable_xact xact
10399         JOIN pg_class p ON xact.tableoid = p.oid
10400         LEFT JOIN (
10401             SELECT  billing.xact,
10402                 sum(billing.amount) AS amount,
10403                 max(billing.billing_ts) AS billing_ts,
10404                 last(billing.note) AS note,
10405                 last(billing.billing_type) AS billing_type
10406               FROM  money.billing
10407               WHERE billing.voided IS FALSE
10408               GROUP BY billing.xact
10409             ) debit ON xact.id = debit.xact
10410         LEFT JOIN (
10411             SELECT  payment_view.xact,
10412                 sum(payment_view.amount) AS amount,
10413                 max(payment_view.payment_ts) AS payment_ts,
10414                 last(payment_view.note) AS note,
10415                 last(payment_view.payment_type) AS payment_type
10416               FROM  money.payment_view
10417               WHERE payment_view.voided IS FALSE
10418               GROUP BY payment_view.xact
10419             ) credit ON xact.id = credit.xact
10420       ORDER BY debit.billing_ts, credit.payment_ts;
10421
10422 CREATE OR REPLACE VIEW money.open_billable_xact_summary AS 
10423     SELECT * FROM money.billable_xact_summary_location_view
10424     WHERE xact_finish IS NULL;
10425
10426 CREATE OR REPLACE VIEW money.open_usr_circulation_summary AS
10427     SELECT 
10428         usr,
10429         SUM(total_paid) AS total_paid,
10430         SUM(total_owed) AS total_owed,
10431         SUM(balance_owed) AS balance_owed
10432     FROM  money.materialized_billable_xact_summary
10433     WHERE xact_type = 'circulation' AND xact_finish IS NULL
10434     GROUP BY usr;
10435
10436 CREATE OR REPLACE VIEW money.usr_summary AS
10437     SELECT 
10438         usr, 
10439         sum(total_paid) AS total_paid, 
10440         sum(total_owed) AS total_owed, 
10441         sum(balance_owed) AS balance_owed
10442     FROM money.materialized_billable_xact_summary
10443     GROUP BY usr;
10444
10445 CREATE OR REPLACE VIEW money.open_usr_summary AS
10446     SELECT 
10447         usr, 
10448         sum(total_paid) AS total_paid, 
10449         sum(total_owed) AS total_owed, 
10450         sum(balance_owed) AS balance_owed
10451     FROM money.materialized_billable_xact_summary
10452     WHERE xact_finish IS NULL
10453     GROUP BY usr;
10454
10455 -- 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;
10456
10457 CREATE TABLE config.biblio_fingerprint (
10458         id                      SERIAL  PRIMARY KEY,
10459         name            TEXT    NOT NULL, 
10460         xpath           TEXT    NOT NULL,
10461     first_word  BOOL    NOT NULL DEFAULT FALSE,
10462         format          TEXT    NOT NULL DEFAULT 'marcxml'
10463 );
10464
10465 INSERT INTO config.biblio_fingerprint (name, xpath, format)
10466     VALUES (
10467         'Title',
10468         '//marc:datafield[@tag="700"]/marc:subfield[@code="t"]|' ||
10469             '//marc:datafield[@tag="240"]/marc:subfield[@code="a"]|' ||
10470             '//marc:datafield[@tag="242"]/marc:subfield[@code="a"]|' ||
10471             '//marc:datafield[@tag="246"]/marc:subfield[@code="a"]|' ||
10472             '//marc:datafield[@tag="245"]/marc:subfield[@code="a"]',
10473         'marcxml'
10474     );
10475
10476 INSERT INTO config.biblio_fingerprint (name, xpath, format, first_word)
10477     VALUES (
10478         'Author',
10479         '//marc:datafield[@tag="700" and ./*[@code="t"]]/marc:subfield[@code="a"]|'
10480             '//marc:datafield[@tag="100"]/marc:subfield[@code="a"]|'
10481             '//marc:datafield[@tag="110"]/marc:subfield[@code="a"]|'
10482             '//marc:datafield[@tag="111"]/marc:subfield[@code="a"]|'
10483             '//marc:datafield[@tag="260"]/marc:subfield[@code="b"]',
10484         'marcxml',
10485         TRUE
10486     );
10487
10488 CREATE OR REPLACE FUNCTION biblio.extract_quality ( marc TEXT, best_lang TEXT, best_type TEXT ) RETURNS INT AS $func$
10489 DECLARE
10490     qual        INT;
10491     ldr         TEXT;
10492     tval        TEXT;
10493     tval_rec    RECORD;
10494     bval        TEXT;
10495     bval_rec    RECORD;
10496     type_map    RECORD;
10497     ff_pos      RECORD;
10498     ff_tag_data TEXT;
10499 BEGIN
10500
10501     IF marc IS NULL OR marc = '' THEN
10502         RETURN NULL;
10503     END IF;
10504
10505     -- First, the count of tags
10506     qual := ARRAY_UPPER(oils_xpath('*[local-name()="datafield"]', marc), 1);
10507
10508     -- now go through a bunch of pain to get the record type
10509     IF best_type IS NOT NULL THEN
10510         ldr := (oils_xpath('//*[local-name()="leader"]/text()', marc))[1];
10511
10512         IF ldr IS NOT NULL THEN
10513             SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10514             SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10515
10516
10517             tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length );
10518             bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length );
10519
10520             -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr;
10521
10522             SELECT * INTO type_map FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10523
10524             IF type_map.code IS NOT NULL THEN
10525                 IF best_type = type_map.code THEN
10526                     qual := qual + qual / 2;
10527                 END IF;
10528
10529                 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
10530                     ff_tag_data := SUBSTRING((oils_xpath('//*[@tag="' || ff_pos.tag || '"]/text()',marc))[1], ff_pos.start_pos + 1, ff_pos.length);
10531                     IF ff_tag_data = best_lang THEN
10532                             qual := qual + 100;
10533                     END IF;
10534                 END LOOP;
10535             END IF;
10536         END IF;
10537     END IF;
10538
10539     -- Now look for some quality metrics
10540     -- DCL record?
10541     IF ARRAY_UPPER(oils_xpath('//*[@tag="040"]/*[@code="a" and contains(.,"DLC")]', marc), 1) = 1 THEN
10542         qual := qual + 10;
10543     END IF;
10544
10545     -- From OCLC?
10546     IF (oils_xpath('//*[@tag="003"]/text()', marc))[1] ~* E'oclo?c' THEN
10547         qual := qual + 10;
10548     END IF;
10549
10550     RETURN qual;
10551
10552 END;
10553 $func$ LANGUAGE PLPGSQL;
10554
10555 CREATE OR REPLACE FUNCTION biblio.extract_fingerprint ( marc text ) RETURNS TEXT AS $func$
10556 DECLARE
10557     idx     config.biblio_fingerprint%ROWTYPE;
10558     xfrm        config.xml_transform%ROWTYPE;
10559     prev_xfrm   TEXT;
10560     transformed_xml TEXT;
10561     xml_node    TEXT;
10562     xml_node_list   TEXT[];
10563     raw_text    TEXT;
10564     output_text TEXT := '';
10565 BEGIN
10566
10567     IF marc IS NULL OR marc = '' THEN
10568         RETURN NULL;
10569     END IF;
10570
10571     -- Loop over the indexing entries
10572     FOR idx IN SELECT * FROM config.biblio_fingerprint ORDER BY format, id LOOP
10573
10574         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
10575
10576         -- See if we can skip the XSLT ... it's expensive
10577         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
10578             -- Can't skip the transform
10579             IF xfrm.xslt <> '---' THEN
10580                 transformed_xml := oils_xslt_process(marc,xfrm.xslt);
10581             ELSE
10582                 transformed_xml := marc;
10583             END IF;
10584
10585             prev_xfrm := xfrm.name;
10586         END IF;
10587
10588         raw_text := COALESCE(
10589             naco_normalize(
10590                 ARRAY_TO_STRING(
10591                     oils_xpath(
10592                         '//text()',
10593                         (oils_xpath(
10594                             idx.xpath,
10595                             transformed_xml,
10596                             ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]
10597                         ))[1]
10598                     ),
10599                     ''
10600                 )
10601             ),
10602             ''
10603         );
10604
10605         raw_text := REGEXP_REPLACE(raw_text, E'\\[.+?\\]', E'');
10606         raw_text := REGEXP_REPLACE(raw_text, E'\\mthe\\M|\\man?d?d\\M', E'', 'g'); -- arg! the pain!
10607
10608         IF idx.first_word IS TRUE THEN
10609             raw_text := REGEXP_REPLACE(raw_text, E'^(\\w+).*?$', E'\\1');
10610         END IF;
10611
10612         output_text := output_text || REGEXP_REPLACE(raw_text, E'\\s+', '', 'g');
10613
10614     END LOOP;
10615
10616     RETURN output_text;
10617
10618 END;
10619 $func$ LANGUAGE PLPGSQL;
10620
10621 -- BEFORE UPDATE OR INSERT trigger for biblio.record_entry
10622 CREATE OR REPLACE FUNCTION biblio.fingerprint_trigger () RETURNS TRIGGER AS $func$
10623 BEGIN
10624
10625     -- For TG_ARGV, first param is language (like 'eng'), second is record type (like 'BKS')
10626
10627     IF NEW.deleted IS TRUE THEN -- we don't much care, then, do we?
10628         RETURN NEW;
10629     END IF;
10630
10631     NEW.fingerprint := biblio.extract_fingerprint(NEW.marc);
10632     NEW.quality := biblio.extract_quality(NEW.marc, TG_ARGV[0], TG_ARGV[1]);
10633
10634     RETURN NEW;
10635
10636 END;
10637 $func$ LANGUAGE PLPGSQL;
10638
10639 CREATE TABLE config.internal_flag (
10640     name    TEXT    PRIMARY KEY,
10641     value   TEXT,
10642     enabled BOOL    NOT NULL DEFAULT FALSE
10643 );
10644 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_insert');
10645 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.force_on_same_marc');
10646 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.skip_located_uri');
10647 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_located_uri');
10648 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_full_rec');
10649 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_rec_descriptor');
10650 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_field_entry');
10651 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_authority_linking');
10652 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_update');
10653 INSERT INTO config.internal_flag (name) VALUES ('ingest.assume_inserts_only');
10654
10655 CREATE TABLE authority.bib_linking (
10656     id          BIGSERIAL   PRIMARY KEY,
10657     bib         BIGINT      NOT NULL REFERENCES biblio.record_entry (id),
10658     authority   BIGINT      NOT NULL REFERENCES authority.record_entry (id)
10659 );
10660 CREATE INDEX authority_bl_bib_idx ON authority.bib_linking ( bib );
10661 CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON authority.bib_linking ( authority, bib );
10662
10663 CREATE OR REPLACE FUNCTION public.remove_paren_substring( TEXT ) RETURNS TEXT AS $func$
10664     SELECT regexp_replace($1, $$\([^)]+\)$$, '', 'g');
10665 $func$ LANGUAGE SQL STRICT IMMUTABLE;
10666
10667 CREATE OR REPLACE FUNCTION biblio.map_authority_linking (bibid BIGINT, marc TEXT) RETURNS BIGINT AS $func$
10668     DELETE FROM authority.bib_linking WHERE bib = $1;
10669     INSERT INTO authority.bib_linking (bib, authority)
10670         SELECT  y.bib,
10671                 y.authority
10672           FROM (    SELECT  DISTINCT $1 AS bib,
10673                             BTRIM(remove_paren_substring(txt))::BIGINT AS authority
10674                       FROM  explode_array(oils_xpath('//*[@code="0"]/text()',$2)) x(txt)
10675                       WHERE BTRIM(remove_paren_substring(txt)) ~ $re$^\d+$$re$
10676                 ) y JOIN authority.record_entry r ON r.id = y.authority;
10677     SELECT $1;
10678 $func$ LANGUAGE SQL;
10679
10680 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_rec_descriptor( bib_id BIGINT ) RETURNS VOID AS $func$
10681 BEGIN
10682     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10683     IF NOT FOUND THEN
10684         DELETE FROM metabib.rec_descriptor WHERE record = bib_id;
10685     END IF;
10686     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)
10687         SELECT  bib_id,
10688                 biblio.marc21_extract_fixed_field( bib_id, 'Type' ),
10689                 biblio.marc21_extract_fixed_field( bib_id, 'Form' ),
10690                 biblio.marc21_extract_fixed_field( bib_id, 'BLvl' ),
10691                 biblio.marc21_extract_fixed_field( bib_id, 'Ctrl' ),
10692                 biblio.marc21_extract_fixed_field( bib_id, 'ELvl' ),
10693                 biblio.marc21_extract_fixed_field( bib_id, 'Audn' ),
10694                 biblio.marc21_extract_fixed_field( bib_id, 'LitF' ),
10695                 biblio.marc21_extract_fixed_field( bib_id, 'TMat' ),
10696                 biblio.marc21_extract_fixed_field( bib_id, 'Desc' ),
10697                 biblio.marc21_extract_fixed_field( bib_id, 'DtSt' ),
10698                 biblio.marc21_extract_fixed_field( bib_id, 'Lang' ),
10699                 (   SELECT  v.value
10700                       FROM  biblio.marc21_physical_characteristics( bib_id) p
10701                             JOIN config.marc21_physical_characteristic_subfield_map s ON (s.id = p.subfield)
10702                             JOIN config.marc21_physical_characteristic_value_map v ON (v.id = p.value)
10703                       WHERE p.ptype = 'v' AND s.subfield = 'e'    ),
10704                 LPAD(NULLIF(REGEXP_REPLACE(NULLIF(biblio.marc21_extract_fixed_field( bib_id, 'Date1'), ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
10705                 LPAD(NULLIF(REGEXP_REPLACE(NULLIF(biblio.marc21_extract_fixed_field( bib_id, 'Date2'), ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
10706
10707     RETURN;
10708 END;
10709 $func$ LANGUAGE PLPGSQL;
10710
10711 CREATE TABLE config.metabib_class (
10712     name    TEXT    PRIMARY KEY,
10713     label   TEXT    NOT NULL UNIQUE
10714 );
10715
10716 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
10717 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') );
10718 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') );
10719 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
10720 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
10721
10722 CREATE TABLE metabib.facet_entry (
10723         id              BIGSERIAL       PRIMARY KEY,
10724         source          BIGINT          NOT NULL,
10725         field           INT             NOT NULL,
10726         value           TEXT            NOT NULL
10727 );
10728
10729 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_field_entries( bib_id BIGINT ) RETURNS VOID AS $func$
10730 DECLARE
10731     fclass          RECORD;
10732     ind_data        metabib.field_entry_template%ROWTYPE;
10733 BEGIN
10734     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10735     IF NOT FOUND THEN
10736         FOR fclass IN SELECT * FROM config.metabib_class LOOP
10737             -- RAISE NOTICE 'Emptying out %', fclass.name;
10738             EXECUTE $$DELETE FROM metabib.$$ || fclass.name || $$_field_entry WHERE source = $$ || bib_id;
10739         END LOOP;
10740         DELETE FROM metabib.facet_entry WHERE source = bib_id;
10741     END IF;
10742
10743     FOR ind_data IN SELECT * FROM biblio.extract_metabib_field_entry( bib_id ) LOOP
10744         IF ind_data.field < 0 THEN
10745             ind_data.field = -1 * ind_data.field;
10746             INSERT INTO metabib.facet_entry (field, source, value)
10747                 VALUES (ind_data.field, ind_data.source, ind_data.value);
10748         ELSE
10749             EXECUTE $$
10750                 INSERT INTO metabib.$$ || ind_data.field_class || $$_field_entry (field, source, value)
10751                     VALUES ($$ ||
10752                         quote_literal(ind_data.field) || $$, $$ ||
10753                         quote_literal(ind_data.source) || $$, $$ ||
10754                         quote_literal(ind_data.value) ||
10755                     $$);$$;
10756         END IF;
10757
10758     END LOOP;
10759
10760     RETURN;
10761 END;
10762 $func$ LANGUAGE PLPGSQL;
10763
10764 CREATE OR REPLACE FUNCTION biblio.extract_located_uris( bib_id BIGINT, marcxml TEXT, editor_id INT ) RETURNS VOID AS $func$
10765 DECLARE
10766     uris            TEXT[];
10767     uri_xml         TEXT;
10768     uri_label       TEXT;
10769     uri_href        TEXT;
10770     uri_use         TEXT;
10771     uri_owner       TEXT;
10772     uri_owner_id    INT;
10773     uri_id          INT;
10774     uri_cn_id       INT;
10775     uri_map_id      INT;
10776 BEGIN
10777
10778     uris := oils_xpath('//*[@tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]',marcxml);
10779     IF ARRAY_UPPER(uris,1) > 0 THEN
10780         FOR i IN 1 .. ARRAY_UPPER(uris, 1) LOOP
10781             -- First we pull info out of the 856
10782             uri_xml     := uris[i];
10783
10784             uri_href    := (oils_xpath('//*[@code="u"]/text()',uri_xml))[1];
10785             CONTINUE WHEN uri_href IS NULL;
10786
10787             uri_label   := (oils_xpath('//*[@code="y"]/text()|//*[@code="3"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10788             CONTINUE WHEN uri_label IS NULL;
10789
10790             uri_owner   := (oils_xpath('//*[@code="9"]/text()|//*[@code="w"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10791             CONTINUE WHEN uri_owner IS NULL;
10792
10793             uri_use     := (oils_xpath('//*[@code="z"]/text()|//*[@code="2"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10794
10795             uri_owner := REGEXP_REPLACE(uri_owner, $re$^.*?\((\w+)\).*$$re$, E'\\1');
10796
10797             SELECT id INTO uri_owner_id FROM actor.org_unit WHERE shortname = uri_owner;
10798             CONTINUE WHEN NOT FOUND;
10799
10800             -- now we look for a matching uri
10801             SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10802             IF NOT FOUND THEN -- create one
10803                 INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use);
10804                 SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10805             END IF;
10806
10807             -- we need a call number to link through
10808             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;
10809             IF NOT FOUND THEN
10810                 INSERT INTO asset.call_number (owning_lib, record, create_date, edit_date, creator, editor, label)
10811                     VALUES (uri_owner_id, bib_id, 'now', 'now', editor_id, editor_id, '##URI##');
10812                 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;
10813             END IF;
10814
10815             -- now, link them if they're not already
10816             SELECT id INTO uri_map_id FROM asset.uri_call_number_map WHERE call_number = uri_cn_id AND uri = uri_id;
10817             IF NOT FOUND THEN
10818                 INSERT INTO asset.uri_call_number_map (call_number, uri) VALUES (uri_cn_id, uri_id);
10819             END IF;
10820
10821         END LOOP;
10822     END IF;
10823
10824     RETURN;
10825 END;
10826 $func$ LANGUAGE PLPGSQL;
10827
10828 CREATE OR REPLACE FUNCTION metabib.remap_metarecord_for_bib( bib_id BIGINT, fp TEXT ) RETURNS BIGINT AS $func$
10829 DECLARE
10830     source_count    INT;
10831     old_mr          BIGINT;
10832     tmp_mr          metabib.metarecord%ROWTYPE;
10833     deleted_mrs     BIGINT[];
10834 BEGIN
10835
10836     DELETE FROM metabib.metarecord_source_map WHERE source = bib_id; -- Rid ourselves of the search-estimate-killing linkage
10837
10838     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
10839
10840         IF old_mr IS NULL AND fp = tmp_mr.fingerprint THEN -- Find the first fingerprint-matching
10841             old_mr := tmp_mr.id;
10842         ELSE
10843             SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = tmp_mr.id;
10844             IF source_count = 0 THEN -- No other records
10845                 deleted_mrs := ARRAY_APPEND(deleted_mrs, tmp_mr.id);
10846                 DELETE FROM metabib.metarecord WHERE id = tmp_mr.id;
10847             END IF;
10848         END IF;
10849
10850     END LOOP;
10851
10852     IF old_mr IS NULL THEN -- we found no suitable, preexisting MR based on old source maps
10853         SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; -- is there one for our current fingerprint?
10854         IF old_mr IS NULL THEN -- nope, create one and grab its id
10855             INSERT INTO metabib.metarecord ( fingerprint, master_record ) VALUES ( fp, bib_id );
10856             SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp;
10857         ELSE -- indeed there is. update it with a null cache and recalcualated master record
10858             UPDATE  metabib.metarecord
10859               SET   mods = NULL,
10860                     master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
10861               WHERE id = old_mr;
10862         END IF;
10863     ELSE -- there was one we already attached to, update its mods cache and master_record
10864         UPDATE  metabib.metarecord
10865           SET   mods = NULL,
10866                 master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
10867           WHERE id = old_mr;
10868     END IF;
10869
10870     INSERT INTO metabib.metarecord_source_map (metarecord, source) VALUES (old_mr, bib_id); -- new source mapping
10871
10872     IF ARRAY_UPPER(deleted_mrs,1) > 0 THEN
10873         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
10874     END IF;
10875
10876     RETURN old_mr;
10877
10878 END;
10879 $func$ LANGUAGE PLPGSQL;
10880
10881 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_full_rec( bib_id BIGINT ) RETURNS VOID AS $func$
10882 BEGIN
10883     PERFORM * FROM config.internal_flag WHERE name = 'ingest.assume_inserts_only' AND enabled;
10884     IF NOT FOUND THEN
10885         DELETE FROM metabib.real_full_rec WHERE record = bib_id;
10886     END IF;
10887     INSERT INTO metabib.real_full_rec (record, tag, ind1, ind2, subfield, value)
10888         SELECT record, tag, ind1, ind2, subfield, value FROM biblio.flatten_marc( bib_id );
10889
10890     RETURN;
10891 END;
10892 $func$ LANGUAGE PLPGSQL;
10893
10894 -- AFTER UPDATE OR INSERT trigger for biblio.record_entry
10895 CREATE OR REPLACE FUNCTION biblio.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
10896 BEGIN
10897
10898     IF NEW.deleted IS TRUE THEN -- If this bib is deleted
10899         DELETE FROM metabib.metarecord_source_map WHERE source = NEW.id; -- Rid ourselves of the search-estimate-killing linkage
10900         DELETE FROM authority.bib_linking WHERE bib = NEW.id; -- Avoid updating fields in bibs that are no longer visible
10901         RETURN NEW; -- and we're done
10902     END IF;
10903
10904     IF TG_OP = 'UPDATE' THEN -- re-ingest?
10905         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
10906
10907         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
10908             RETURN NEW;
10909         END IF;
10910     END IF;
10911
10912     -- Record authority linking
10913     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled;
10914     IF NOT FOUND THEN
10915         PERFORM biblio.map_authority_linking( NEW.id, NEW.marc );
10916     END IF;
10917
10918     -- Flatten and insert the mfr data
10919     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled;
10920     IF NOT FOUND THEN
10921         PERFORM metabib.reingest_metabib_full_rec(NEW.id);
10922         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled;
10923         IF NOT FOUND THEN
10924             PERFORM metabib.reingest_metabib_rec_descriptor(NEW.id);
10925         END IF;
10926     END IF;
10927
10928     -- Gather and insert the field entry data
10929     PERFORM metabib.reingest_metabib_field_entries(NEW.id);
10930
10931     -- Located URI magic
10932     IF TG_OP = 'INSERT' THEN
10933         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
10934         IF NOT FOUND THEN
10935             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
10936         END IF;
10937     ELSE
10938         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
10939         IF NOT FOUND THEN
10940             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
10941         END IF;
10942     END IF;
10943
10944     -- (re)map metarecord-bib linking
10945     IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag
10946         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled;
10947         IF NOT FOUND THEN
10948             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
10949         END IF;
10950     ELSE -- we're doing an update, and we're not deleted, remap
10951         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_update' AND enabled;
10952         IF NOT FOUND THEN
10953             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
10954         END IF;
10955     END IF;
10956
10957     RETURN NEW;
10958 END;
10959 $func$ LANGUAGE PLPGSQL;
10960
10961 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
10962 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 ();
10963
10964 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_rec_delete_tgr ON biblio.record_entry;
10965
10966 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT ) RETURNS SETOF RECORD AS $func$
10967 DECLARE
10968     xpath_list  TEXT[];
10969     select_list TEXT[];
10970     where_list  TEXT[];
10971     q           TEXT;
10972     out_record  RECORD;
10973     empty_test  RECORD;
10974 BEGIN
10975     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
10976  
10977     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
10978  
10979     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
10980         IF xpath_list[i] = 'null()' THEN
10981             select_list := ARRAY_APPEND( select_list, 'NULL::TEXT AS c_' || i );
10982         ELSE
10983             select_list := ARRAY_APPEND(
10984                 select_list,
10985                 $sel$
10986                 EXPLODE_ARRAY(
10987                     COALESCE(
10988                         NULLIF(
10989                             oils_xpath(
10990                                 $sel$ ||
10991                                     quote_literal(
10992                                         CASE
10993                                             WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
10994                                             ELSE xpath_list[i] || '//text()'
10995                                         END
10996                                     ) ||
10997                                 $sel$,
10998                                 $sel$ || document_field || $sel$
10999                             ),
11000                            '{}'::TEXT[]
11001                         ),
11002                         '{NULL}'::TEXT[]
11003                     )
11004                 ) AS c_$sel$ || i
11005             );
11006             where_list := ARRAY_APPEND(
11007                 where_list,
11008                 'c_' || i || ' IS NOT NULL'
11009             );
11010         END IF;
11011     END LOOP;
11012  
11013     q := $q$
11014 SELECT * FROM (
11015     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
11016 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' AND ' );
11017     -- RAISE NOTICE 'query: %', q;
11018  
11019     FOR out_record IN EXECUTE q LOOP
11020         RETURN NEXT out_record;
11021     END LOOP;
11022  
11023     RETURN;
11024 END;
11025 $func$ LANGUAGE PLPGSQL IMMUTABLE;
11026
11027 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
11028 DECLARE
11029
11030     owning_lib      TEXT;
11031     circ_lib        TEXT;
11032     call_number     TEXT;
11033     copy_number     TEXT;
11034     status          TEXT;
11035     location        TEXT;
11036     circulate       TEXT;
11037     deposit         TEXT;
11038     deposit_amount  TEXT;
11039     ref             TEXT;
11040     holdable        TEXT;
11041     price           TEXT;
11042     barcode         TEXT;
11043     circ_modifier   TEXT;
11044     circ_as_type    TEXT;
11045     alert_message   TEXT;
11046     opac_visible    TEXT;
11047     pub_note        TEXT;
11048     priv_note       TEXT;
11049
11050     attr_def        RECORD;
11051     tmp_attr_set    RECORD;
11052     attr_set        vandelay.import_item%ROWTYPE;
11053
11054     xpath           TEXT;
11055
11056 BEGIN
11057
11058     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
11059
11060     IF FOUND THEN
11061
11062         attr_set.definition := attr_def.id; 
11063     
11064         -- Build the combined XPath
11065     
11066         owning_lib :=
11067             CASE
11068                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
11069                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
11070                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
11071             END;
11072     
11073         circ_lib :=
11074             CASE
11075                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
11076                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
11077                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
11078             END;
11079     
11080         call_number :=
11081             CASE
11082                 WHEN attr_def.call_number IS NULL THEN 'null()'
11083                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
11084                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
11085             END;
11086     
11087         copy_number :=
11088             CASE
11089                 WHEN attr_def.copy_number IS NULL THEN 'null()'
11090                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
11091                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
11092             END;
11093     
11094         status :=
11095             CASE
11096                 WHEN attr_def.status IS NULL THEN 'null()'
11097                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
11098                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
11099             END;
11100     
11101         location :=
11102             CASE
11103                 WHEN attr_def.location IS NULL THEN 'null()'
11104                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
11105                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
11106             END;
11107     
11108         circulate :=
11109             CASE
11110                 WHEN attr_def.circulate IS NULL THEN 'null()'
11111                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
11112                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
11113             END;
11114     
11115         deposit :=
11116             CASE
11117                 WHEN attr_def.deposit IS NULL THEN 'null()'
11118                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
11119                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
11120             END;
11121     
11122         deposit_amount :=
11123             CASE
11124                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
11125                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
11126                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
11127             END;
11128     
11129         ref :=
11130             CASE
11131                 WHEN attr_def.ref IS NULL THEN 'null()'
11132                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
11133                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
11134             END;
11135     
11136         holdable :=
11137             CASE
11138                 WHEN attr_def.holdable IS NULL THEN 'null()'
11139                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
11140                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
11141             END;
11142     
11143         price :=
11144             CASE
11145                 WHEN attr_def.price IS NULL THEN 'null()'
11146                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
11147                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
11148             END;
11149     
11150         barcode :=
11151             CASE
11152                 WHEN attr_def.barcode IS NULL THEN 'null()'
11153                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
11154                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
11155             END;
11156     
11157         circ_modifier :=
11158             CASE
11159                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
11160                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
11161                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
11162             END;
11163     
11164         circ_as_type :=
11165             CASE
11166                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
11167                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
11168                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
11169             END;
11170     
11171         alert_message :=
11172             CASE
11173                 WHEN attr_def.alert_message IS NULL THEN 'null()'
11174                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
11175                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
11176             END;
11177     
11178         opac_visible :=
11179             CASE
11180                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
11181                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
11182                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
11183             END;
11184
11185         pub_note :=
11186             CASE
11187                 WHEN attr_def.pub_note IS NULL THEN 'null()'
11188                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
11189                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
11190             END;
11191         priv_note :=
11192             CASE
11193                 WHEN attr_def.priv_note IS NULL THEN 'null()'
11194                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
11195                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
11196             END;
11197     
11198     
11199         xpath := 
11200             owning_lib      || '|' || 
11201             circ_lib        || '|' || 
11202             call_number     || '|' || 
11203             copy_number     || '|' || 
11204             status          || '|' || 
11205             location        || '|' || 
11206             circulate       || '|' || 
11207             deposit         || '|' || 
11208             deposit_amount  || '|' || 
11209             ref             || '|' || 
11210             holdable        || '|' || 
11211             price           || '|' || 
11212             barcode         || '|' || 
11213             circ_modifier   || '|' || 
11214             circ_as_type    || '|' || 
11215             alert_message   || '|' || 
11216             pub_note        || '|' || 
11217             priv_note       || '|' || 
11218             opac_visible;
11219
11220         -- RAISE NOTICE 'XPath: %', xpath;
11221         
11222         FOR tmp_attr_set IN
11223                 SELECT  *
11224                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
11225                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
11226                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
11227                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
11228         LOOP
11229     
11230             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
11231             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
11232
11233             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
11234             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
11235     
11236             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
11237             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
11238             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
11239     
11240             SELECT  id INTO attr_set.location
11241               FROM  asset.copy_location
11242               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
11243                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
11244     
11245             attr_set.circulate      :=
11246                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
11247                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
11248
11249             attr_set.deposit        :=
11250                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
11251                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
11252
11253             attr_set.holdable       :=
11254                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
11255                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
11256
11257             attr_set.opac_visible   :=
11258                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
11259                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
11260
11261             attr_set.ref            :=
11262                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
11263                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
11264     
11265             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
11266             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
11267             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
11268     
11269             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
11270             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
11271             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
11272             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
11273             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11274             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
11275             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
11276             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11277     
11278             RETURN NEXT attr_set;
11279     
11280         END LOOP;
11281     
11282     END IF;
11283
11284     RETURN;
11285
11286 END;
11287 $$ LANGUAGE PLPGSQL;
11288
11289 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
11290 DECLARE
11291     attr_def    BIGINT;
11292     item_data   vandelay.import_item%ROWTYPE;
11293 BEGIN
11294
11295     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
11296
11297     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
11298         INSERT INTO vandelay.import_item (
11299             record,
11300             definition,
11301             owning_lib,
11302             circ_lib,
11303             call_number,
11304             copy_number,
11305             status,
11306             location,
11307             circulate,
11308             deposit,
11309             deposit_amount,
11310             ref,
11311             holdable,
11312             price,
11313             barcode,
11314             circ_modifier,
11315             circ_as_type,
11316             alert_message,
11317             pub_note,
11318             priv_note,
11319             opac_visible
11320         ) VALUES (
11321             NEW.id,
11322             item_data.definition,
11323             item_data.owning_lib,
11324             item_data.circ_lib,
11325             item_data.call_number,
11326             item_data.copy_number,
11327             item_data.status,
11328             item_data.location,
11329             item_data.circulate,
11330             item_data.deposit,
11331             item_data.deposit_amount,
11332             item_data.ref,
11333             item_data.holdable,
11334             item_data.price,
11335             item_data.barcode,
11336             item_data.circ_modifier,
11337             item_data.circ_as_type,
11338             item_data.alert_message,
11339             item_data.pub_note,
11340             item_data.priv_note,
11341             item_data.opac_visible
11342         );
11343     END LOOP;
11344
11345     RETURN NULL;
11346 END;
11347 $func$ LANGUAGE PLPGSQL;
11348
11349 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11350 BEGIN
11351     EXECUTE $$
11352         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
11353     $$;
11354         RETURN TRUE;
11355 END;
11356 $creator$ LANGUAGE 'plpgsql';
11357
11358 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11359 BEGIN
11360     EXECUTE $$
11361         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
11362             audit_id    BIGINT                          PRIMARY KEY,
11363             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
11364             audit_action        TEXT                            NOT NULL,
11365             LIKE $$ || sch || $$.$$ || tbl || $$
11366         );
11367     $$;
11368         RETURN TRUE;
11369 END;
11370 $creator$ LANGUAGE 'plpgsql';
11371
11372 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11373 BEGIN
11374     EXECUTE $$
11375         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11376         RETURNS TRIGGER AS $func$
11377         BEGIN
11378             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11379                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11380                     now(),
11381                     SUBSTR(TG_OP,1,1),
11382                     OLD.*;
11383             RETURN NULL;
11384         END;
11385         $func$ LANGUAGE 'plpgsql';
11386     $$;
11387         RETURN TRUE;
11388 END;
11389 $creator$ LANGUAGE 'plpgsql';
11390
11391 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11392 BEGIN
11393     EXECUTE $$
11394         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11395             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11396             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11397     $$;
11398         RETURN TRUE;
11399 END;
11400 $creator$ LANGUAGE 'plpgsql';
11401
11402 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11403 BEGIN
11404     EXECUTE $$
11405         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11406             SELECT      -1, now() as audit_time, '-' as audit_action, *
11407               FROM      $$ || sch || $$.$$ || tbl || $$
11408                 UNION ALL
11409             SELECT      *
11410               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11411     $$;
11412         RETURN TRUE;
11413 END;
11414 $creator$ LANGUAGE 'plpgsql';
11415
11416 -- The main event
11417
11418 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11419 BEGIN
11420     PERFORM acq.create_acq_seq(sch, tbl);
11421     PERFORM acq.create_acq_history(sch, tbl);
11422     PERFORM acq.create_acq_func(sch, tbl);
11423     PERFORM acq.create_acq_update_trigger(sch, tbl);
11424     PERFORM acq.create_acq_lifecycle(sch, tbl);
11425     RETURN TRUE;
11426 END;
11427 $creator$ LANGUAGE 'plpgsql';
11428
11429 ALTER TABLE acq.lineitem DROP COLUMN item_count;
11430
11431 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11432     SELECT  fund.id AS fund,
11433             fund_debit.encumbrance AS encumbrance,
11434             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11435       FROM acq.fund AS fund
11436                         LEFT JOIN acq.fund_debit AS fund_debit
11437                                 ON ( fund.id = fund_debit.fund )
11438       GROUP BY 1,2;
11439
11440 CREATE TABLE acq.debit_attribution (
11441         id                     INT         NOT NULL PRIMARY KEY,
11442         fund_debit             INT         NOT NULL
11443                                            REFERENCES acq.fund_debit
11444                                            DEFERRABLE INITIALLY DEFERRED,
11445     debit_amount           NUMERIC     NOT NULL,
11446         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11447                                            DEFERRABLE INITIALLY DEFERRED,
11448     credit_amount          NUMERIC
11449 );
11450
11451 CREATE INDEX acq_attribution_debit_idx
11452         ON acq.debit_attribution( fund_debit );
11453
11454 CREATE INDEX acq_attribution_credit_idx
11455         ON acq.debit_attribution( funding_source_credit );
11456
11457 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11458 /*
11459 Function to attribute expenditures and encumbrances to funding source credits,
11460 and thereby to funding sources.
11461
11462 Read the debits in chonological order, attributing each one to one or
11463 more funding source credits.  Constraints:
11464
11465 1. Don't attribute more to a credit than the amount of the credit.
11466
11467 2. For a given fund, don't attribute more to a funding source than the
11468 source has allocated to that fund.
11469
11470 3. Attribute debits to credits with deadlines before attributing them to
11471 credits without deadlines.  Otherwise attribute to the earliest credits
11472 first, based on the deadline date when present, or on the effective date
11473 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11474 This ordering is defined by an ORDER BY clause on the view
11475 acq.ordered_funding_source_credit.
11476
11477 Start by truncating the table acq.debit_attribution.  Then insert a row
11478 into that table for each attribution.  If a debit cannot be fully
11479 attributed, insert a row for the unattributable balance, with the 
11480 funding_source_credit and credit_amount columns NULL.
11481 */
11482 DECLARE
11483         curr_fund_source_bal RECORD;
11484         seqno                INT;     -- sequence num for credits applicable to a fund
11485         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11486         fc                   RECORD;  -- used for loading t_fund_credit table
11487         sc                   RECORD;  -- used for loading t_fund_credit table
11488         --
11489         -- Used exclusively in the main loop:
11490         --
11491         deb                 RECORD;   -- current row from acq.fund_debit table
11492         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11493         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11494         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11495         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11496         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11497         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11498         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11499         attrib_count        INT;      -- populates id of acq.debit_attribution
11500 BEGIN
11501         --
11502         -- Load a temporary table.  For each combination of fund and funding source,
11503         -- load an entry with the total amount allocated to that fund by that source.
11504         -- This sum may reflect transfers as well as original allocations.  We will
11505         -- reduce this balance whenever we attribute debits to it.
11506         --
11507         CREATE TEMP TABLE t_fund_source_bal
11508         ON COMMIT DROP AS
11509                 SELECT
11510                         fund AS fund,
11511                         funding_source AS source,
11512                         sum( amount ) AS balance
11513                 FROM
11514                         acq.fund_allocation
11515                 GROUP BY
11516                         fund,
11517                         funding_source
11518                 HAVING
11519                         sum( amount ) > 0;
11520         --
11521         CREATE INDEX t_fund_source_bal_idx
11522                 ON t_fund_source_bal( fund, source );
11523         -------------------------------------------------------------------------------
11524         --
11525         -- Load another temporary table.  For each fund, load zero or more
11526         -- funding source credits from which that fund can get money.
11527         --
11528         CREATE TEMP TABLE t_fund_credit (
11529                 fund        INT,
11530                 seq         INT,
11531                 credit      INT
11532         ) ON COMMIT DROP;
11533         --
11534         FOR fc IN
11535                 SELECT DISTINCT fund
11536                 FROM acq.fund_allocation
11537                 ORDER BY fund
11538         LOOP                  -- Loop over the funds
11539                 seqno := 1;
11540                 FOR sc IN
11541                         SELECT
11542                                 ofsc.id
11543                         FROM
11544                                 acq.ordered_funding_source_credit AS ofsc
11545                         WHERE
11546                                 ofsc.funding_source IN
11547                                 (
11548                                         SELECT funding_source
11549                                         FROM acq.fund_allocation
11550                                         WHERE fund = fc.fund
11551                                 )
11552                 ORDER BY
11553                     ofsc.sort_priority,
11554                     ofsc.sort_date,
11555                     ofsc.id
11556                 LOOP                        -- Add each credit to the list
11557                         INSERT INTO t_fund_credit (
11558                                 fund,
11559                                 seq,
11560                                 credit
11561                         ) VALUES (
11562                                 fc.fund,
11563                                 seqno,
11564                                 sc.id
11565                         );
11566                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11567                         seqno := seqno + 1;
11568                 END LOOP;     -- Loop over credits for a given fund
11569         END LOOP;         -- Loop over funds
11570         --
11571         CREATE INDEX t_fund_credit_idx
11572                 ON t_fund_credit( fund, seq );
11573         -------------------------------------------------------------------------------
11574         --
11575         -- Load yet another temporary table.  This one is a list of funding source
11576         -- credits, with their balances.  We shall reduce those balances as we
11577         -- attribute debits to them.
11578         --
11579         CREATE TEMP TABLE t_credit
11580         ON COMMIT DROP AS
11581         SELECT
11582             fsc.id AS credit,
11583             fsc.funding_source AS source,
11584             fsc.amount AS balance,
11585             fs.currency_type AS currency_type
11586         FROM
11587             acq.funding_source_credit AS fsc,
11588             acq.funding_source fs
11589         WHERE
11590             fsc.funding_source = fs.id
11591                         AND fsc.amount > 0;
11592         --
11593         CREATE INDEX t_credit_idx
11594                 ON t_credit( credit );
11595         --
11596         -------------------------------------------------------------------------------
11597         --
11598         -- Now that we have loaded the lookup tables: loop through the debits,
11599         -- attributing each one to one or more funding source credits.
11600         -- 
11601         truncate table acq.debit_attribution;
11602         --
11603         attrib_count := 0;
11604         FOR deb in
11605                 SELECT
11606                         fd.id,
11607                         fd.fund,
11608                         fd.amount,
11609                         f.currency_type,
11610                         fd.encumbrance
11611                 FROM
11612                         acq.fund_debit fd,
11613                         acq.fund f
11614                 WHERE
11615                         fd.fund = f.id
11616                 ORDER BY
11617                         fd.id
11618         LOOP
11619                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11620                 --
11621                 debit_balance := deb.amount;
11622                 --
11623                 -- Loop over the funding source credits that are eligible
11624                 -- to pay for this debit
11625                 --
11626                 FOR fund_credit IN
11627                         SELECT
11628                                 credit
11629                         FROM
11630                                 t_fund_credit
11631                         WHERE
11632                                 fund = deb.fund
11633                         ORDER BY
11634                                 seq
11635                 LOOP
11636                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11637                         --
11638                         -- Look up the balance for this credit.  If it's zero, then
11639                         -- it's not useful, so treat it as if you didn't find it.
11640                         -- (Actually there shouldn't be any zero balances in the table,
11641                         -- but we check just to make sure.)
11642                         --
11643                         SELECT *
11644                         INTO curr_credit_bal
11645                         FROM t_credit
11646                         WHERE
11647                                 credit = fund_credit.credit
11648                                 AND balance > 0;
11649                         --
11650                         IF curr_credit_bal IS NULL THEN
11651                                 --
11652                                 -- This credit is exhausted; try the next one.
11653                                 --
11654                                 CONTINUE;
11655                         END IF;
11656                         --
11657                         --
11658                         -- At this point we have an applicable credit with some money left.
11659                         -- Now see if the relevant funding_source has any money left.
11660                         --
11661                         -- Look up the balance of the allocation for this combination of
11662                         -- fund and source.  If you find such an entry, but it has a zero
11663                         -- balance, then it's not useful, so treat it as unfound.
11664                         -- (Actually there shouldn't be any zero balances in the table,
11665                         -- but we check just to make sure.)
11666                         --
11667                         SELECT *
11668                         INTO curr_fund_source_bal
11669                         FROM t_fund_source_bal
11670                         WHERE
11671                                 fund = deb.fund
11672                                 AND source = curr_credit_bal.source
11673                                 AND balance > 0;
11674                         --
11675                         IF curr_fund_source_bal IS NULL THEN
11676                                 --
11677                                 -- This fund/source doesn't exist or is already exhausted,
11678                                 -- so we can't use this credit.  Go on to the next one.
11679                                 --
11680                                 CONTINUE;
11681                         END IF;
11682                         --
11683                         -- Convert the available balances to the currency of the fund
11684                         --
11685                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11686                                 curr_credit_bal.currency_type, deb.currency_type );
11687                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11688                                 curr_credit_bal.currency_type, deb.currency_type );
11689                         --
11690                         -- Determine how much we can attribute to this credit: the minimum
11691                         -- of the debit amount, the fund/source balance, and the
11692                         -- credit balance
11693                         --
11694                         --RAISE NOTICE '   deb bal %', debit_balance;
11695                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11696                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11697                         --
11698                         conv_attr_amount := NULL;
11699                         attr_amount := debit_balance;
11700                         --
11701                         IF attr_amount > conv_alloc_balance THEN
11702                                 attr_amount := conv_alloc_balance;
11703                                 conv_attr_amount := curr_fund_source_bal.balance;
11704                         END IF;
11705                         IF attr_amount > conv_cred_balance THEN
11706                                 attr_amount := conv_cred_balance;
11707                                 conv_attr_amount := curr_credit_bal.balance;
11708                         END IF;
11709                         --
11710                         -- If we're attributing all of one of the balances, then that's how
11711                         -- much we will deduct from the balances, and we already captured
11712                         -- that amount above.  Otherwise we must convert the amount of the
11713                         -- attribution from the currency of the fund back to the currency of
11714                         -- the funding source.
11715                         --
11716                         IF conv_attr_amount IS NULL THEN
11717                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11718                                         deb.currency_type, curr_credit_bal.currency_type );
11719                         END IF;
11720                         --
11721                         -- Insert a row to record the attribution
11722                         --
11723                         attrib_count := attrib_count + 1;
11724                         INSERT INTO acq.debit_attribution (
11725                                 id,
11726                                 fund_debit,
11727                                 debit_amount,
11728                                 funding_source_credit,
11729                                 credit_amount
11730                         ) VALUES (
11731                                 attrib_count,
11732                                 deb.id,
11733                                 attr_amount,
11734                                 curr_credit_bal.credit,
11735                                 conv_attr_amount
11736                         );
11737                         --
11738                         -- Subtract the attributed amount from the various balances
11739                         --
11740                         debit_balance := debit_balance - attr_amount;
11741                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11742                         --
11743                         IF curr_fund_source_bal.balance <= 0 THEN
11744                                 --
11745                                 -- This allocation is exhausted.  Delete it so
11746                                 -- that we don't waste time looking at it again.
11747                                 --
11748                                 DELETE FROM t_fund_source_bal
11749                                 WHERE
11750                                         fund = curr_fund_source_bal.fund
11751                                         AND source = curr_fund_source_bal.source;
11752                         ELSE
11753                                 UPDATE t_fund_source_bal
11754                                 SET balance = balance - conv_attr_amount
11755                                 WHERE
11756                                         fund = curr_fund_source_bal.fund
11757                                         AND source = curr_fund_source_bal.source;
11758                         END IF;
11759                         --
11760                         IF curr_credit_bal.balance <= 0 THEN
11761                                 --
11762                                 -- This funding source credit is exhausted.  Delete it
11763                                 -- so that we don't waste time looking at it again.
11764                                 --
11765                                 --DELETE FROM t_credit
11766                                 --WHERE
11767                                 --      credit = curr_credit_bal.credit;
11768                                 --
11769                                 DELETE FROM t_fund_credit
11770                                 WHERE
11771                                         credit = curr_credit_bal.credit;
11772                         ELSE
11773                                 UPDATE t_credit
11774                                 SET balance = curr_credit_bal.balance
11775                                 WHERE
11776                                         credit = curr_credit_bal.credit;
11777                         END IF;
11778                         --
11779                         -- Are we done with this debit yet?
11780                         --
11781                         IF debit_balance <= 0 THEN
11782                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11783                         END IF;
11784                 END LOOP;       -- End loop over credits
11785                 --
11786                 IF debit_balance <> 0 THEN
11787                         --
11788                         -- We weren't able to attribute this debit, or at least not
11789                         -- all of it.  Insert a row for the unattributed balance.
11790                         --
11791                         attrib_count := attrib_count + 1;
11792                         INSERT INTO acq.debit_attribution (
11793                                 id,
11794                                 fund_debit,
11795                                 debit_amount,
11796                                 funding_source_credit,
11797                                 credit_amount
11798                         ) VALUES (
11799                                 attrib_count,
11800                                 deb.id,
11801                                 debit_balance,
11802                                 NULL,
11803                                 NULL
11804                         );
11805                 END IF;
11806         END LOOP;   -- End of loop over debits
11807 END;
11808 $$ LANGUAGE 'plpgsql';
11809
11810 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11811 DECLARE
11812     query TEXT;
11813     output TEXT;
11814 BEGIN
11815     query := $q$
11816         SELECT  regexp_replace(
11817                     oils_xpath_string(
11818                         $q$ || quote_literal($3) || $q$,
11819                         marc,
11820                         ' '
11821                     ),
11822                     $q$ || quote_literal($4) || $q$,
11823                     '',
11824                     'g')
11825           FROM  $q$ || $1 || $q$
11826           WHERE id = $q$ || $2;
11827
11828     EXECUTE query INTO output;
11829
11830     -- RAISE NOTICE 'query: %, output; %', query, output;
11831
11832     RETURN output;
11833 END;
11834 $$ LANGUAGE PLPGSQL IMMUTABLE;
11835
11836 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
11837     SELECT extract_marc_field($1,$2,$3,'');
11838 $$ LANGUAGE SQL IMMUTABLE;
11839
11840 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
11841 DECLARE
11842     moved_objects INT := 0;
11843     source_cn     asset.call_number%ROWTYPE;
11844     target_cn     asset.call_number%ROWTYPE;
11845     metarec       metabib.metarecord%ROWTYPE;
11846     hold          action.hold_request%ROWTYPE;
11847     ser_rec       serial.record_entry%ROWTYPE;
11848     uri_count     INT := 0;
11849     counter       INT := 0;
11850     uri_datafield TEXT;
11851     uri_text      TEXT := '';
11852 BEGIN
11853
11854     -- move any 856 entries on records that have at least one MARC-mapped URI entry
11855     SELECT  INTO uri_count COUNT(*)
11856       FROM  asset.uri_call_number_map m
11857             JOIN asset.call_number cn ON (m.call_number = cn.id)
11858       WHERE cn.record = source_record;
11859
11860     IF uri_count > 0 THEN
11861
11862         SELECT  COUNT(*) INTO counter
11863           FROM  oils_xpath_table(
11864                     'id',
11865                     'marc',
11866                     'biblio.record_entry',
11867                     '//*[@tag="856"]',
11868                     'id=' || source_record
11869                 ) as t(i int,c text);
11870
11871         FOR i IN 1 .. counter LOOP
11872             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
11873                         ' tag="856"' || 
11874                         ' ind1="' || FIRST(ind1) || '"'  || 
11875                         ' ind2="' || FIRST(ind2) || '">' || 
11876                         array_to_string(
11877                             array_accum(
11878                                 '<subfield code="' || subfield || '">' ||
11879                                 regexp_replace(
11880                                     regexp_replace(
11881                                         regexp_replace(data,'&','&amp;','g'),
11882                                         '>', '&gt;', 'g'
11883                                     ),
11884                                     '<', '&lt;', 'g'
11885                                 ) || '</subfield>'
11886                             ), ''
11887                         ) || '</datafield>' INTO uri_datafield
11888               FROM  oils_xpath_table(
11889                         'id',
11890                         'marc',
11891                         'biblio.record_entry',
11892                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
11893                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
11894                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
11895                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
11896                         'id=' || source_record
11897                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
11898
11899             uri_text := uri_text || uri_datafield;
11900         END LOOP;
11901
11902         IF uri_text <> '' THEN
11903             UPDATE  biblio.record_entry
11904               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
11905               WHERE id = target_record;
11906         END IF;
11907
11908     END IF;
11909
11910     -- Find and move metarecords to the target record
11911     SELECT  INTO metarec *
11912       FROM  metabib.metarecord
11913       WHERE master_record = source_record;
11914
11915     IF FOUND THEN
11916         UPDATE  metabib.metarecord
11917           SET   master_record = target_record,
11918             mods = NULL
11919           WHERE id = metarec.id;
11920
11921         moved_objects := moved_objects + 1;
11922     END IF;
11923
11924     -- Find call numbers attached to the source ...
11925     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
11926
11927         SELECT  INTO target_cn *
11928           FROM  asset.call_number
11929           WHERE label = source_cn.label
11930             AND owning_lib = source_cn.owning_lib
11931             AND record = target_record;
11932
11933         -- ... and if there's a conflicting one on the target ...
11934         IF FOUND THEN
11935
11936             -- ... move the copies to that, and ...
11937             UPDATE  asset.copy
11938               SET   call_number = target_cn.id
11939               WHERE call_number = source_cn.id;
11940
11941             -- ... move V holds to the move-target call number
11942             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
11943
11944                 UPDATE  action.hold_request
11945                   SET   target = target_cn.id
11946                   WHERE id = hold.id;
11947
11948                 moved_objects := moved_objects + 1;
11949             END LOOP;
11950
11951         -- ... if not ...
11952         ELSE
11953             -- ... just move the call number to the target record
11954             UPDATE  asset.call_number
11955               SET   record = target_record
11956               WHERE id = source_cn.id;
11957         END IF;
11958
11959         moved_objects := moved_objects + 1;
11960     END LOOP;
11961
11962     -- Find T holds targeting the source record ...
11963     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
11964
11965         -- ... and move them to the target record
11966         UPDATE  action.hold_request
11967           SET   target = target_record
11968           WHERE id = hold.id;
11969
11970         moved_objects := moved_objects + 1;
11971     END LOOP;
11972
11973     -- Find serial records targeting the source record ...
11974     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
11975         -- ... and move them to the target record
11976         UPDATE  serial.record_entry
11977           SET   record = target_record
11978           WHERE id = ser_rec.id;
11979
11980         moved_objects := moved_objects + 1;
11981     END LOOP;
11982
11983     -- Finally, "delete" the source record
11984     DELETE FROM biblio.record_entry WHERE id = source_record;
11985
11986     -- That's all, folks!
11987     RETURN moved_objects;
11988 END;
11989 $func$ LANGUAGE plpgsql;
11990
11991 CREATE OR REPLACE FUNCTION acq.transfer_fund(
11992         old_fund   IN INT,
11993         old_amount IN NUMERIC,     -- in currency of old fund
11994         new_fund   IN INT,
11995         new_amount IN NUMERIC,     -- in currency of new fund
11996         user_id    IN INT,
11997         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
11998         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
11999 ) RETURNS VOID AS $$
12000 /* -------------------------------------------------------------------------------
12001
12002 Function to transfer money from one fund to another.
12003
12004 A transfer is represented as a pair of entries in acq.fund_allocation, with a
12005 negative amount for the old (losing) fund and a positive amount for the new
12006 (gaining) fund.  In some cases there may be more than one such pair of entries
12007 in order to pull the money from different funding sources, or more specifically
12008 from different funding source credits.  For each such pair there is also an
12009 entry in acq.fund_transfer.
12010
12011 Since funding_source is a non-nullable column in acq.fund_allocation, we must
12012 choose a funding source for the transferred money to come from.  This choice
12013 must meet two constraints, so far as possible:
12014
12015 1. The amount transferred from a given funding source must not exceed the
12016 amount allocated to the old fund by the funding source.  To that end we
12017 compare the amount being transferred to the amount allocated.
12018
12019 2. We shouldn't transfer money that has already been spent or encumbered, as
12020 defined by the funding attribution process.  We attribute expenses to the
12021 oldest funding source credits first.  In order to avoid transferring that
12022 attributed money, we reverse the priority, transferring from the newest funding
12023 source credits first.  There can be no guarantee that this approach will
12024 avoid overcommitting a fund, but no other approach can do any better.
12025
12026 In this context the age of a funding source credit is defined by the
12027 deadline_date for credits with deadline_dates, and by the effective_date for
12028 credits without deadline_dates, with the proviso that credits with deadline_dates
12029 are all considered "older" than those without.
12030
12031 ----------
12032
12033 In the signature for this function, there is one last parameter commented out,
12034 named "funding_source_in".  Correspondingly, the WHERE clause for the query
12035 driving the main loop has an OR clause commented out, which references the
12036 funding_source_in parameter.
12037
12038 If these lines are uncommented, this function will allow the user optionally to
12039 restrict a fund transfer to a specified funding source.  If the source
12040 parameter is left NULL, then there will be no such restriction.
12041
12042 ------------------------------------------------------------------------------- */ 
12043 DECLARE
12044         same_currency      BOOLEAN;
12045         currency_ratio     NUMERIC;
12046         old_fund_currency  TEXT;
12047         old_remaining      NUMERIC;  -- in currency of old fund
12048         new_fund_currency  TEXT;
12049         new_fund_active    BOOLEAN;
12050         new_remaining      NUMERIC;  -- in currency of new fund
12051         curr_old_amt       NUMERIC;  -- in currency of old fund
12052         curr_new_amt       NUMERIC;  -- in currency of new fund
12053         source_addition    NUMERIC;  -- in currency of funding source
12054         source_deduction   NUMERIC;  -- in currency of funding source
12055         orig_allocated_amt NUMERIC;  -- in currency of funding source
12056         allocated_amt      NUMERIC;  -- in currency of fund
12057         source             RECORD;
12058 BEGIN
12059         --
12060         -- Sanity checks
12061         --
12062         IF old_fund IS NULL THEN
12063                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
12064         END IF;
12065         --
12066         IF old_amount IS NULL THEN
12067                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
12068         END IF;
12069         --
12070         -- The new fund and its amount must be both NULL or both not NULL.
12071         --
12072         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
12073                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
12074         END IF;
12075         --
12076         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
12077                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
12078         END IF;
12079         --
12080         IF user_id IS NULL THEN
12081                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
12082         END IF;
12083         --
12084         -- Initialize the amounts to be transferred, each denominated
12085         -- in the currency of its respective fund.  They will be
12086         -- reduced on each iteration of the loop.
12087         --
12088         old_remaining := old_amount;
12089         new_remaining := new_amount;
12090         --
12091         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
12092         --      old_amount, old_fund, new_amount, new_fund;
12093         --
12094         -- Get the currency types of the old and new funds.
12095         --
12096         SELECT
12097                 currency_type
12098         INTO
12099                 old_fund_currency
12100         FROM
12101                 acq.fund
12102         WHERE
12103                 id = old_fund;
12104         --
12105         IF old_fund_currency IS NULL THEN
12106                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
12107         END IF;
12108         --
12109         IF new_fund IS NOT NULL THEN
12110                 SELECT
12111                         currency_type,
12112                         active
12113                 INTO
12114                         new_fund_currency,
12115                         new_fund_active
12116                 FROM
12117                         acq.fund
12118                 WHERE
12119                         id = new_fund;
12120                 --
12121                 IF new_fund_currency IS NULL THEN
12122                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
12123                 ELSIF NOT new_fund_active THEN
12124                         --
12125                         -- No point in putting money into a fund from whence you can't spend it
12126                         --
12127                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
12128                 END IF;
12129                 --
12130                 IF new_amount = old_amount THEN
12131                         same_currency := true;
12132                         currency_ratio := 1;
12133                 ELSE
12134                         --
12135                         -- We'll have to translate currency between funds.  We presume that
12136                         -- the calling code has already applied an appropriate exchange rate,
12137                         -- so we'll apply the same conversion to each sub-transfer.
12138                         --
12139                         same_currency := false;
12140                         currency_ratio := new_amount / old_amount;
12141                 END IF;
12142         END IF;
12143         --
12144         -- Identify the funding source(s) from which we want to transfer the money.
12145         -- The principle is that we want to transfer the newest money first, because
12146         -- we spend the oldest money first.  The priority for spending is defined
12147         -- by a sort of the view acq.ordered_funding_source_credit.
12148         --
12149         FOR source in
12150                 SELECT
12151                         ofsc.id,
12152                         ofsc.funding_source,
12153                         ofsc.amount,
12154                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
12155                                 AS converted_amt,
12156                         fs.currency_type
12157                 FROM
12158                         acq.ordered_funding_source_credit AS ofsc,
12159                         acq.funding_source fs
12160                 WHERE
12161                         ofsc.funding_source = fs.id
12162                         and ofsc.funding_source IN
12163                         (
12164                                 SELECT funding_source
12165                                 FROM acq.fund_allocation
12166                                 WHERE fund = old_fund
12167                         )
12168                         -- and
12169                         -- (
12170                         --      ofsc.funding_source = funding_source_in
12171                         --      OR funding_source_in IS NULL
12172                         -- )
12173                 ORDER BY
12174                         ofsc.sort_priority desc,
12175                         ofsc.sort_date desc,
12176                         ofsc.id desc
12177         LOOP
12178                 --
12179                 -- Determine how much money the old fund got from this funding source,
12180                 -- denominated in the currency types of the source and of the fund.
12181                 -- This result may reflect transfers from previous iterations.
12182                 --
12183                 SELECT
12184                         COALESCE( sum( amount ), 0 ),
12185                         COALESCE( sum( amount )
12186                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
12187                 INTO
12188                         orig_allocated_amt,     -- in currency of the source
12189                         allocated_amt           -- in currency of the old fund
12190                 FROM
12191                         acq.fund_allocation
12192                 WHERE
12193                         fund = old_fund
12194                         and funding_source = source.funding_source;
12195                 --      
12196                 -- Determine how much to transfer from this credit, in the currency
12197                 -- of the fund.   Begin with the amount remaining to be attributed:
12198                 --
12199                 curr_old_amt := old_remaining;
12200                 --
12201                 -- Can't attribute more than was allocated from the fund:
12202                 --
12203                 IF curr_old_amt > allocated_amt THEN
12204                         curr_old_amt := allocated_amt;
12205                 END IF;
12206                 --
12207                 -- Can't attribute more than the amount of the current credit:
12208                 --
12209                 IF curr_old_amt > source.converted_amt THEN
12210                         curr_old_amt := source.converted_amt;
12211                 END IF;
12212                 --
12213                 curr_old_amt := trunc( curr_old_amt, 2 );
12214                 --
12215                 old_remaining := old_remaining - curr_old_amt;
12216                 --
12217                 -- Determine the amount to be deducted, if any,
12218                 -- from the old allocation.
12219                 --
12220                 IF old_remaining > 0 THEN
12221                         --
12222                         -- In this case we're using the whole allocation, so use that
12223                         -- amount directly instead of applying a currency translation
12224                         -- and thereby inviting round-off errors.
12225                         --
12226                         source_deduction := - orig_allocated_amt;
12227                 ELSE 
12228                         source_deduction := trunc(
12229                                 ( - curr_old_amt ) *
12230                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
12231                                 2 );
12232                 END IF;
12233                 --
12234                 IF source_deduction <> 0 THEN
12235                         --
12236                         -- Insert negative allocation for old fund in fund_allocation,
12237                         -- converted into the currency of the funding source
12238                         --
12239                         INSERT INTO acq.fund_allocation (
12240                                 funding_source,
12241                                 fund,
12242                                 amount,
12243                                 allocator,
12244                                 note
12245                         ) VALUES (
12246                                 source.funding_source,
12247                                 old_fund,
12248                                 source_deduction,
12249                                 user_id,
12250                                 'Transfer to fund ' || new_fund
12251                         );
12252                 END IF;
12253                 --
12254                 IF new_fund IS NOT NULL THEN
12255                         --
12256                         -- Determine how much to add to the new fund, in
12257                         -- its currency, and how much remains to be added:
12258                         --
12259                         IF same_currency THEN
12260                                 curr_new_amt := curr_old_amt;
12261                         ELSE
12262                                 IF old_remaining = 0 THEN
12263                                         --
12264                                         -- This is the last iteration, so nothing should be left
12265                                         --
12266                                         curr_new_amt := new_remaining;
12267                                         new_remaining := 0;
12268                                 ELSE
12269                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
12270                                         new_remaining := new_remaining - curr_new_amt;
12271                                 END IF;
12272                         END IF;
12273                         --
12274                         -- Determine how much to add, if any,
12275                         -- to the new fund's allocation.
12276                         --
12277                         IF old_remaining > 0 THEN
12278                                 --
12279                                 -- In this case we're using the whole allocation, so use that amount
12280                                 -- amount directly instead of applying a currency translation and
12281                                 -- thereby inviting round-off errors.
12282                                 --
12283                                 source_addition := orig_allocated_amt;
12284                         ELSIF source.currency_type = old_fund_currency THEN
12285                                 --
12286                                 -- In this case we don't need a round trip currency translation,
12287                                 -- thereby inviting round-off errors:
12288                                 --
12289                                 source_addition := curr_old_amt;
12290                         ELSE 
12291                                 source_addition := trunc(
12292                                         curr_new_amt *
12293                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
12294                                         2 );
12295                         END IF;
12296                         --
12297                         IF source_addition <> 0 THEN
12298                                 --
12299                                 -- Insert positive allocation for new fund in fund_allocation,
12300                                 -- converted to the currency of the founding source
12301                                 --
12302                                 INSERT INTO acq.fund_allocation (
12303                                         funding_source,
12304                                         fund,
12305                                         amount,
12306                                         allocator,
12307                                         note
12308                                 ) VALUES (
12309                                         source.funding_source,
12310                                         new_fund,
12311                                         source_addition,
12312                                         user_id,
12313                                         'Transfer from fund ' || old_fund
12314                                 );
12315                         END IF;
12316                 END IF;
12317                 --
12318                 IF trunc( curr_old_amt, 2 ) <> 0
12319                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
12320                         --
12321                         -- Insert row in fund_transfer, using amounts in the currency of the funds
12322                         --
12323                         INSERT INTO acq.fund_transfer (
12324                                 src_fund,
12325                                 src_amount,
12326                                 dest_fund,
12327                                 dest_amount,
12328                                 transfer_user,
12329                                 note,
12330                                 funding_source_credit
12331                         ) VALUES (
12332                                 old_fund,
12333                                 trunc( curr_old_amt, 2 ),
12334                                 new_fund,
12335                                 trunc( curr_new_amt, 2 ),
12336                                 user_id,
12337                                 xfer_note,
12338                                 source.id
12339                         );
12340                 END IF;
12341                 --
12342                 if old_remaining <= 0 THEN
12343                         EXIT;                   -- Nothing more to be transferred
12344                 END IF;
12345         END LOOP;
12346 END;
12347 $$ LANGUAGE plpgsql;
12348
12349 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
12350         old_year INTEGER,
12351         user_id INTEGER,
12352         org_unit_id INTEGER
12353 ) RETURNS VOID AS $$
12354 DECLARE
12355 --
12356 new_id      INT;
12357 old_fund    RECORD;
12358 org_found   BOOLEAN;
12359 --
12360 BEGIN
12361         --
12362         -- Sanity checks
12363         --
12364         IF old_year IS NULL THEN
12365                 RAISE EXCEPTION 'Input year argument is NULL';
12366         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12367                 RAISE EXCEPTION 'Input year is out of range';
12368         END IF;
12369         --
12370         IF user_id IS NULL THEN
12371                 RAISE EXCEPTION 'Input user id argument is NULL';
12372         END IF;
12373         --
12374         IF org_unit_id IS NULL THEN
12375                 RAISE EXCEPTION 'Org unit id argument is NULL';
12376         ELSE
12377                 SELECT TRUE INTO org_found
12378                 FROM actor.org_unit
12379                 WHERE id = org_unit_id;
12380                 --
12381                 IF org_found IS NULL THEN
12382                         RAISE EXCEPTION 'Org unit id is invalid';
12383                 END IF;
12384         END IF;
12385         --
12386         -- Loop over the applicable funds
12387         --
12388         FOR old_fund in SELECT * FROM acq.fund
12389         WHERE
12390                 year = old_year
12391                 AND propagate
12392                 AND org = org_unit_id
12393         LOOP
12394                 BEGIN
12395                         INSERT INTO acq.fund (
12396                                 org,
12397                                 name,
12398                                 year,
12399                                 currency_type,
12400                                 code,
12401                                 rollover,
12402                                 propagate,
12403                                 balance_warning_percent,
12404                                 balance_stop_percent
12405                         ) VALUES (
12406                                 old_fund.org,
12407                                 old_fund.name,
12408                                 old_year + 1,
12409                                 old_fund.currency_type,
12410                                 old_fund.code,
12411                                 old_fund.rollover,
12412                                 true,
12413                                 old_fund.balance_warning_percent,
12414                                 old_fund.balance_stop_percent
12415                         )
12416                         RETURNING id INTO new_id;
12417                 EXCEPTION
12418                         WHEN unique_violation THEN
12419                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12420                                 CONTINUE;
12421                 END;
12422                 --RAISE NOTICE 'Propagating fund % to fund %',
12423                 --      old_fund.code, new_id;
12424         END LOOP;
12425 END;
12426 $$ LANGUAGE plpgsql;
12427
12428 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12429         old_year INTEGER,
12430         user_id INTEGER,
12431         org_unit_id INTEGER
12432 ) RETURNS VOID AS $$
12433 DECLARE
12434 --
12435 new_id      INT;
12436 old_fund    RECORD;
12437 org_found   BOOLEAN;
12438 --
12439 BEGIN
12440         --
12441         -- Sanity checks
12442         --
12443         IF old_year IS NULL THEN
12444                 RAISE EXCEPTION 'Input year argument is NULL';
12445         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12446                 RAISE EXCEPTION 'Input year is out of range';
12447         END IF;
12448         --
12449         IF user_id IS NULL THEN
12450                 RAISE EXCEPTION 'Input user id argument is NULL';
12451         END IF;
12452         --
12453         IF org_unit_id IS NULL THEN
12454                 RAISE EXCEPTION 'Org unit id argument is NULL';
12455         ELSE
12456                 SELECT TRUE INTO org_found
12457                 FROM actor.org_unit
12458                 WHERE id = org_unit_id;
12459                 --
12460                 IF org_found IS NULL THEN
12461                         RAISE EXCEPTION 'Org unit id is invalid';
12462                 END IF;
12463         END IF;
12464         --
12465         -- Loop over the applicable funds
12466         --
12467         FOR old_fund in SELECT * FROM acq.fund
12468         WHERE
12469                 year = old_year
12470                 AND propagate
12471                 AND org in (
12472                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12473                 )
12474         LOOP
12475                 BEGIN
12476                         INSERT INTO acq.fund (
12477                                 org,
12478                                 name,
12479                                 year,
12480                                 currency_type,
12481                                 code,
12482                                 rollover,
12483                                 propagate,
12484                                 balance_warning_percent,
12485                                 balance_stop_percent
12486                         ) VALUES (
12487                                 old_fund.org,
12488                                 old_fund.name,
12489                                 old_year + 1,
12490                                 old_fund.currency_type,
12491                                 old_fund.code,
12492                                 old_fund.rollover,
12493                                 true,
12494                                 old_fund.balance_warning_percent,
12495                                 old_fund.balance_stop_percent
12496                         )
12497                         RETURNING id INTO new_id;
12498                 EXCEPTION
12499                         WHEN unique_violation THEN
12500                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12501                                 CONTINUE;
12502                 END;
12503                 --RAISE NOTICE 'Propagating fund % to fund %',
12504                 --      old_fund.code, new_id;
12505         END LOOP;
12506 END;
12507 $$ LANGUAGE plpgsql;
12508
12509 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12510         old_year INTEGER,
12511         user_id INTEGER,
12512         org_unit_id INTEGER
12513 ) RETURNS VOID AS $$
12514 DECLARE
12515 --
12516 new_fund    INT;
12517 new_year    INT := old_year + 1;
12518 org_found   BOOL;
12519 xfer_amount NUMERIC;
12520 roll_fund   RECORD;
12521 deb         RECORD;
12522 detail      RECORD;
12523 --
12524 BEGIN
12525         --
12526         -- Sanity checks
12527         --
12528         IF old_year IS NULL THEN
12529                 RAISE EXCEPTION 'Input year argument is NULL';
12530     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12531         RAISE EXCEPTION 'Input year is out of range';
12532         END IF;
12533         --
12534         IF user_id IS NULL THEN
12535                 RAISE EXCEPTION 'Input user id argument is NULL';
12536         END IF;
12537         --
12538         IF org_unit_id IS NULL THEN
12539                 RAISE EXCEPTION 'Org unit id argument is NULL';
12540         ELSE
12541                 --
12542                 -- Validate the org unit
12543                 --
12544                 SELECT TRUE
12545                 INTO org_found
12546                 FROM actor.org_unit
12547                 WHERE id = org_unit_id;
12548                 --
12549                 IF org_found IS NULL THEN
12550                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12551                 END IF;
12552         END IF;
12553         --
12554         -- Loop over the propagable funds to identify the details
12555         -- from the old fund plus the id of the new one, if it exists.
12556         --
12557         FOR roll_fund in
12558         SELECT
12559             oldf.id AS old_fund,
12560             oldf.org,
12561             oldf.name,
12562             oldf.currency_type,
12563             oldf.code,
12564                 oldf.rollover,
12565             newf.id AS new_fund_id
12566         FROM
12567         acq.fund AS oldf
12568         LEFT JOIN acq.fund AS newf
12569                 ON ( oldf.code = newf.code )
12570         WHERE
12571                     oldf.org = org_unit_id
12572                 and oldf.year = old_year
12573                 and oldf.propagate
12574         and newf.year = new_year
12575         LOOP
12576                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12577                 --
12578                 IF roll_fund.new_fund_id IS NULL THEN
12579                         --
12580                         -- The old fund hasn't been propagated yet.  Propagate it now.
12581                         --
12582                         INSERT INTO acq.fund (
12583                                 org,
12584                                 name,
12585                                 year,
12586                                 currency_type,
12587                                 code,
12588                                 rollover,
12589                                 propagate,
12590                                 balance_warning_percent,
12591                                 balance_stop_percent
12592                         ) VALUES (
12593                                 roll_fund.org,
12594                                 roll_fund.name,
12595                                 new_year,
12596                                 roll_fund.currency_type,
12597                                 roll_fund.code,
12598                                 true,
12599                                 true,
12600                                 roll_fund.balance_warning_percent,
12601                                 roll_fund.balance_stop_percent
12602                         )
12603                         RETURNING id INTO new_fund;
12604                 ELSE
12605                         new_fund = roll_fund.new_fund_id;
12606                 END IF;
12607                 --
12608                 -- Determine the amount to transfer
12609                 --
12610                 SELECT amount
12611                 INTO xfer_amount
12612                 FROM acq.fund_spent_balance
12613                 WHERE fund = roll_fund.old_fund;
12614                 --
12615                 IF xfer_amount <> 0 THEN
12616                         IF roll_fund.rollover THEN
12617                                 --
12618                                 -- Transfer balance from old fund to new
12619                                 --
12620                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12621                                 --
12622                                 PERFORM acq.transfer_fund(
12623                                         roll_fund.old_fund,
12624                                         xfer_amount,
12625                                         new_fund,
12626                                         xfer_amount,
12627                                         user_id,
12628                                         'Rollover'
12629                                 );
12630                         ELSE
12631                                 --
12632                                 -- Transfer balance from old fund to the void
12633                                 --
12634                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12635                                 --
12636                                 PERFORM acq.transfer_fund(
12637                                         roll_fund.old_fund,
12638                                         xfer_amount,
12639                                         NULL,
12640                                         NULL,
12641                                         user_id,
12642                                         'Rollover'
12643                                 );
12644                         END IF;
12645                 END IF;
12646                 --
12647                 IF roll_fund.rollover THEN
12648                         --
12649                         -- Move any lineitems from the old fund to the new one
12650                         -- where the associated debit is an encumbrance.
12651                         --
12652                         -- Any other tables tying expenditure details to funds should
12653                         -- receive similar treatment.  At this writing there are none.
12654                         --
12655                         UPDATE acq.lineitem_detail
12656                         SET fund = new_fund
12657                         WHERE
12658                         fund = roll_fund.old_fund -- this condition may be redundant
12659                         AND fund_debit in
12660                         (
12661                                 SELECT id
12662                                 FROM acq.fund_debit
12663                                 WHERE
12664                                 fund = roll_fund.old_fund
12665                                 AND encumbrance
12666                         );
12667                         --
12668                         -- Move encumbrance debits from the old fund to the new fund
12669                         --
12670                         UPDATE acq.fund_debit
12671                         SET fund = new_fund
12672                         wHERE
12673                                 fund = roll_fund.old_fund
12674                                 AND encumbrance;
12675                 END IF;
12676                 --
12677                 -- Mark old fund as inactive, now that we've closed it
12678                 --
12679                 UPDATE acq.fund
12680                 SET active = FALSE
12681                 WHERE id = roll_fund.old_fund;
12682         END LOOP;
12683 END;
12684 $$ LANGUAGE plpgsql;
12685
12686 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12687         old_year INTEGER,
12688         user_id INTEGER,
12689         org_unit_id INTEGER
12690 ) RETURNS VOID AS $$
12691 DECLARE
12692 --
12693 new_fund    INT;
12694 new_year    INT := old_year + 1;
12695 org_found   BOOL;
12696 xfer_amount NUMERIC;
12697 roll_fund   RECORD;
12698 deb         RECORD;
12699 detail      RECORD;
12700 --
12701 BEGIN
12702         --
12703         -- Sanity checks
12704         --
12705         IF old_year IS NULL THEN
12706                 RAISE EXCEPTION 'Input year argument is NULL';
12707     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12708         RAISE EXCEPTION 'Input year is out of range';
12709         END IF;
12710         --
12711         IF user_id IS NULL THEN
12712                 RAISE EXCEPTION 'Input user id argument is NULL';
12713         END IF;
12714         --
12715         IF org_unit_id IS NULL THEN
12716                 RAISE EXCEPTION 'Org unit id argument is NULL';
12717         ELSE
12718                 --
12719                 -- Validate the org unit
12720                 --
12721                 SELECT TRUE
12722                 INTO org_found
12723                 FROM actor.org_unit
12724                 WHERE id = org_unit_id;
12725                 --
12726                 IF org_found IS NULL THEN
12727                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12728                 END IF;
12729         END IF;
12730         --
12731         -- Loop over the propagable funds to identify the details
12732         -- from the old fund plus the id of the new one, if it exists.
12733         --
12734         FOR roll_fund in
12735         SELECT
12736             oldf.id AS old_fund,
12737             oldf.org,
12738             oldf.name,
12739             oldf.currency_type,
12740             oldf.code,
12741                 oldf.rollover,
12742             newf.id AS new_fund_id
12743         FROM
12744         acq.fund AS oldf
12745         LEFT JOIN acq.fund AS newf
12746                 ON ( oldf.code = newf.code )
12747         WHERE
12748                     oldf.year = old_year
12749                 AND oldf.propagate
12750         AND newf.year = new_year
12751                 AND oldf.org in (
12752                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12753                 )
12754         LOOP
12755                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12756                 --
12757                 IF roll_fund.new_fund_id IS NULL THEN
12758                         --
12759                         -- The old fund hasn't been propagated yet.  Propagate it now.
12760                         --
12761                         INSERT INTO acq.fund (
12762                                 org,
12763                                 name,
12764                                 year,
12765                                 currency_type,
12766                                 code,
12767                                 rollover,
12768                                 propagate,
12769                                 balance_warning_percent,
12770                                 balance_stop_percent
12771                         ) VALUES (
12772                                 roll_fund.org,
12773                                 roll_fund.name,
12774                                 new_year,
12775                                 roll_fund.currency_type,
12776                                 roll_fund.code,
12777                                 true,
12778                                 true,
12779                                 roll_fund.balance_warning_percent,
12780                                 roll_fund.balance_stop_percent
12781                         )
12782                         RETURNING id INTO new_fund;
12783                 ELSE
12784                         new_fund = roll_fund.new_fund_id;
12785                 END IF;
12786                 --
12787                 -- Determine the amount to transfer
12788                 --
12789                 SELECT amount
12790                 INTO xfer_amount
12791                 FROM acq.fund_spent_balance
12792                 WHERE fund = roll_fund.old_fund;
12793                 --
12794                 IF xfer_amount <> 0 THEN
12795                         IF roll_fund.rollover THEN
12796                                 --
12797                                 -- Transfer balance from old fund to new
12798                                 --
12799                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12800                                 --
12801                                 PERFORM acq.transfer_fund(
12802                                         roll_fund.old_fund,
12803                                         xfer_amount,
12804                                         new_fund,
12805                                         xfer_amount,
12806                                         user_id,
12807                                         'Rollover'
12808                                 );
12809                         ELSE
12810                                 --
12811                                 -- Transfer balance from old fund to the void
12812                                 --
12813                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12814                                 --
12815                                 PERFORM acq.transfer_fund(
12816                                         roll_fund.old_fund,
12817                                         xfer_amount,
12818                                         NULL,
12819                                         NULL,
12820                                         user_id,
12821                                         'Rollover'
12822                                 );
12823                         END IF;
12824                 END IF;
12825                 --
12826                 IF roll_fund.rollover THEN
12827                         --
12828                         -- Move any lineitems from the old fund to the new one
12829                         -- where the associated debit is an encumbrance.
12830                         --
12831                         -- Any other tables tying expenditure details to funds should
12832                         -- receive similar treatment.  At this writing there are none.
12833                         --
12834                         UPDATE acq.lineitem_detail
12835                         SET fund = new_fund
12836                         WHERE
12837                         fund = roll_fund.old_fund -- this condition may be redundant
12838                         AND fund_debit in
12839                         (
12840                                 SELECT id
12841                                 FROM acq.fund_debit
12842                                 WHERE
12843                                 fund = roll_fund.old_fund
12844                                 AND encumbrance
12845                         );
12846                         --
12847                         -- Move encumbrance debits from the old fund to the new fund
12848                         --
12849                         UPDATE acq.fund_debit
12850                         SET fund = new_fund
12851                         wHERE
12852                                 fund = roll_fund.old_fund
12853                                 AND encumbrance;
12854                 END IF;
12855                 --
12856                 -- Mark old fund as inactive, now that we've closed it
12857                 --
12858                 UPDATE acq.fund
12859                 SET active = FALSE
12860                 WHERE id = roll_fund.old_fund;
12861         END LOOP;
12862 END;
12863 $$ LANGUAGE plpgsql;
12864
12865 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
12866     SELECT regexp_replace($1, ',', '', 'g');
12867 $$ LANGUAGE SQL STRICT IMMUTABLE;
12868
12869 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
12870     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
12871 $$ LANGUAGE SQL STRICT IMMUTABLE;
12872
12873 CREATE TABLE acq.distribution_formula_application (
12874     id BIGSERIAL PRIMARY KEY,
12875     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
12876     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
12877     formula INT NOT NULL
12878         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
12879     lineitem INT NOT NULL
12880         REFERENCES acq.lineitem( id )
12881                 ON DELETE CASCADE
12882                 DEFERRABLE INITIALLY DEFERRED
12883 );
12884
12885 CREATE INDEX acqdfa_df_idx
12886     ON acq.distribution_formula_application(formula);
12887 CREATE INDEX acqdfa_li_idx
12888     ON acq.distribution_formula_application(lineitem);
12889 CREATE INDEX acqdfa_creator_idx
12890     ON acq.distribution_formula_application(creator);
12891
12892 CREATE TABLE acq.user_request_type (
12893     id      SERIAL  PRIMARY KEY,
12894     label   TEXT    NOT NULL UNIQUE -- i18n-ize
12895 );
12896
12897 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
12898 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
12899 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
12900 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
12901 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
12902
12903 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
12904
12905 CREATE TABLE acq.cancel_reason (
12906         id            SERIAL            PRIMARY KEY,
12907         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
12908                                         DEFERRABLE INITIALLY DEFERRED,
12909         label         TEXT              NOT NULL,
12910         description   TEXT              NOT NULL,
12911         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
12912         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
12913 );
12914
12915 -- Reserve ids 1-999 for stock reasons
12916 -- Reserve ids 1000-1999 for EDI reasons
12917 -- 2000+ are available for staff to create
12918
12919 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
12920
12921 CREATE TABLE acq.user_request (
12922     id                  SERIAL  PRIMARY KEY,
12923     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
12924     hold                BOOL    NOT NULL DEFAULT TRUE,
12925
12926     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
12927     holdable_formats    TEXT,           -- nullable, for use in hold creation
12928     phone_notify        TEXT,
12929     email_notify        BOOL    NOT NULL DEFAULT TRUE,
12930     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
12931     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
12932     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
12933     need_before         TIMESTAMPTZ,    -- don't create holds after this
12934     max_fee             TEXT,
12935
12936     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
12937     isxn                TEXT,
12938     title               TEXT,
12939     volume              TEXT,
12940     author              TEXT,
12941     article_title       TEXT,
12942     article_pages       TEXT,
12943     publisher           TEXT,
12944     location            TEXT,
12945     pubdate             TEXT,
12946     mentioned           TEXT,
12947     other_info          TEXT,
12948         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
12949                                              DEFERRABLE INITIALLY DEFERRED
12950 );
12951
12952 CREATE TABLE acq.lineitem_alert_text (
12953         id               SERIAL         PRIMARY KEY,
12954         code             TEXT           NOT NULL,
12955         description      TEXT,
12956         owning_lib       INT            NOT NULL
12957                                         REFERENCES actor.org_unit(id)
12958                                         DEFERRABLE INITIALLY DEFERRED,
12959         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
12960 );
12961
12962 ALTER TABLE acq.lineitem_note
12963         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
12964                                          DEFERRABLE INITIALLY DEFERRED;
12965
12966 -- add ON DELETE CASCADE clause
12967
12968 ALTER TABLE acq.lineitem_note
12969         DROP CONSTRAINT lineitem_note_lineitem_fkey;
12970
12971 ALTER TABLE acq.lineitem_note
12972         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
12973                 ON DELETE CASCADE
12974                 DEFERRABLE INITIALLY DEFERRED;
12975
12976 ALTER TABLE acq.lineitem_note
12977         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
12978
12979 CREATE TABLE acq.invoice_method (
12980     code    TEXT    PRIMARY KEY,
12981     name    TEXT    NOT NULL -- i18n-ize
12982 );
12983 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
12984 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
12985
12986 CREATE TABLE acq.invoice_payment_method (
12987         code      TEXT     PRIMARY KEY,
12988         name      TEXT     NOT NULL
12989 );
12990
12991 CREATE TABLE acq.invoice (
12992     id             SERIAL      PRIMARY KEY,
12993     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
12994     provider       INT         NOT NULL REFERENCES acq.provider (id),
12995     shipper        INT         NOT NULL REFERENCES acq.provider (id),
12996     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
12997     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
12998     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
12999     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
13000         payment_auth   TEXT,
13001         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
13002                                    DEFERRABLE INITIALLY DEFERRED,
13003         note           TEXT,
13004     complete       BOOL        NOT NULL DEFAULT FALSE,
13005     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
13006 );
13007
13008 CREATE TABLE acq.invoice_entry (
13009     id              SERIAL      PRIMARY KEY,
13010     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
13011     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13012     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
13013     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
13014     phys_item_count INT, -- and how many did staff count
13015     note            TEXT,
13016     billed_per_item BOOL,
13017     cost_billed     NUMERIC(8,2),
13018     actual_cost     NUMERIC(8,2),
13019         amount_paid     NUMERIC (8,2)
13020 );
13021
13022 CREATE TABLE acq.invoice_item_type (
13023     code    TEXT    PRIMARY KEY,
13024     name    TEXT    NOT NULL, -- i18n-ize
13025         prorate BOOL    NOT NULL DEFAULT FALSE
13026 );
13027
13028 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
13029 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
13030 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
13031 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
13032 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
13033 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name'));
13034
13035 CREATE TABLE acq.po_item (
13036         id              SERIAL      PRIMARY KEY,
13037         purchase_order  INT         REFERENCES acq.purchase_order (id)
13038                                     ON UPDATE CASCADE ON DELETE SET NULL
13039                                     DEFERRABLE INITIALLY DEFERRED,
13040         fund_debit      INT         REFERENCES acq.fund_debit (id)
13041                                     DEFERRABLE INITIALLY DEFERRED,
13042         inv_item_type   TEXT        NOT NULL
13043                                     REFERENCES acq.invoice_item_type (code)
13044                                     DEFERRABLE INITIALLY DEFERRED,
13045         title           TEXT,
13046         author          TEXT,
13047         note            TEXT,
13048         estimated_cost  NUMERIC(8,2),
13049         fund            INT         REFERENCES acq.fund (id)
13050                                     DEFERRABLE INITIALLY DEFERRED,
13051         target          BIGINT
13052 );
13053
13054 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
13055     id              SERIAL      PRIMARY KEY,
13056     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
13057     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13058     fund_debit      INT         REFERENCES acq.fund_debit (id),
13059     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
13060     title           TEXT,
13061     author          TEXT,
13062     note            TEXT,
13063     cost_billed     NUMERIC(8,2),
13064     actual_cost     NUMERIC(8,2),
13065     fund            INT         REFERENCES acq.fund (id)
13066                                 DEFERRABLE INITIALLY DEFERRED,
13067     amount_paid     NUMERIC (8,2),
13068     po_item         INT         REFERENCES acq.po_item (id)
13069                                 DEFERRABLE INITIALLY DEFERRED,
13070     target          BIGINT
13071 );
13072
13073 CREATE TABLE acq.edi_message (
13074     id               SERIAL          PRIMARY KEY,
13075     account          INTEGER         REFERENCES acq.edi_account(id)
13076                                      DEFERRABLE INITIALLY DEFERRED,
13077     remote_file      TEXT,
13078     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
13079     translate_time   TIMESTAMPTZ,
13080     process_time     TIMESTAMPTZ,
13081     error_time       TIMESTAMPTZ,
13082     status           TEXT            NOT NULL DEFAULT 'new'
13083                                      CONSTRAINT status_value CHECK
13084                                      ( status IN (
13085                                         'new',          -- needs to be translated
13086                                         'translated',   -- needs to be processed
13087                                         'trans_error',  -- error in translation step
13088                                         'processed',    -- needs to have remote_file deleted
13089                                         'proc_error',   -- error in processing step
13090                                         'delete_error', -- error in deletion
13091                                         'retry',        -- need to retry
13092                                         'complete'      -- done
13093                                      )),
13094     edi              TEXT,
13095     jedi             TEXT,
13096     error            TEXT,
13097     purchase_order   INT             REFERENCES acq.purchase_order
13098                                      DEFERRABLE INITIALLY DEFERRED,
13099     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
13100                                      CHECK ( message_type IN (
13101                                         'ORDERS',
13102                                         'ORDRSP',
13103                                         'INVOIC',
13104                                         'OSTENQ',
13105                                         'OSTRPT'
13106                                      ))
13107 );
13108
13109 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
13110
13111 ALTER TABLE acq.provider_address
13112         ADD COLUMN fax_phone TEXT;
13113
13114 ALTER TABLE acq.provider_contact_address
13115         ADD COLUMN fax_phone TEXT;
13116
13117 CREATE TABLE acq.provider_note (
13118     id      SERIAL              PRIMARY KEY,
13119     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
13120     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13121     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13122     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13123     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13124     value       TEXT            NOT NULL
13125 );
13126 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
13127 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
13128 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
13129
13130 -- For each fund: the total allocation from all sources, in the
13131 -- currency of the fund (or 0 if there are no allocations)
13132
13133 CREATE VIEW acq.all_fund_allocation_total AS
13134 SELECT
13135     f.id AS fund,
13136     COALESCE( SUM( a.amount * acq.exchange_ratio(
13137         s.currency_type, f.currency_type))::numeric(100,2), 0 )
13138     AS amount
13139 FROM
13140     acq.fund f
13141         LEFT JOIN acq.fund_allocation a
13142             ON a.fund = f.id
13143         LEFT JOIN acq.funding_source s
13144             ON a.funding_source = s.id
13145 GROUP BY
13146     f.id;
13147
13148 -- For every fund: the total encumbrances (or 0 if none),
13149 -- in the currency of the fund.
13150
13151 CREATE VIEW acq.all_fund_encumbrance_total AS
13152 SELECT
13153         f.id AS fund,
13154         COALESCE( encumb.amount, 0 ) AS amount
13155 FROM
13156         acq.fund AS f
13157                 LEFT JOIN (
13158                         SELECT
13159                                 fund,
13160                                 sum( amount ) AS amount
13161                         FROM
13162                                 acq.fund_debit
13163                         WHERE
13164                                 encumbrance
13165                         GROUP BY fund
13166                 ) AS encumb
13167                         ON f.id = encumb.fund;
13168
13169 -- For every fund: the total spent (or 0 if none),
13170 -- in the currency of the fund.
13171
13172 CREATE VIEW acq.all_fund_spent_total AS
13173 SELECT
13174     f.id AS fund,
13175     COALESCE( spent.amount, 0 ) AS amount
13176 FROM
13177     acq.fund AS f
13178         LEFT JOIN (
13179             SELECT
13180                 fund,
13181                 sum( amount ) AS amount
13182             FROM
13183                 acq.fund_debit
13184             WHERE
13185                 NOT encumbrance
13186             GROUP BY fund
13187         ) AS spent
13188             ON f.id = spent.fund;
13189
13190 -- For each fund: the amount not yet spent, in the currency
13191 -- of the fund.  May include encumbrances.
13192
13193 CREATE VIEW acq.all_fund_spent_balance AS
13194 SELECT
13195         c.fund,
13196         c.amount - d.amount AS amount
13197 FROM acq.all_fund_allocation_total c
13198     LEFT JOIN acq.all_fund_spent_total d USING (fund);
13199
13200 -- For each fund: the amount neither spent nor encumbered,
13201 -- in the currency of the fund
13202
13203 CREATE VIEW acq.all_fund_combined_balance AS
13204 SELECT
13205      a.fund,
13206      a.amount - COALESCE( c.amount, 0 ) AS amount
13207 FROM
13208      acq.all_fund_allocation_total a
13209         LEFT OUTER JOIN (
13210             SELECT
13211                 fund,
13212                 SUM( amount ) AS amount
13213             FROM
13214                 acq.fund_debit
13215             GROUP BY
13216                 fund
13217         ) AS c USING ( fund );
13218
13219 CREATE OR REPLACE FUNCTION actor.usr_merge( src_usr INT, dest_usr INT, del_addrs BOOLEAN, del_cards BOOLEAN, deactivate_cards BOOLEAN ) RETURNS VOID AS $$
13220 DECLARE
13221         suffix TEXT;
13222         bucket_row RECORD;
13223         picklist_row RECORD;
13224         queue_row RECORD;
13225         folder_row RECORD;
13226 BEGIN
13227
13228     -- do some initial cleanup 
13229     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
13230     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
13231     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
13232
13233     -- actor.*
13234     IF del_cards THEN
13235         DELETE FROM actor.card where usr = src_usr;
13236     ELSE
13237         IF deactivate_cards THEN
13238             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
13239         END IF;
13240         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
13241     END IF;
13242
13243
13244     IF del_addrs THEN
13245         DELETE FROM actor.usr_address WHERE usr = src_usr;
13246     ELSE
13247         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
13248     END IF;
13249
13250     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
13251     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
13252     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
13253     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
13254     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
13255
13256     -- permission.*
13257     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
13258     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
13259     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
13260     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
13261
13262
13263     -- container.*
13264         
13265         -- For each *_bucket table: transfer every bucket belonging to src_usr
13266         -- into the custody of dest_usr.
13267         --
13268         -- In order to avoid colliding with an existing bucket owned by
13269         -- the destination user, append the source user's id (in parenthesese)
13270         -- to the name.  If you still get a collision, add successive
13271         -- spaces to the name and keep trying until you succeed.
13272         --
13273         FOR bucket_row in
13274                 SELECT id, name
13275                 FROM   container.biblio_record_entry_bucket
13276                 WHERE  owner = src_usr
13277         LOOP
13278                 suffix := ' (' || src_usr || ')';
13279                 LOOP
13280                         BEGIN
13281                                 UPDATE  container.biblio_record_entry_bucket
13282                                 SET     owner = dest_usr, name = name || suffix
13283                                 WHERE   id = bucket_row.id;
13284                         EXCEPTION WHEN unique_violation THEN
13285                                 suffix := suffix || ' ';
13286                                 CONTINUE;
13287                         END;
13288                         EXIT;
13289                 END LOOP;
13290         END LOOP;
13291
13292         FOR bucket_row in
13293                 SELECT id, name
13294                 FROM   container.call_number_bucket
13295                 WHERE  owner = src_usr
13296         LOOP
13297                 suffix := ' (' || src_usr || ')';
13298                 LOOP
13299                         BEGIN
13300                                 UPDATE  container.call_number_bucket
13301                                 SET     owner = dest_usr, name = name || suffix
13302                                 WHERE   id = bucket_row.id;
13303                         EXCEPTION WHEN unique_violation THEN
13304                                 suffix := suffix || ' ';
13305                                 CONTINUE;
13306                         END;
13307                         EXIT;
13308                 END LOOP;
13309         END LOOP;
13310
13311         FOR bucket_row in
13312                 SELECT id, name
13313                 FROM   container.copy_bucket
13314                 WHERE  owner = src_usr
13315         LOOP
13316                 suffix := ' (' || src_usr || ')';
13317                 LOOP
13318                         BEGIN
13319                                 UPDATE  container.copy_bucket
13320                                 SET     owner = dest_usr, name = name || suffix
13321                                 WHERE   id = bucket_row.id;
13322                         EXCEPTION WHEN unique_violation THEN
13323                                 suffix := suffix || ' ';
13324                                 CONTINUE;
13325                         END;
13326                         EXIT;
13327                 END LOOP;
13328         END LOOP;
13329
13330         FOR bucket_row in
13331                 SELECT id, name
13332                 FROM   container.user_bucket
13333                 WHERE  owner = src_usr
13334         LOOP
13335                 suffix := ' (' || src_usr || ')';
13336                 LOOP
13337                         BEGIN
13338                                 UPDATE  container.user_bucket
13339                                 SET     owner = dest_usr, name = name || suffix
13340                                 WHERE   id = bucket_row.id;
13341                         EXCEPTION WHEN unique_violation THEN
13342                                 suffix := suffix || ' ';
13343                                 CONTINUE;
13344                         END;
13345                         EXIT;
13346                 END LOOP;
13347         END LOOP;
13348
13349         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
13350
13351     -- vandelay.*
13352         -- transfer queues the same way we transfer buckets (see above)
13353         FOR queue_row in
13354                 SELECT id, name
13355                 FROM   vandelay.queue
13356                 WHERE  owner = src_usr
13357         LOOP
13358                 suffix := ' (' || src_usr || ')';
13359                 LOOP
13360                         BEGIN
13361                                 UPDATE  vandelay.queue
13362                                 SET     owner = dest_usr, name = name || suffix
13363                                 WHERE   id = queue_row.id;
13364                         EXCEPTION WHEN unique_violation THEN
13365                                 suffix := suffix || ' ';
13366                                 CONTINUE;
13367                         END;
13368                         EXIT;
13369                 END LOOP;
13370         END LOOP;
13371
13372     -- money.*
13373     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13374     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13375     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13376     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13377     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13378
13379     -- action.*
13380     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13381     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13382     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13383
13384     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13385     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13386     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13387     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13388
13389     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13390     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13391     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13392     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13393     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13394
13395     -- acq.*
13396     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13397         UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13398
13399         -- transfer picklists the same way we transfer buckets (see above)
13400         FOR picklist_row in
13401                 SELECT id, name
13402                 FROM   acq.picklist
13403                 WHERE  owner = src_usr
13404         LOOP
13405                 suffix := ' (' || src_usr || ')';
13406                 LOOP
13407                         BEGIN
13408                                 UPDATE  acq.picklist
13409                                 SET     owner = dest_usr, name = name || suffix
13410                                 WHERE   id = picklist_row.id;
13411                         EXCEPTION WHEN unique_violation THEN
13412                                 suffix := suffix || ' ';
13413                                 CONTINUE;
13414                         END;
13415                         EXIT;
13416                 END LOOP;
13417         END LOOP;
13418
13419     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13420     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13421     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13422     UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13423     UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13424     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13425     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13426     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13427
13428     -- asset.*
13429     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13430     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13431     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13432     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13433     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13434     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13435
13436     -- serial.*
13437     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13438     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13439
13440     -- reporter.*
13441     -- It's not uncommon to define the reporter schema in a replica 
13442     -- DB only, so don't assume these tables exist in the write DB.
13443     BEGIN
13444         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13445     EXCEPTION WHEN undefined_table THEN
13446         -- do nothing
13447     END;
13448     BEGIN
13449         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13450     EXCEPTION WHEN undefined_table THEN
13451         -- do nothing
13452     END;
13453     BEGIN
13454         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13455     EXCEPTION WHEN undefined_table THEN
13456         -- do nothing
13457     END;
13458     BEGIN
13459                 -- transfer folders the same way we transfer buckets (see above)
13460                 FOR folder_row in
13461                         SELECT id, name
13462                         FROM   reporter.template_folder
13463                         WHERE  owner = src_usr
13464                 LOOP
13465                         suffix := ' (' || src_usr || ')';
13466                         LOOP
13467                                 BEGIN
13468                                         UPDATE  reporter.template_folder
13469                                         SET     owner = dest_usr, name = name || suffix
13470                                         WHERE   id = folder_row.id;
13471                                 EXCEPTION WHEN unique_violation THEN
13472                                         suffix := suffix || ' ';
13473                                         CONTINUE;
13474                                 END;
13475                                 EXIT;
13476                         END LOOP;
13477                 END LOOP;
13478     EXCEPTION WHEN undefined_table THEN
13479         -- do nothing
13480     END;
13481     BEGIN
13482                 -- transfer folders the same way we transfer buckets (see above)
13483                 FOR folder_row in
13484                         SELECT id, name
13485                         FROM   reporter.report_folder
13486                         WHERE  owner = src_usr
13487                 LOOP
13488                         suffix := ' (' || src_usr || ')';
13489                         LOOP
13490                                 BEGIN
13491                                         UPDATE  reporter.report_folder
13492                                         SET     owner = dest_usr, name = name || suffix
13493                                         WHERE   id = folder_row.id;
13494                                 EXCEPTION WHEN unique_violation THEN
13495                                         suffix := suffix || ' ';
13496                                         CONTINUE;
13497                                 END;
13498                                 EXIT;
13499                         END LOOP;
13500                 END LOOP;
13501     EXCEPTION WHEN undefined_table THEN
13502         -- do nothing
13503     END;
13504     BEGIN
13505                 -- transfer folders the same way we transfer buckets (see above)
13506                 FOR folder_row in
13507                         SELECT id, name
13508                         FROM   reporter.output_folder
13509                         WHERE  owner = src_usr
13510                 LOOP
13511                         suffix := ' (' || src_usr || ')';
13512                         LOOP
13513                                 BEGIN
13514                                         UPDATE  reporter.output_folder
13515                                         SET     owner = dest_usr, name = name || suffix
13516                                         WHERE   id = folder_row.id;
13517                                 EXCEPTION WHEN unique_violation THEN
13518                                         suffix := suffix || ' ';
13519                                         CONTINUE;
13520                                 END;
13521                                 EXIT;
13522                         END LOOP;
13523                 END LOOP;
13524     EXCEPTION WHEN undefined_table THEN
13525         -- do nothing
13526     END;
13527
13528     -- Finally, delete the source user
13529     DELETE FROM actor.usr WHERE id = src_usr;
13530
13531 END;
13532 $$ LANGUAGE plpgsql;
13533
13534 -- The "add" trigger functions should protect against existing NULLed values, just in case
13535 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13536 BEGIN
13537     IF NOT NEW.voided THEN
13538         UPDATE  money.materialized_billable_xact_summary
13539           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13540             last_billing_ts = NEW.billing_ts,
13541             last_billing_note = NEW.note,
13542             last_billing_type = NEW.billing_type,
13543             balance_owed = balance_owed + NEW.amount
13544           WHERE id = NEW.xact;
13545     END IF;
13546
13547     RETURN NEW;
13548 END;
13549 $$ LANGUAGE PLPGSQL;
13550
13551 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13552 BEGIN
13553     IF NOT NEW.voided THEN
13554         UPDATE  money.materialized_billable_xact_summary
13555           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13556             last_payment_ts = NEW.payment_ts,
13557             last_payment_note = NEW.note,
13558             last_payment_type = TG_ARGV[0],
13559             balance_owed = balance_owed - NEW.amount
13560           WHERE id = NEW.xact;
13561     END IF;
13562
13563     RETURN NEW;
13564 END;
13565 $$ LANGUAGE PLPGSQL;
13566
13567 -- Refresh the mat view with the corrected underlying view
13568 TRUNCATE money.materialized_billable_xact_summary;
13569 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13570
13571 -- Now redefine the view as a window onto the materialized view
13572 CREATE OR REPLACE VIEW money.billable_xact_summary AS
13573     SELECT * FROM money.materialized_billable_xact_summary;
13574
13575 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13576     user_id    IN INTEGER,
13577     perm_code  IN TEXT
13578 )
13579 RETURNS SETOF INTEGER AS $$
13580 --
13581 -- Return a set of all the org units for which a given user has a given
13582 -- permission, granted directly (not through inheritance from a parent
13583 -- org unit).
13584 --
13585 -- The permissions apply to a minimum depth of the org unit hierarchy,
13586 -- for the org unit(s) to which the user is assigned.  (They also apply
13587 -- to the subordinates of those org units, but we don't report the
13588 -- subordinates here.)
13589 --
13590 -- For purposes of this function, the permission.usr_work_ou_map table
13591 -- defines which users belong to which org units.  I.e. we ignore the
13592 -- home_ou column of actor.usr.
13593 --
13594 -- The result set may contain duplicates, which should be eliminated
13595 -- by a DISTINCT clause.
13596 --
13597 DECLARE
13598     b_super       BOOLEAN;
13599     n_perm        INTEGER;
13600     n_min_depth   INTEGER;
13601     n_work_ou     INTEGER;
13602     n_curr_ou     INTEGER;
13603     n_depth       INTEGER;
13604     n_curr_depth  INTEGER;
13605 BEGIN
13606     --
13607     -- Check for superuser
13608     --
13609     SELECT INTO b_super
13610         super_user
13611     FROM
13612         actor.usr
13613     WHERE
13614         id = user_id;
13615     --
13616     IF NOT FOUND THEN
13617         return;             -- No user?  No permissions.
13618     ELSIF b_super THEN
13619         --
13620         -- Super user has all permissions everywhere
13621         --
13622         FOR n_work_ou IN
13623             SELECT
13624                 id
13625             FROM
13626                 actor.org_unit
13627             WHERE
13628                 parent_ou IS NULL
13629         LOOP
13630             RETURN NEXT n_work_ou;
13631         END LOOP;
13632         RETURN;
13633     END IF;
13634     --
13635     -- Translate the permission name
13636     -- to a numeric permission id
13637     --
13638     SELECT INTO n_perm
13639         id
13640     FROM
13641         permission.perm_list
13642     WHERE
13643         code = perm_code;
13644     --
13645     IF NOT FOUND THEN
13646         RETURN;               -- No such permission
13647     END IF;
13648     --
13649     -- Find the highest-level org unit (i.e. the minimum depth)
13650     -- to which the permission is applied for this user
13651     --
13652     -- This query is modified from the one in permission.usr_perms().
13653     --
13654     SELECT INTO n_min_depth
13655         min( depth )
13656     FROM    (
13657         SELECT depth
13658           FROM permission.usr_perm_map upm
13659          WHERE upm.usr = user_id
13660            AND (upm.perm = n_perm OR upm.perm = -1)
13661                     UNION
13662         SELECT  gpm.depth
13663           FROM  permission.grp_perm_map gpm
13664           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13665             AND gpm.grp IN (
13666                SELECT   (permission.grp_ancestors(
13667                     (SELECT profile FROM actor.usr WHERE id = user_id)
13668                 )).id
13669             )
13670                     UNION
13671         SELECT  p.depth
13672           FROM  permission.grp_perm_map p
13673           WHERE (p.perm = n_perm OR p.perm = -1)
13674             AND p.grp IN (
13675                 SELECT (permission.grp_ancestors(m.grp)).id
13676                 FROM   permission.usr_grp_map m
13677                 WHERE  m.usr = user_id
13678             )
13679     ) AS x;
13680     --
13681     IF NOT FOUND THEN
13682         RETURN;                -- No such permission for this user
13683     END IF;
13684     --
13685     -- Identify the org units to which the user is assigned.  Note that
13686     -- we pay no attention to the home_ou column in actor.usr.
13687     --
13688     FOR n_work_ou IN
13689         SELECT
13690             work_ou
13691         FROM
13692             permission.usr_work_ou_map
13693         WHERE
13694             usr = user_id
13695     LOOP            -- For each org unit to which the user is assigned
13696         --
13697         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13698         -- We take it on faith that this depth agrees with the actual hierarchy
13699         -- defined in actor.org_unit.
13700         --
13701         SELECT INTO n_depth
13702             type.depth
13703         FROM
13704             actor.org_unit_type type
13705                 INNER JOIN actor.org_unit ou
13706                     ON ( ou.ou_type = type.id )
13707         WHERE
13708             ou.id = n_work_ou;
13709         --
13710         IF NOT FOUND THEN
13711             CONTINUE;        -- Maybe raise exception?
13712         END IF;
13713         --
13714         -- Compare the depth of the work org unit to the
13715         -- minimum depth, and branch accordingly
13716         --
13717         IF n_depth = n_min_depth THEN
13718             --
13719             -- The org unit is at the right depth, so return it.
13720             --
13721             RETURN NEXT n_work_ou;
13722         ELSIF n_depth > n_min_depth THEN
13723             --
13724             -- Traverse the org unit tree toward the root,
13725             -- until you reach the minimum depth determined above
13726             --
13727             n_curr_depth := n_depth;
13728             n_curr_ou := n_work_ou;
13729             WHILE n_curr_depth > n_min_depth LOOP
13730                 SELECT INTO n_curr_ou
13731                     parent_ou
13732                 FROM
13733                     actor.org_unit
13734                 WHERE
13735                     id = n_curr_ou;
13736                 --
13737                 IF FOUND THEN
13738                     n_curr_depth := n_curr_depth - 1;
13739                 ELSE
13740                     --
13741                     -- This can happen only if the hierarchy defined in
13742                     -- actor.org_unit is corrupted, or out of sync with
13743                     -- the depths defined in actor.org_unit_type.
13744                     -- Maybe we should raise an exception here, instead
13745                     -- of silently ignoring the problem.
13746                     --
13747                     n_curr_ou = NULL;
13748                     EXIT;
13749                 END IF;
13750             END LOOP;
13751             --
13752             IF n_curr_ou IS NOT NULL THEN
13753                 RETURN NEXT n_curr_ou;
13754             END IF;
13755         ELSE
13756             --
13757             -- The permission applies only at a depth greater than the work org unit.
13758             -- Use connectby() to find all dependent org units at the specified depth.
13759             --
13760             FOR n_curr_ou IN
13761                 SELECT ou::INTEGER
13762                 FROM connectby(
13763                         'actor.org_unit',         -- table name
13764                         'id',                     -- key column
13765                         'parent_ou',              -- recursive foreign key
13766                         n_work_ou::TEXT,          -- id of starting point
13767                         (n_min_depth - n_depth)   -- max depth to search, relative
13768                     )                             --   to starting point
13769                     AS t(
13770                         ou text,            -- dependent org unit
13771                         parent_ou text,     -- (ignore)
13772                         level int           -- depth relative to starting point
13773                     )
13774                 WHERE
13775                     level = n_min_depth - n_depth
13776             LOOP
13777                 RETURN NEXT n_curr_ou;
13778             END LOOP;
13779         END IF;
13780         --
13781     END LOOP;
13782     --
13783     RETURN;
13784     --
13785 END;
13786 $$ LANGUAGE 'plpgsql';
13787
13788 ALTER TABLE acq.purchase_order
13789         ADD COLUMN cancel_reason INT
13790                 REFERENCES acq.cancel_reason( id )
13791             DEFERRABLE INITIALLY DEFERRED,
13792         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13793
13794 -- Build the history table and lifecycle view
13795 -- for acq.purchase_order
13796
13797 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
13798
13799 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
13800
13801 ALTER TABLE acq.lineitem
13802         ADD COLUMN cancel_reason INT
13803                 REFERENCES acq.cancel_reason( id )
13804             DEFERRABLE INITIALLY DEFERRED,
13805         ADD COLUMN estimated_unit_price NUMERIC,
13806         ADD COLUMN claim_policy INT
13807                 REFERENCES acq.claim_policy
13808                 DEFERRABLE INITIALLY DEFERRED,
13809         ALTER COLUMN eg_bib_id SET DATA TYPE bigint;
13810
13811 -- Build the history table and lifecycle view
13812 -- for acq.lineitem
13813
13814 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
13815 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
13816
13817 ALTER TABLE acq.lineitem_detail
13818         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13819                                             DEFERRABLE INITIALLY DEFERRED;
13820
13821 ALTER TABLE acq.lineitem_detail
13822         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13823
13824 ALTER TABLE acq.lineitem_detail
13825         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13826                 ON DELETE CASCADE
13827                 DEFERRABLE INITIALLY DEFERRED;
13828
13829 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
13830
13831 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13832         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
13833
13834 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13835         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
13836
13837 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13838
13839     use MARC::Record;
13840     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13841     use strict;
13842
13843     my $target_xml = shift;
13844     my $source_xml = shift;
13845     my $field_spec = shift;
13846
13847     my $target_r = MARC::Record->new_from_xml( $target_xml );
13848     my $source_r = MARC::Record->new_from_xml( $source_xml );
13849
13850     return $target_xml unless ($target_r && $source_r);
13851
13852     my @field_list = split(',', $field_spec);
13853
13854     my %fields;
13855     for my $f (@field_list) {
13856         $f =~ s/^\s*//; $f =~ s/\s*$//;
13857         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13858             my $field = $1;
13859             $field =~ s/\s+//;
13860             my $sf = $2;
13861             $sf =~ s/\s+//;
13862             my $match = $3;
13863             $match =~ s/^\s*//; $match =~ s/\s*$//;
13864             $fields{$field} = { sf => [ split('', $sf) ] };
13865             if ($match) {
13866                 my ($msf,$mre) = split('~', $match);
13867                 if (length($msf) > 0 and length($mre) > 0) {
13868                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13869                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13870                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13871                 }
13872             }
13873         }
13874     }
13875
13876     for my $f ( keys %fields) {
13877         if ( @{$fields{$f}{sf}} ) {
13878             for my $from_field ($source_r->field( $f )) {
13879                 for my $to_field ($target_r->field( $f )) {
13880                     if (exists($fields{$f}{match})) {
13881                         next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13882                     }
13883                     my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
13884                     $to_field->add_subfields( @new_sf );
13885                 }
13886             }
13887         } else {
13888             my @new_fields = map { $_->clone } $source_r->field( $f );
13889             $target_r->insert_fields_ordered( @new_fields );
13890         }
13891     }
13892
13893     $target_xml = $target_r->as_xml_record;
13894     $target_xml =~ s/^<\?.+?\?>$//mo;
13895     $target_xml =~ s/\n//sgo;
13896     $target_xml =~ s/>\s+</></sgo;
13897
13898     return $target_xml;
13899
13900 $_$ LANGUAGE PLPERLU;
13901
13902 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13903
13904     use MARC::Record;
13905     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13906     use strict;
13907
13908     my $xml = shift;
13909     my $r = MARC::Record->new_from_xml( $xml );
13910
13911     return $xml unless ($r);
13912
13913     my $field_spec = shift;
13914     my @field_list = split(',', $field_spec);
13915
13916     my %fields;
13917     for my $f (@field_list) {
13918         $f =~ s/^\s*//; $f =~ s/\s*$//;
13919         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13920             my $field = $1;
13921             $field =~ s/\s+//;
13922             my $sf = $2;
13923             $sf =~ s/\s+//;
13924             my $match = $3;
13925             $match =~ s/^\s*//; $match =~ s/\s*$//;
13926             $fields{$field} = { sf => [ split('', $sf) ] };
13927             if ($match) {
13928                 my ($msf,$mre) = split('~', $match);
13929                 if (length($msf) > 0 and length($mre) > 0) {
13930                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13931                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13932                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13933                 }
13934             }
13935         }
13936     }
13937
13938     for my $f ( keys %fields) {
13939         for my $to_field ($r->field( $f )) {
13940             if (exists($fields{$f}{match})) {
13941                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13942             }
13943
13944             if ( @{$fields{$f}{sf}} ) {
13945                 $to_field->delete_subfield(code => $fields{$f}{sf});
13946             } else {
13947                 $r->delete_field( $to_field );
13948             }
13949         }
13950     }
13951
13952     $xml = $r->as_xml_record;
13953     $xml =~ s/^<\?.+?\?>$//mo;
13954     $xml =~ s/\n//sgo;
13955     $xml =~ s/>\s+</></sgo;
13956
13957     return $xml;
13958
13959 $_$ LANGUAGE PLPERLU;
13960
13961 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13962     SELECT vandelay.add_field( vandelay.strip_field( $1, $3), $2, $3 );
13963 $_$ LANGUAGE SQL;
13964
13965 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13966     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
13967 $_$ LANGUAGE SQL;
13968
13969 CREATE VIEW action.unfulfilled_hold_max_loop AS
13970         SELECT  hold,
13971                 max(count) AS max
13972         FROM    action.unfulfilled_hold_loops
13973         GROUP BY 1;
13974
13975 ALTER TABLE acq.lineitem_attr
13976         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
13977
13978 ALTER TABLE acq.lineitem_attr
13979         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13980                 ON DELETE CASCADE
13981                 DEFERRABLE INITIALLY DEFERRED;
13982
13983 ALTER TABLE acq.po_note
13984         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13985
13986 CREATE TABLE vandelay.merge_profile (
13987     id              BIGSERIAL   PRIMARY KEY,
13988     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
13989     name            TEXT        NOT NULL,
13990     add_spec        TEXT,
13991     replace_spec    TEXT,
13992     strip_spec      TEXT,
13993     preserve_spec   TEXT,
13994     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
13995     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))
13996 );
13997
13998 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
13999 DECLARE
14000     attr        RECORD;
14001     attr_def    RECORD;
14002     eg_rec      RECORD;
14003     id_value    TEXT;
14004     exact_id    BIGINT;
14005 BEGIN
14006
14007     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
14008
14009     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
14010
14011     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
14012         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
14013
14014         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
14015             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
14016             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
14017             IF exact_id IS NOT NULL THEN
14018                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
14019             END IF;
14020         END IF;
14021     END IF;
14022
14023     IF exact_id IS NULL THEN
14024         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
14025
14026             -- All numbers? check for an id match
14027             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
14028                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
14029                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14030                 END LOOP;
14031             END IF;
14032
14033             -- Looks like an ISBN? check for an isbn match
14034             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
14035                 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
14036                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
14037                     IF FOUND THEN
14038                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
14039                     END IF;
14040                 END LOOP;
14041
14042                 -- subcheck for isbn-as-tcn
14043                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
14044                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14045                 END LOOP;
14046             END IF;
14047
14048             -- check for an OCLC tcn_value match
14049             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
14050                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') AND deleted IS FALSE LOOP
14051                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14052                 END LOOP;
14053             END IF;
14054
14055             -- check for a direct tcn_value match
14056             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
14057                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14058             END LOOP;
14059
14060             -- check for a direct item barcode match
14061             FOR eg_rec IN
14062                     SELECT  DISTINCT b.*
14063                       FROM  biblio.record_entry b
14064                             JOIN asset.call_number cn ON (cn.record = b.id)
14065                             JOIN asset.copy cp ON (cp.call_number = cn.id)
14066                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
14067             LOOP
14068                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14069             END LOOP;
14070
14071         END LOOP;
14072     END IF;
14073
14074     RETURN NULL;
14075 END;
14076 $func$ LANGUAGE PLPGSQL;
14077
14078 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 $_$
14079     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
14080 $_$ LANGUAGE SQL;
14081
14082 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
14083 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
14084 DECLARE
14085     output              vandelay.compile_profile%ROWTYPE;
14086     profile             vandelay.merge_profile%ROWTYPE;
14087     profile_tmpl        TEXT;
14088     profile_tmpl_owner  TEXT;
14089     add_rule            TEXT := '';
14090     strip_rule          TEXT := '';
14091     replace_rule        TEXT := '';
14092     preserve_rule       TEXT := '';
14093
14094 BEGIN
14095
14096     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
14097     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
14098
14099     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
14100         SELECT  p.* INTO profile
14101           FROM  vandelay.merge_profile p
14102                 JOIN actor.org_unit u ON (u.id = p.owner)
14103           WHERE p.name = profile_tmpl
14104                 AND u.shortname = profile_tmpl_owner;
14105
14106         IF profile.id IS NOT NULL THEN
14107             add_rule := COALESCE(profile.add_spec,'');
14108             strip_rule := COALESCE(profile.strip_spec,'');
14109             replace_rule := COALESCE(profile.replace_spec,'');
14110             preserve_rule := COALESCE(profile.preserve_spec,'');
14111         END IF;
14112     END IF;
14113
14114     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),''),'');
14115     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),''),'');
14116     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),''),'');
14117     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),''),'');
14118
14119     output.add_rule := BTRIM(add_rule,',');
14120     output.replace_rule := BTRIM(replace_rule,',');
14121     output.strip_rule := BTRIM(strip_rule,',');
14122     output.preserve_rule := BTRIM(preserve_rule,',');
14123
14124     RETURN output;
14125 END;
14126 $_$ LANGUAGE PLPGSQL;
14127
14128 -- Template-based marc munging functions
14129 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14130 DECLARE
14131     merge_profile   vandelay.merge_profile%ROWTYPE;
14132     dyn_profile     vandelay.compile_profile%ROWTYPE;
14133     editor_string   TEXT;
14134     editor_id       INT;
14135     source_marc     TEXT;
14136     target_marc     TEXT;
14137     eg_marc         TEXT;
14138     replace_rule    TEXT;
14139     match_count     INT;
14140 BEGIN
14141
14142     SELECT  b.marc INTO eg_marc
14143       FROM  biblio.record_entry b
14144       WHERE b.id = eg_id
14145       LIMIT 1;
14146
14147     IF eg_marc IS NULL OR v_marc IS NULL THEN
14148         -- RAISE NOTICE 'no marc for template or bib record';
14149         RETURN FALSE;
14150     END IF;
14151
14152     dyn_profile := vandelay.compile_profile( v_marc );
14153
14154     IF merge_profile_id IS NOT NULL THEN
14155         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14156         IF FOUND THEN
14157             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14158             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14159             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14160             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14161         END IF;
14162     END IF;
14163
14164     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14165         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14166         RETURN FALSE;
14167     END IF;
14168
14169     IF dyn_profile.replace_rule <> '' THEN
14170         source_marc = v_marc;
14171         target_marc = eg_marc;
14172         replace_rule = dyn_profile.replace_rule;
14173     ELSE
14174         source_marc = eg_marc;
14175         target_marc = v_marc;
14176         replace_rule = dyn_profile.preserve_rule;
14177     END IF;
14178
14179     UPDATE  biblio.record_entry
14180       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14181       WHERE id = eg_id;
14182
14183     IF NOT FOUND THEN
14184         -- RAISE NOTICE 'update of biblio.record_entry failed';
14185         RETURN FALSE;
14186     END IF;
14187
14188     RETURN TRUE;
14189
14190 END;
14191 $$ LANGUAGE PLPGSQL;
14192
14193 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
14194     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
14195 $$ LANGUAGE SQL;
14196
14197 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14198 DECLARE
14199     merge_profile   vandelay.merge_profile%ROWTYPE;
14200     dyn_profile     vandelay.compile_profile%ROWTYPE;
14201     editor_string   TEXT;
14202     editor_id       INT;
14203     source_marc     TEXT;
14204     target_marc     TEXT;
14205     eg_marc         TEXT;
14206     v_marc          TEXT;
14207     replace_rule    TEXT;
14208     match_count     INT;
14209 BEGIN
14210
14211     SELECT  q.marc INTO v_marc
14212       FROM  vandelay.queued_record q
14213             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
14214       LIMIT 1;
14215
14216     IF v_marc IS NULL THEN
14217         -- RAISE NOTICE 'no marc for vandelay or bib record';
14218         RETURN FALSE;
14219     END IF;
14220
14221     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
14222         UPDATE  vandelay.queued_bib_record
14223           SET   imported_as = eg_id,
14224                 import_time = NOW()
14225           WHERE id = import_id;
14226
14227         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
14228
14229         IF editor_string IS NOT NULL AND editor_string <> '' THEN
14230             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
14231
14232             IF editor_id IS NULL THEN
14233                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
14234             END IF;
14235
14236             IF editor_id IS NOT NULL THEN
14237                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
14238             END IF;
14239         END IF;
14240
14241         RETURN TRUE;
14242     END IF;
14243
14244     -- RAISE NOTICE 'update of biblio.record_entry failed';
14245
14246     RETURN FALSE;
14247
14248 END;
14249 $$ LANGUAGE PLPGSQL;
14250
14251 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14252 DECLARE
14253     eg_id           BIGINT;
14254     match_count     INT;
14255     match_attr      vandelay.bib_attr_definition%ROWTYPE;
14256 BEGIN
14257
14258     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
14259
14260     IF FOUND THEN
14261         -- RAISE NOTICE 'already imported, cannot auto-overlay'
14262         RETURN FALSE;
14263     END IF;
14264
14265     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
14266
14267     IF match_count <> 1 THEN
14268         -- RAISE NOTICE 'not an exact match';
14269         RETURN FALSE;
14270     END IF;
14271
14272     SELECT  d.* INTO match_attr
14273       FROM  vandelay.bib_attr_definition d
14274             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
14275             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
14276       WHERE m.queued_record = import_id;
14277
14278     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
14279         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
14280         RETURN FALSE;
14281     END IF;
14282
14283     SELECT  m.eg_record INTO eg_id
14284       FROM  vandelay.bib_match m
14285       WHERE m.queued_record = import_id
14286       LIMIT 1;
14287
14288     IF eg_id IS NULL THEN
14289         RETURN FALSE;
14290     END IF;
14291
14292     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
14293 END;
14294 $$ LANGUAGE PLPGSQL;
14295
14296 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14297 DECLARE
14298     queued_record   vandelay.queued_bib_record%ROWTYPE;
14299 BEGIN
14300
14301     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
14302
14303         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
14304             RETURN NEXT queued_record.id;
14305         END IF;
14306
14307     END LOOP;
14308
14309     RETURN;
14310
14311 END;
14312 $$ LANGUAGE PLPGSQL;
14313
14314 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14315     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
14316 $$ LANGUAGE SQL;
14317
14318 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14319 DECLARE
14320     merge_profile   vandelay.merge_profile%ROWTYPE;
14321     dyn_profile     vandelay.compile_profile%ROWTYPE;
14322     source_marc     TEXT;
14323     target_marc     TEXT;
14324     eg_marc         TEXT;
14325     v_marc          TEXT;
14326     replace_rule    TEXT;
14327     match_count     INT;
14328 BEGIN
14329
14330     SELECT  b.marc INTO eg_marc
14331       FROM  authority.record_entry b
14332             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
14333       LIMIT 1;
14334
14335     SELECT  q.marc INTO v_marc
14336       FROM  vandelay.queued_record q
14337             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
14338       LIMIT 1;
14339
14340     IF eg_marc IS NULL OR v_marc IS NULL THEN
14341         -- RAISE NOTICE 'no marc for vandelay or authority record';
14342         RETURN FALSE;
14343     END IF;
14344
14345     dyn_profile := vandelay.compile_profile( v_marc );
14346
14347     IF merge_profile_id IS NOT NULL THEN
14348         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14349         IF FOUND THEN
14350             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14351             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14352             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14353             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14354         END IF;
14355     END IF;
14356
14357     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14358         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14359         RETURN FALSE;
14360     END IF;
14361
14362     IF dyn_profile.replace_rule <> '' THEN
14363         source_marc = v_marc;
14364         target_marc = eg_marc;
14365         replace_rule = dyn_profile.replace_rule;
14366     ELSE
14367         source_marc = eg_marc;
14368         target_marc = v_marc;
14369         replace_rule = dyn_profile.preserve_rule;
14370     END IF;
14371
14372     UPDATE  authority.record_entry
14373       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14374       WHERE id = eg_id;
14375
14376     IF FOUND THEN
14377         UPDATE  vandelay.queued_authority_record
14378           SET   imported_as = eg_id,
14379                 import_time = NOW()
14380           WHERE id = import_id;
14381         RETURN TRUE;
14382     END IF;
14383
14384     -- RAISE NOTICE 'update of authority.record_entry failed';
14385
14386     RETURN FALSE;
14387
14388 END;
14389 $$ LANGUAGE PLPGSQL;
14390
14391 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14392 DECLARE
14393     eg_id           BIGINT;
14394     match_count     INT;
14395 BEGIN
14396     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14397
14398     IF match_count <> 1 THEN
14399         -- RAISE NOTICE 'not an exact match';
14400         RETURN FALSE;
14401     END IF;
14402
14403     SELECT  m.eg_record INTO eg_id
14404       FROM  vandelay.authority_match m
14405       WHERE m.queued_record = import_id
14406       LIMIT 1;
14407
14408     IF eg_id IS NULL THEN
14409         RETURN FALSE;
14410     END IF;
14411
14412     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14413 END;
14414 $$ LANGUAGE PLPGSQL;
14415
14416 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14417 DECLARE
14418     queued_record   vandelay.queued_authority_record%ROWTYPE;
14419 BEGIN
14420
14421     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14422
14423         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14424             RETURN NEXT queued_record.id;
14425         END IF;
14426
14427     END LOOP;
14428
14429     RETURN;
14430
14431 END;
14432 $$ LANGUAGE PLPGSQL;
14433
14434 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14435     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14436 $$ LANGUAGE SQL;
14437
14438 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14439 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14440 DECLARE
14441     eg_tcn          TEXT;
14442     eg_tcn_source   TEXT;
14443     output          vandelay.tcn_data%ROWTYPE;
14444 BEGIN
14445
14446     -- 001/003
14447     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14448     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14449
14450         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14451         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14452             eg_tcn_source := 'System Local';
14453         END IF;
14454
14455         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14456
14457         IF NOT FOUND THEN
14458             output.used := FALSE;
14459         ELSE
14460             output.used := TRUE;
14461         END IF;
14462
14463         output.tcn := eg_tcn;
14464         output.tcn_source := eg_tcn_source;
14465         RETURN NEXT output;
14466
14467     END IF;
14468
14469     -- 901 ab
14470     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14471     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14472
14473         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14474         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14475             eg_tcn_source := 'System Local';
14476         END IF;
14477
14478         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14479
14480         IF NOT FOUND THEN
14481             output.used := FALSE;
14482         ELSE
14483             output.used := TRUE;
14484         END IF;
14485
14486         output.tcn := eg_tcn;
14487         output.tcn_source := eg_tcn_source;
14488         RETURN NEXT output;
14489
14490     END IF;
14491
14492     -- 039 ab
14493     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14494     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14495
14496         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14497         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14498             eg_tcn_source := 'System Local';
14499         END IF;
14500
14501         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14502
14503         IF NOT FOUND THEN
14504             output.used := FALSE;
14505         ELSE
14506             output.used := TRUE;
14507         END IF;
14508
14509         output.tcn := eg_tcn;
14510         output.tcn_source := eg_tcn_source;
14511         RETURN NEXT output;
14512
14513     END IF;
14514
14515     -- 020 a
14516     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14517     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14518
14519         eg_tcn_source := 'ISBN';
14520
14521         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14522
14523         IF NOT FOUND THEN
14524             output.used := FALSE;
14525         ELSE
14526             output.used := TRUE;
14527         END IF;
14528
14529         output.tcn := eg_tcn;
14530         output.tcn_source := eg_tcn_source;
14531         RETURN NEXT output;
14532
14533     END IF;
14534
14535     -- 022 a
14536     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14537     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14538
14539         eg_tcn_source := 'ISSN';
14540
14541         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14542
14543         IF NOT FOUND THEN
14544             output.used := FALSE;
14545         ELSE
14546             output.used := TRUE;
14547         END IF;
14548
14549         output.tcn := eg_tcn;
14550         output.tcn_source := eg_tcn_source;
14551         RETURN NEXT output;
14552
14553     END IF;
14554
14555     -- 010 a
14556     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14557     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14558
14559         eg_tcn_source := 'LCCN';
14560
14561         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14562
14563         IF NOT FOUND THEN
14564             output.used := FALSE;
14565         ELSE
14566             output.used := TRUE;
14567         END IF;
14568
14569         output.tcn := eg_tcn;
14570         output.tcn_source := eg_tcn_source;
14571         RETURN NEXT output;
14572
14573     END IF;
14574
14575     -- 035 a
14576     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14577     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14578
14579         eg_tcn_source := 'System Legacy';
14580
14581         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14582
14583         IF NOT FOUND THEN
14584             output.used := FALSE;
14585         ELSE
14586             output.used := TRUE;
14587         END IF;
14588
14589         output.tcn := eg_tcn;
14590         output.tcn_source := eg_tcn_source;
14591         RETURN NEXT output;
14592
14593     END IF;
14594
14595     RETURN;
14596 END;
14597 $_$ LANGUAGE PLPGSQL;
14598
14599 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14600
14601 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);
14602
14603 UPDATE biblio.record_entry SET marc = '<record xmlns="http://www.loc.gov/MARC21/slim"/>' WHERE id = -1;
14604
14605 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14606 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14607 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14608 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14609 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14610
14611 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14612 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14613 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14614 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14615
14616 ALTER TABLE metabib.series_field_entry
14617         ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source)
14618                 REFERENCES biblio.record_entry (id)
14619                 ON DELETE CASCADE
14620                 DEFERRABLE INITIALLY DEFERRED;
14621
14622 ALTER TABLE metabib.series_field_entry
14623         ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field)
14624                 REFERENCES config.metabib_field (id)
14625                 ON DELETE CASCADE
14626                 DEFERRABLE INITIALLY DEFERRED;
14627
14628 CREATE TABLE acq.claim_policy_action (
14629         id              SERIAL       PRIMARY KEY,
14630         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14631                                  ON DELETE CASCADE
14632                                      DEFERRABLE INITIALLY DEFERRED,
14633         action_interval INTERVAL     NOT NULL,
14634         action          INT          NOT NULL REFERENCES acq.claim_event_type
14635                                      DEFERRABLE INITIALLY DEFERRED,
14636         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14637 );
14638
14639 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14640 DECLARE
14641     value       TEXT;
14642     atype       TEXT;
14643     prov        INT;
14644     pos         INT;
14645     adef        RECORD;
14646     xpath_string    TEXT;
14647 BEGIN
14648     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14649  
14650         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14651  
14652         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14653             IF (atype = 'lineitem_provider_attr_definition') THEN
14654                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14655                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14656             END IF;
14657  
14658             IF (atype = 'lineitem_provider_attr_definition') THEN
14659                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14660             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14661                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14662             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14663                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14664             END IF;
14665  
14666             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14667  
14668             pos := 1;
14669  
14670             LOOP
14671                 SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14672  
14673                 IF (value IS NOT NULL AND value <> '') THEN
14674                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14675                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14676                 ELSE
14677                     EXIT;
14678                 END IF;
14679  
14680                 pos := pos + 1;
14681             END LOOP;
14682  
14683         END IF;
14684  
14685     END LOOP;
14686  
14687     RETURN NULL;
14688 END;
14689 $function$ LANGUAGE PLPGSQL;
14690
14691 UPDATE config.metabib_field SET label = name;
14692 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14693
14694 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_field_class_fkey
14695          FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14696
14697 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14698
14699 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14700
14701 CREATE TABLE config.metabib_search_alias (
14702     alias       TEXT    PRIMARY KEY,
14703     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14704     field       INT     REFERENCES config.metabib_field (id)
14705 );
14706
14707 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14708 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14709 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14710 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14711 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14712 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14713 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14714 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14715
14716 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14717 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14718 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14719 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14720 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14721 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14722 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14723 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14724 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14725 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14726 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14727 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14728 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14729
14730 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14731 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14732 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14733 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14734 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14735 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14736 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14737 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14738
14739 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14740 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14741 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14742 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14743 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14744 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
14745
14746 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14747 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14748 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14749
14750 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14751 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;
14752 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;
14753 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;
14754 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;
14755
14756 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14757 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14758 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14759 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14760
14761 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14762 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14763 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14764 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14765 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14766 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14767 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14768 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14769 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14770 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14771 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14772 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14773 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14774 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14775
14776 CREATE TABLE asset.opac_visible_copies (
14777   id        BIGINT primary key, -- copy id
14778   record    BIGINT,
14779   circ_lib  INTEGER
14780 );
14781 COMMENT ON TABLE asset.opac_visible_copies IS $$
14782 Materialized view of copies that are visible in the OPAC, used by
14783 search.query_parser_fts() to speed up OPAC visibility checks on large
14784 databases.  Contents are maintained by a set of triggers.
14785 $$;
14786 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
14787
14788 CREATE OR REPLACE FUNCTION search.query_parser_fts (
14789
14790     param_search_ou INT,
14791     param_depth     INT,
14792     param_query     TEXT,
14793     param_statuses  INT[],
14794     param_locations INT[],
14795     param_offset    INT,
14796     param_check     INT,
14797     param_limit     INT,
14798     metarecord      BOOL,
14799     staff           BOOL
14800  
14801 ) RETURNS SETOF search.search_result AS $func$
14802 DECLARE
14803
14804     current_res         search.search_result%ROWTYPE;
14805     search_org_list     INT[];
14806
14807     check_limit         INT;
14808     core_limit          INT;
14809     core_offset         INT;
14810     tmp_int             INT;
14811
14812     core_result         RECORD;
14813     core_cursor         REFCURSOR;
14814     core_rel_query      TEXT;
14815
14816     total_count         INT := 0;
14817     check_count         INT := 0;
14818     deleted_count       INT := 0;
14819     visible_count       INT := 0;
14820     excluded_count      INT := 0;
14821
14822 BEGIN
14823
14824     check_limit := COALESCE( param_check, 1000 );
14825     core_limit  := COALESCE( param_limit, 25000 );
14826     core_offset := COALESCE( param_offset, 0 );
14827
14828     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
14829
14830     IF param_search_ou > 0 THEN
14831         IF param_depth IS NOT NULL THEN
14832             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
14833         ELSE
14834             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
14835         END IF;
14836     ELSIF param_search_ou < 0 THEN
14837         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
14838     ELSIF param_search_ou = 0 THEN
14839         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
14840     END IF;
14841
14842     OPEN core_cursor FOR EXECUTE param_query;
14843
14844     LOOP
14845
14846         FETCH core_cursor INTO core_result;
14847         EXIT WHEN NOT FOUND;
14848         EXIT WHEN total_count >= core_limit;
14849
14850         total_count := total_count + 1;
14851
14852         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
14853
14854         check_count := check_count + 1;
14855
14856         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14857         IF NOT FOUND THEN
14858             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
14859             deleted_count := deleted_count + 1;
14860             CONTINUE;
14861         END IF;
14862
14863         PERFORM 1
14864           FROM  biblio.record_entry b
14865                 JOIN config.bib_source s ON (b.source = s.id)
14866           WHERE s.transcendant
14867                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14868
14869         IF FOUND THEN
14870             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
14871             visible_count := visible_count + 1;
14872
14873             current_res.id = core_result.id;
14874             current_res.rel = core_result.rel;
14875
14876             tmp_int := 1;
14877             IF metarecord THEN
14878                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14879             END IF;
14880
14881             IF tmp_int = 1 THEN
14882                 current_res.record = core_result.records[1];
14883             ELSE
14884                 current_res.record = NULL;
14885             END IF;
14886
14887             RETURN NEXT current_res;
14888
14889             CONTINUE;
14890         END IF;
14891
14892         PERFORM 1
14893           FROM  asset.call_number cn
14894                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
14895                 JOIN asset.uri uri ON (map.uri = uri.id)
14896           WHERE NOT cn.deleted
14897                 AND cn.label = '##URI##'
14898                 AND uri.active
14899                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
14900                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14901                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14902           LIMIT 1;
14903
14904         IF FOUND THEN
14905             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
14906             visible_count := visible_count + 1;
14907
14908             current_res.id = core_result.id;
14909             current_res.rel = core_result.rel;
14910
14911             tmp_int := 1;
14912             IF metarecord THEN
14913                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14914             END IF;
14915
14916             IF tmp_int = 1 THEN
14917                 current_res.record = core_result.records[1];
14918             ELSE
14919                 current_res.record = NULL;
14920             END IF;
14921
14922             RETURN NEXT current_res;
14923
14924             CONTINUE;
14925         END IF;
14926
14927         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
14928
14929             PERFORM 1
14930               FROM  asset.call_number cn
14931                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14932               WHERE NOT cn.deleted
14933                     AND NOT cp.deleted
14934                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
14935                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14936                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14937               LIMIT 1;
14938
14939             IF NOT FOUND THEN
14940                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
14941                 excluded_count := excluded_count + 1;
14942                 CONTINUE;
14943             END IF;
14944
14945         END IF;
14946
14947         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
14948
14949             PERFORM 1
14950               FROM  asset.call_number cn
14951                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14952               WHERE NOT cn.deleted
14953                     AND NOT cp.deleted
14954                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
14955                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14956                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14957               LIMIT 1;
14958
14959             IF NOT FOUND THEN
14960                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
14961                 excluded_count := excluded_count + 1;
14962                 CONTINUE;
14963             END IF;
14964
14965         END IF;
14966
14967         IF staff IS NULL OR NOT staff THEN
14968
14969             PERFORM 1
14970               FROM  asset.opac_visible_copies
14971               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14972                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14973               LIMIT 1;
14974
14975             IF NOT FOUND THEN
14976                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14977                 excluded_count := excluded_count + 1;
14978                 CONTINUE;
14979             END IF;
14980
14981         ELSE
14982
14983             PERFORM 1
14984               FROM  asset.call_number cn
14985                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14986                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
14987               WHERE NOT cn.deleted
14988                     AND NOT cp.deleted
14989                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14990                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14991               LIMIT 1;
14992
14993             IF NOT FOUND THEN
14994
14995                 PERFORM 1
14996                   FROM  asset.call_number cn
14997                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14998                   LIMIT 1;
14999
15000                 IF FOUND THEN
15001                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
15002                     excluded_count := excluded_count + 1;
15003                     CONTINUE;
15004                 END IF;
15005
15006             END IF;
15007
15008         END IF;
15009
15010         visible_count := visible_count + 1;
15011
15012         current_res.id = core_result.id;
15013         current_res.rel = core_result.rel;
15014
15015         tmp_int := 1;
15016         IF metarecord THEN
15017             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15018         END IF;
15019
15020         IF tmp_int = 1 THEN
15021             current_res.record = core_result.records[1];
15022         ELSE
15023             current_res.record = NULL;
15024         END IF;
15025
15026         RETURN NEXT current_res;
15027
15028         IF visible_count % 1000 = 0 THEN
15029             -- RAISE NOTICE ' % visible so far ... ', visible_count;
15030         END IF;
15031
15032     END LOOP;
15033
15034     current_res.id = NULL;
15035     current_res.rel = NULL;
15036     current_res.record = NULL;
15037     current_res.total = total_count;
15038     current_res.checked = check_count;
15039     current_res.deleted = deleted_count;
15040     current_res.visible = visible_count;
15041     current_res.excluded = excluded_count;
15042
15043     CLOSE core_cursor;
15044
15045     RETURN NEXT current_res;
15046
15047 END;
15048 $func$ LANGUAGE PLPGSQL;
15049
15050 ALTER TABLE biblio.record_entry ADD COLUMN owner INT;
15051 ALTER TABLE biblio.record_entry
15052          ADD CONSTRAINT biblio_record_entry_owner_fkey FOREIGN KEY (owner)
15053          REFERENCES actor.org_unit (id)
15054          DEFERRABLE INITIALLY DEFERRED;
15055
15056 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
15057
15058 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
15059 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
15060
15061 DROP VIEW auditor.biblio_record_entry_lifecycle;
15062
15063 SELECT auditor.create_auditor_lifecycle( 'biblio', 'record_entry' );
15064
15065 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
15066         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
15067 $$ LANGUAGE SQL STRICT IMMUTABLE;
15068
15069 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
15070     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
15071 $$ LANGUAGE SQL STRICT IMMUTABLE;
15072
15073 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
15074     return lc(shift);
15075 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15076
15077 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
15078     return uc(shift);
15079 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15080
15081 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
15082     use Unicode::Normalize;
15083
15084     my $x = NFD(shift);
15085     $x =~ s/\pM+//go;
15086     return $x;
15087
15088 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15089
15090 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
15091     use Unicode::Normalize;
15092
15093     my $x = NFC(shift);
15094     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
15095     return $x;
15096
15097 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15098
15099 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
15100 DECLARE
15101     setting RECORD;
15102     cur_org INT;
15103 BEGIN
15104     cur_org := org_id;
15105     LOOP
15106         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
15107         IF FOUND THEN
15108             RETURN NEXT setting;
15109         END IF;
15110         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
15111         EXIT WHEN cur_org IS NULL;
15112     END LOOP;
15113     RETURN;
15114 END;
15115 $$ LANGUAGE plpgsql STABLE;
15116
15117 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
15118 DECLARE
15119     counter INT;
15120     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
15121 BEGIN
15122
15123     SELECT  COUNT(*) INTO counter
15124       FROM  oils_xpath_table(
15125                 'id',
15126                 'marc',
15127                 'acq.lineitem',
15128                 '//*[@tag="' || tag || '"]',
15129                 'id=' || lineitem
15130             ) as t(i int,c text);
15131
15132     FOR i IN 1 .. counter LOOP
15133         FOR lida IN
15134             SELECT  *
15135               FROM  (   SELECT  id,i,t,v
15136                           FROM  oils_xpath_table(
15137                                     'id',
15138                                     'marc',
15139                                     'acq.lineitem',
15140                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
15141                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
15142                                     'id=' || lineitem
15143                                 ) as t(id int,t text,v text)
15144                     )x
15145         LOOP
15146             RETURN NEXT lida;
15147         END LOOP;
15148     END LOOP;
15149
15150     RETURN;
15151 END;
15152 $$ LANGUAGE PLPGSQL;
15153
15154 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
15155 DECLARE
15156     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
15157     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
15158     result      config.i18n_core%ROWTYPE;
15159     fallback    TEXT;
15160     keyfield    TEXT := keyclass || '.' || keycol;
15161 BEGIN
15162
15163     -- Try the full locale
15164     SELECT  * INTO result
15165       FROM  config.i18n_core
15166       WHERE fq_field = keyfield
15167             AND identity_value = keyvalue
15168             AND translation = locale;
15169
15170     -- Try just the language
15171     IF NOT FOUND THEN
15172         SELECT  * INTO result
15173           FROM  config.i18n_core
15174           WHERE fq_field = keyfield
15175                 AND identity_value = keyvalue
15176                 AND translation = language;
15177     END IF;
15178
15179     -- Fall back to the string we passed in in the first place
15180     IF NOT FOUND THEN
15181     EXECUTE
15182             'SELECT ' ||
15183                 keycol ||
15184             ' FROM ' || keytable ||
15185             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
15186                 INTO fallback;
15187         RETURN fallback;
15188     END IF;
15189
15190     RETURN result.string;
15191 END;
15192 $func$ LANGUAGE PLPGSQL STABLE;
15193
15194 SELECT auditor.create_auditor ( 'acq', 'invoice' );
15195
15196 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
15197
15198 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
15199
15200 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
15201     3, 1, 'delivered_but_lost',
15202     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
15203
15204 CREATE TABLE config.global_flag (
15205     label   TEXT    NOT NULL
15206 ) INHERITS (config.internal_flag);
15207 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
15208
15209 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
15210     VALUES (
15211         'cat.bib.use_id_for_tcn',
15212         oils_i18n_gettext(
15213             'cat.bib.use_id_for_tcn',
15214             'Cat: Use Internal ID for TCN Value',
15215             'cgf', 
15216             'label'
15217         )
15218     );
15219
15220 -- resolves performance issue noted by EG Indiana
15221
15222 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
15223
15224 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
15225
15226 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15227     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
15228 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15229     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15230 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15231     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15232 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15233     (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 );
15234 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15235     (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 );
15236 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15237     (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 );
15238 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15239     (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 );
15240 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15241     (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 );
15242 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15243     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
15244
15245 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15246  
15247
15248 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
15249
15250 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
15251 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
15252 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
15253 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
15254 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
15255 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
15256
15257 CREATE TABLE metabib.identifier_field_entry (
15258         id              BIGSERIAL       PRIMARY KEY,
15259         source          BIGINT          NOT NULL,
15260         field           INT             NOT NULL,
15261         value           TEXT            NOT NULL,
15262         index_vector    tsvector        NOT NULL
15263 );
15264 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15265         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
15266         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
15267
15268 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
15269 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
15270     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
15271 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
15272
15273 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
15274     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15275 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
15276     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15277
15278 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
15279     use Business::ISBN;
15280     use strict;
15281     use warnings;
15282
15283     # For each ISBN found in a single string containing a set of ISBNs:
15284     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
15285     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
15286
15287     my $input = shift;
15288     my $output = '';
15289
15290     foreach my $word (split(/\s/, $input)) {
15291         my $isbn = Business::ISBN->new($word);
15292
15293         # First check the checksum; if it is not valid, fix it and add the original
15294         # bad-checksum ISBN to the output
15295         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
15296             $output .= $isbn->isbn() . " ";
15297             $isbn->fix_checksum();
15298         }
15299
15300         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
15301         # and add the normalized original ISBN to the output
15302         if ($isbn && $isbn->is_valid()) {
15303             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
15304             $output .= $isbn->isbn . " ";
15305
15306             # If we successfully converted the ISBN to its counterpart, add the
15307             # converted ISBN to the output as well
15308             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
15309         }
15310     }
15311     return $output if $output;
15312
15313     # If there were no valid ISBNs, just return the raw input
15314     return $input;
15315 $func$ LANGUAGE PLPERLU;
15316
15317 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
15318 /*
15319  * Copyright (C) 2010 Merrimack Valley Library Consortium
15320  * Jason Stephenson <jstephenson@mvlc.org>
15321  * Copyright (C) 2010 Laurentian University
15322  * Dan Scott <dscott@laurentian.ca>
15323  *
15324  * The translate_isbn1013 function takes an input ISBN and returns the
15325  * following in a single space-delimited string if the input ISBN is valid:
15326  *   - The normalized input ISBN (hyphens stripped)
15327  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
15328  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
15329  */
15330 $$;
15331
15332 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
15333 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
15334 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
15335 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
15336 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
15337 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
15338
15339 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15340         'ISBN 10/13 conversion',
15341         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
15342         'translate_isbn1013',
15343         0
15344 );
15345
15346 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15347         'Replace',
15348         'Replace all occurences of first parameter in the string with the second parameter.',
15349         'replace',
15350         2
15351 );
15352
15353 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15354     SELECT  m.id, i.id, 1
15355       FROM  config.metabib_field m,
15356             config.index_normalizer i
15357       WHERE i.func IN ('first_word')
15358             AND m.id IN (18);
15359
15360 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15361     SELECT  m.id, i.id, 2
15362       FROM  config.metabib_field m,
15363             config.index_normalizer i
15364       WHERE i.func IN ('translate_isbn1013')
15365             AND m.id IN (18);
15366
15367 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15368     SELECT  m.id, i.id, $$['-','']$$
15369       FROM  config.metabib_field m,
15370             config.index_normalizer i
15371       WHERE i.func IN ('replace')
15372             AND m.id IN (19);
15373
15374 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15375     SELECT  m.id, i.id, $$[' ','']$$
15376       FROM  config.metabib_field m,
15377             config.index_normalizer i
15378       WHERE i.func IN ('replace')
15379             AND m.id IN (19);
15380
15381 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15382
15383 UPDATE  config.metabib_field_index_norm_map
15384   SET   params = REPLACE(params,E'\'','"')
15385   WHERE params IS NOT NULL AND params <> '';
15386
15387 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15388
15389 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15390
15391 ALTER TABLE config.circ_modifier
15392         ADD COLUMN avg_wait_time INTERVAL;
15393
15394 --CREATE TABLE actor.usr_password_reset (
15395 --  id SERIAL PRIMARY KEY,
15396 --  uuid TEXT NOT NULL, 
15397 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15398 --  request_time TIMESTAMP NOT NULL DEFAULT NOW(), 
15399 --  has_been_reset BOOL NOT NULL DEFAULT false
15400 --);
15401 --COMMENT ON TABLE actor.usr_password_reset IS $$
15402 --/*
15403 -- * Copyright (C) 2010 Laurentian University
15404 -- * Dan Scott <dscott@laurentian.ca>
15405 -- *
15406 -- * Self-serve password reset requests
15407 -- *
15408 -- * ****
15409 -- *
15410 -- * This program is free software; you can redistribute it and/or
15411 -- * modify it under the terms of the GNU General Public License
15412 -- * as published by the Free Software Foundation; either version 2
15413 -- * of the License, or (at your option) any later version.
15414 -- *
15415 -- * This program is distributed in the hope that it will be useful,
15416 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15417 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15418 -- * GNU General Public License for more details.
15419 -- */
15420 --$$;
15421 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15422 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15423 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15424 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15425
15426 -- Use the identifier search class tsconfig
15427 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15428 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15429     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15430     FOR EACH ROW
15431     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15432
15433 INSERT INTO config.global_flag (name,label,enabled)
15434     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15435 INSERT INTO config.global_flag (name,label,enabled)
15436     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15437
15438 -- turn a JSON scalar into an SQL TEXT value
15439 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15440     use JSON::XS;                    
15441     my $json = shift();
15442     my $txt;
15443     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15444     return undef if ($@);
15445     return $txt
15446 $f$ LANGUAGE PLPERLU;
15447
15448 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15449 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15450 DECLARE
15451     c               action.circulation%ROWTYPE;
15452     view_age        INTERVAL;
15453     usr_view_age    actor.usr_setting%ROWTYPE;
15454     usr_view_start  actor.usr_setting%ROWTYPE;
15455 BEGIN
15456     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15457     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15458
15459     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15460         -- User opted in and supplied a retention age
15461         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15462             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15463         ELSE
15464             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15465         END IF;
15466     ELSIF usr_view_start.value IS NOT NULL THEN
15467         -- User opted in
15468         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15469     ELSE
15470         -- User did not opt in
15471         RETURN;
15472     END IF;
15473
15474     FOR c IN
15475         SELECT  *
15476           FROM  action.circulation
15477           WHERE usr = usr_id
15478                 AND parent_circ IS NULL
15479                 AND xact_start > NOW() - view_age
15480           ORDER BY xact_start
15481     LOOP
15482         RETURN NEXT c;
15483     END LOOP;
15484
15485     RETURN;
15486 END;
15487 $func$ LANGUAGE PLPGSQL;
15488
15489 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15490 DECLARE
15491     usr_keep_age    actor.usr_setting%ROWTYPE;
15492     usr_keep_start  actor.usr_setting%ROWTYPE;
15493     org_keep_age    INTERVAL;
15494     org_keep_count  INT;
15495
15496     keep_age        INTERVAL;
15497
15498     target_acp      RECORD;
15499     circ_chain_head action.circulation%ROWTYPE;
15500     circ_chain_tail action.circulation%ROWTYPE;
15501
15502     purge_position  INT;
15503     count_purged    INT;
15504 BEGIN
15505
15506     count_purged := 0;
15507
15508     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15509
15510     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15511     IF org_keep_count IS NULL THEN
15512         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15513     END IF;
15514
15515     -- First, find copies with more than keep_count non-renewal circs
15516     FOR target_acp IN
15517         SELECT  target_copy,
15518                 COUNT(*) AS total_real_circs
15519           FROM  action.circulation
15520           WHERE parent_circ IS NULL
15521                 AND xact_finish IS NOT NULL
15522           GROUP BY target_copy
15523           HAVING COUNT(*) > org_keep_count
15524     LOOP
15525         purge_position := 0;
15526         -- And, for those, select circs that are finished and older than keep_age
15527         FOR circ_chain_head IN
15528             SELECT  *
15529               FROM  action.circulation
15530               WHERE target_copy = target_acp.target_copy
15531                     AND parent_circ IS NULL
15532               ORDER BY xact_start
15533         LOOP
15534
15535             -- Stop once we've purged enough circs to hit org_keep_count
15536             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15537
15538             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15539             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15540
15541             -- Now get the user settings, if any, to block purging if the user wants to keep more circs
15542             usr_keep_age.value := NULL;
15543             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15544
15545             usr_keep_start.value := NULL;
15546             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start';
15547
15548             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15549                 IF oils_json_to_text(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ) THEN
15550                     keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15551                 ELSE
15552                     keep_age := oils_json_to_text(usr_keep_age.value)::INTERVAL;
15553                 END IF;
15554             ELSIF usr_keep_start.value IS NOT NULL THEN
15555                 keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15556             ELSE
15557                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTERVAL );
15558             END IF;
15559
15560             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15561
15562             -- We've passed the purging tests, purge the circ chain starting at the end
15563             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15564             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15565                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15566                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15567             END LOOP;
15568
15569             count_purged := count_purged + 1;
15570             purge_position := purge_position + 1;
15571
15572         END LOOP;
15573     END LOOP;
15574 END;
15575 $func$ LANGUAGE PLPGSQL;
15576
15577 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15578 DECLARE
15579     h               action.hold_request%ROWTYPE;
15580     view_age        INTERVAL;
15581     view_count      INT;
15582     usr_view_count  actor.usr_setting%ROWTYPE;
15583     usr_view_age    actor.usr_setting%ROWTYPE;
15584     usr_view_start  actor.usr_setting%ROWTYPE;
15585 BEGIN
15586     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15587     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15588     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15589
15590     FOR h IN
15591         SELECT  *
15592           FROM  action.hold_request
15593           WHERE usr = usr_id
15594                 AND fulfillment_time IS NULL
15595                 AND cancel_time IS NULL
15596           ORDER BY request_time DESC
15597     LOOP
15598         RETURN NEXT h;
15599     END LOOP;
15600
15601     IF usr_view_start.value IS NULL THEN
15602         RETURN;
15603     END IF;
15604
15605     IF usr_view_age.value IS NOT NULL THEN
15606         -- User opted in and supplied a retention age
15607         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15608             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15609         ELSE
15610             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15611         END IF;
15612     ELSE
15613         -- User opted in
15614         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15615     END IF;
15616
15617     IF usr_view_count.value IS NOT NULL THEN
15618         view_count := oils_json_to_text(usr_view_count.value)::INT;
15619     ELSE
15620         view_count := 1000;
15621     END IF;
15622
15623     -- show some fulfilled/canceled holds
15624     FOR h IN
15625         SELECT  *
15626           FROM  action.hold_request
15627           WHERE usr = usr_id
15628                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15629                 AND request_time > NOW() - view_age
15630           ORDER BY request_time DESC
15631           LIMIT view_count
15632     LOOP
15633         RETURN NEXT h;
15634     END LOOP;
15635
15636     RETURN;
15637 END;
15638 $func$ LANGUAGE PLPGSQL;
15639
15640 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15641
15642 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15643
15644 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15645
15646 DROP TABLE IF EXISTS serial.issuance CASCADE;
15647
15648 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15649
15650 DROP TABLE IF EXISTS serial.subscription CASCADE;
15651
15652 CREATE TABLE asset.copy_template (
15653         id             SERIAL   PRIMARY KEY,
15654         owning_lib     INT      NOT NULL
15655                                 REFERENCES actor.org_unit (id)
15656                                 DEFERRABLE INITIALLY DEFERRED,
15657         creator        BIGINT   NOT NULL
15658                                 REFERENCES actor.usr (id)
15659                                 DEFERRABLE INITIALLY DEFERRED,
15660         editor         BIGINT   NOT NULL
15661                                 REFERENCES actor.usr (id)
15662                                 DEFERRABLE INITIALLY DEFERRED,
15663         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15664         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15665         name           TEXT     NOT NULL,
15666         -- columns above this point are attributes of the template itself
15667         -- columns after this point are attributes of the copy this template modifies/creates
15668         circ_lib       INT      REFERENCES actor.org_unit (id)
15669                                 DEFERRABLE INITIALLY DEFERRED,
15670         status         INT      REFERENCES config.copy_status (id)
15671                                 DEFERRABLE INITIALLY DEFERRED,
15672         location       INT      REFERENCES asset.copy_location (id)
15673                                 DEFERRABLE INITIALLY DEFERRED,
15674         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15675                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15676         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15677                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15678         age_protect    INT,
15679         circulate      BOOL,
15680         deposit        BOOL,
15681         ref            BOOL,
15682         holdable       BOOL,
15683         deposit_amount NUMERIC(6,2),
15684         price          NUMERIC(8,2),
15685         circ_modifier  TEXT,
15686         circ_as_type   TEXT,
15687         alert_message  TEXT,
15688         opac_visible   BOOL,
15689         floating       BOOL,
15690         mint_condition BOOL
15691 );
15692
15693 CREATE TABLE serial.subscription (
15694         id                     SERIAL       PRIMARY KEY,
15695         owning_lib             INT          NOT NULL DEFAULT 1
15696                                             REFERENCES actor.org_unit (id)
15697                                             ON DELETE SET NULL
15698                                             DEFERRABLE INITIALLY DEFERRED,
15699         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15700         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15701         record_entry           BIGINT       REFERENCES biblio.record_entry (id)
15702                                             ON DELETE SET NULL
15703                                             DEFERRABLE INITIALLY DEFERRED,
15704         expected_date_offset   INTERVAL
15705         -- acquisitions/business-side tables link to here
15706 );
15707 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
15708 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
15709
15710 --at least one distribution per org_unit holding issues
15711 CREATE TABLE serial.distribution (
15712         id                    SERIAL  PRIMARY KEY,
15713         record_entry          BIGINT  REFERENCES serial.record_entry (id)
15714                                       ON DELETE SET NULL
15715                                       DEFERRABLE INITIALLY DEFERRED,
15716         summary_method        TEXT    CONSTRAINT sdist_summary_method_check CHECK (
15717                                           summary_method IS NULL
15718                                           OR summary_method IN ( 'add_to_sre',
15719                                           'merge_with_sre', 'use_sre_only',
15720                                           'use_sdist_only')),
15721         subscription          INT     NOT NULL
15722                                       REFERENCES serial.subscription (id)
15723                                                                   ON DELETE CASCADE
15724                                                                   DEFERRABLE INITIALLY DEFERRED,
15725         holding_lib           INT     NOT NULL
15726                                       REFERENCES actor.org_unit (id)
15727                                                                   DEFERRABLE INITIALLY DEFERRED,
15728         label                 TEXT    NOT NULL,
15729         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
15730                                       DEFERRABLE INITIALLY DEFERRED,
15731         receive_unit_template INT     REFERENCES asset.copy_template (id)
15732                                       DEFERRABLE INITIALLY DEFERRED,
15733         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
15734                                       DEFERRABLE INITIALLY DEFERRED,
15735         bind_unit_template    INT     REFERENCES asset.copy_template (id)
15736                                       DEFERRABLE INITIALLY DEFERRED,
15737         unit_label_prefix     TEXT,
15738         unit_label_suffix     TEXT
15739 );
15740 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
15741 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
15742
15743 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
15744
15745 CREATE TABLE serial.stream (
15746         id              SERIAL  PRIMARY KEY,
15747         distribution    INT     NOT NULL
15748                                 REFERENCES serial.distribution (id)
15749                                 ON DELETE CASCADE
15750                                 DEFERRABLE INITIALLY DEFERRED,
15751         routing_label   TEXT
15752 );
15753 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
15754
15755 CREATE UNIQUE INDEX label_once_per_dist
15756         ON serial.stream (distribution, routing_label)
15757         WHERE routing_label IS NOT NULL;
15758
15759 CREATE TABLE serial.routing_list_user (
15760         id             SERIAL       PRIMARY KEY,
15761         stream         INT          NOT NULL
15762                                     REFERENCES serial.stream
15763                                     ON DELETE CASCADE
15764                                     DEFERRABLE INITIALLY DEFERRED,
15765         pos            INT          NOT NULL DEFAULT 1,
15766         reader         INT          REFERENCES actor.usr
15767                                     ON DELETE CASCADE
15768                                     DEFERRABLE INITIALLY DEFERRED,
15769         department     TEXT,
15770         note           TEXT,
15771         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
15772         CONSTRAINT reader_or_dept CHECK
15773         (
15774             -- Recipient is a person or a department, but not both
15775                 (reader IS NOT NULL AND department IS NULL) OR
15776                 (reader IS NULL AND department IS NOT NULL)
15777         )
15778 );
15779 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
15780 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
15781
15782 CREATE TABLE serial.caption_and_pattern (
15783         id           SERIAL       PRIMARY KEY,
15784         subscription INT          NOT NULL REFERENCES serial.subscription (id)
15785                                   ON DELETE CASCADE
15786                                   DEFERRABLE INITIALLY DEFERRED,
15787         type         TEXT         NOT NULL
15788                                   CONSTRAINT cap_type CHECK ( type in
15789                                   ( 'basic', 'supplement', 'index' )),
15790         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
15791         start_date   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
15792         end_date     TIMESTAMP WITH TIME ZONE,
15793         active       BOOL         NOT NULL DEFAULT FALSE,
15794         pattern_code TEXT         NOT NULL,       -- must contain JSON
15795         enum_1       TEXT,
15796         enum_2       TEXT,
15797         enum_3       TEXT,
15798         enum_4       TEXT,
15799         enum_5       TEXT,
15800         enum_6       TEXT,
15801         chron_1      TEXT,
15802         chron_2      TEXT,
15803         chron_3      TEXT,
15804         chron_4      TEXT,
15805         chron_5      TEXT
15806 );
15807 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
15808
15809 CREATE TABLE serial.issuance (
15810         id              SERIAL    PRIMARY KEY,
15811         creator         INT       NOT NULL
15812                                   REFERENCES actor.usr (id)
15813                                                           DEFERRABLE INITIALLY DEFERRED,
15814         editor          INT       NOT NULL
15815                                   REFERENCES actor.usr (id)
15816                                   DEFERRABLE INITIALLY DEFERRED,
15817         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15818         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15819         subscription    INT       NOT NULL
15820                                   REFERENCES serial.subscription (id)
15821                                   ON DELETE CASCADE
15822                                   DEFERRABLE INITIALLY DEFERRED,
15823         label           TEXT,
15824         date_published  TIMESTAMP WITH TIME ZONE,
15825         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
15826                               DEFERRABLE INITIALLY DEFERRED,
15827         holding_code    TEXT,
15828         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
15829                                   (
15830                                       holding_type IS NULL
15831                                       OR holding_type IN ('basic','supplement','index')
15832                                   ),
15833         holding_link_id INT
15834         -- TODO: add columns for separate enumeration/chronology values
15835 );
15836 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
15837 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
15838 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
15839
15840 CREATE TABLE serial.unit (
15841         label           TEXT,
15842         label_sort_key  TEXT,
15843         contents        TEXT    NOT NULL
15844 ) INHERITS (asset.copy);
15845 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
15846 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
15847 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
15848 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
15849 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
15850
15851 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
15852
15853 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
15854
15855 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15856
15857 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15858
15859 CREATE TABLE serial.item (
15860         id              SERIAL  PRIMARY KEY,
15861         creator         INT     NOT NULL
15862                                 REFERENCES actor.usr (id)
15863                                 DEFERRABLE INITIALLY DEFERRED,
15864         editor          INT     NOT NULL
15865                                 REFERENCES actor.usr (id)
15866                                 DEFERRABLE INITIALLY DEFERRED,
15867         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15868         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15869         issuance        INT     NOT NULL
15870                                 REFERENCES serial.issuance (id)
15871                                 ON DELETE CASCADE
15872                                 DEFERRABLE INITIALLY DEFERRED,
15873         stream          INT     NOT NULL
15874                                 REFERENCES serial.stream (id)
15875                                 ON DELETE CASCADE
15876                                 DEFERRABLE INITIALLY DEFERRED,
15877         unit            INT     REFERENCES serial.unit (id)
15878                                 ON DELETE SET NULL
15879                                 DEFERRABLE INITIALLY DEFERRED,
15880         uri             INT     REFERENCES asset.uri (id)
15881                                 ON DELETE SET NULL
15882                                 DEFERRABLE INITIALLY DEFERRED,
15883         date_expected   TIMESTAMP WITH TIME ZONE,
15884         date_received   TIMESTAMP WITH TIME ZONE,
15885         status          TEXT    CONSTRAINT valid_status CHECK (
15886                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
15887                                'Expected', 'Not Held', 'Not Published', 'Received'))
15888                             DEFAULT 'Expected',
15889         shadowed        BOOL    NOT NULL DEFAULT FALSE
15890 );
15891 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
15892 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
15893 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
15894 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
15895 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
15896 CREATE INDEX serial_item_status_idx ON serial.item (status);
15897
15898 CREATE TABLE serial.item_note (
15899         id          SERIAL  PRIMARY KEY,
15900         item        INT     NOT NULL
15901                             REFERENCES serial.item (id)
15902                             ON DELETE CASCADE
15903                             DEFERRABLE INITIALLY DEFERRED,
15904         creator     INT     NOT NULL
15905                             REFERENCES actor.usr (id)
15906                             DEFERRABLE INITIALLY DEFERRED,
15907         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15908         pub         BOOL    NOT NULL    DEFAULT FALSE,
15909         title       TEXT    NOT NULL,
15910         value       TEXT    NOT NULL
15911 );
15912 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
15913
15914 CREATE TABLE serial.basic_summary (
15915         id                  SERIAL  PRIMARY KEY,
15916         distribution        INT     NOT NULL
15917                                     REFERENCES serial.distribution (id)
15918                                     ON DELETE CASCADE
15919                                     DEFERRABLE INITIALLY DEFERRED,
15920         generated_coverage  TEXT    NOT NULL,
15921         textual_holdings    TEXT,
15922         show_generated      BOOL    NOT NULL DEFAULT TRUE
15923 );
15924 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
15925
15926 CREATE TABLE serial.supplement_summary (
15927         id                  SERIAL  PRIMARY KEY,
15928         distribution        INT     NOT NULL
15929                                     REFERENCES serial.distribution (id)
15930                                     ON DELETE CASCADE
15931                                     DEFERRABLE INITIALLY DEFERRED,
15932         generated_coverage  TEXT    NOT NULL,
15933         textual_holdings    TEXT,
15934         show_generated      BOOL    NOT NULL DEFAULT TRUE
15935 );
15936 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
15937
15938 CREATE TABLE serial.index_summary (
15939         id                  SERIAL  PRIMARY KEY,
15940         distribution        INT     NOT NULL
15941                                     REFERENCES serial.distribution (id)
15942                                     ON DELETE CASCADE
15943                                     DEFERRABLE INITIALLY DEFERRED,
15944         generated_coverage  TEXT    NOT NULL,
15945         textual_holdings    TEXT,
15946         show_generated      BOOL    NOT NULL DEFAULT TRUE
15947 );
15948 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
15949
15950 -- 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.
15951
15952 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
15953 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15954
15955 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
15956 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;
15957
15958 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
15959 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15960
15961 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
15962 RETURNS INTEGER AS $$
15963 BEGIN
15964         RETURN EXTRACT( EPOCH FROM interval_val );
15965 END;
15966 $$ LANGUAGE plpgsql;
15967
15968 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
15969 RETURNS INTEGER AS $$
15970 BEGIN
15971         RETURN config.interval_to_seconds( interval_string::INTERVAL );
15972 END;
15973 $$ LANGUAGE plpgsql;
15974
15975 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
15976     'temp',
15977     oils_i18n_gettext(
15978         'temp',
15979         'Temporary bucket which gets deleted after use.',
15980         'cbrebt',
15981         'label'
15982     )
15983 );
15984
15985 -- 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.
15986
15987 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
15988 BEGIN
15989
15990     IF xml_is_well_formed(NEW.marc) THEN
15991         RETURN NEW;
15992     ELSE
15993         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
15994     END IF;
15995     
15996 END;
15997 $func$ LANGUAGE PLPGSQL;
15998
15999 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();
16000
16001 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();
16002
16003 ALTER TABLE serial.record_entry
16004         ALTER COLUMN marc DROP NOT NULL;
16005
16006 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
16007 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
16008 <xsl:stylesheet
16009     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
16010     xmlns:marc="http://www.loc.gov/MARC21/slim"
16011     version="1.0">
16012 <!--
16013 Copyright (C) 2010  Equinox Software, Inc.
16014 Galen Charlton <gmc@esilibrary.cOM.
16015
16016 This program is free software; you can redistribute it and/or
16017 modify it under the terms of the GNU General Public License
16018 as published by the Free Software Foundation; either version 2
16019 of the License, or (at your option) any later version.
16020
16021 This program is distributed in the hope that it will be useful,
16022 but WITHOUT ANY WARRANTY; without even the implied warranty of
16023 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16024 GNU General Public License for more details.
16025
16026 marc21_expand_880.xsl - stylesheet used during indexing to
16027                         map alternative graphical representations
16028                         of MARC fields stored in 880 fields
16029                         to the corresponding tag name and value.
16030
16031 For example, if a MARC record for a Chinese book has
16032
16033 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16034 880.00 $6 245-01/$1 $a八十三年短篇小說選
16035
16036 this stylesheet will transform it to the equivalent of
16037
16038 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16039 245.00 $6 245-01/$1 $a八十三年短篇小說選
16040
16041 -->
16042     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
16043
16044     <xsl:template match="@*|node()">
16045         <xsl:copy>
16046             <xsl:apply-templates select="@*|node()"/>
16047         </xsl:copy>
16048     </xsl:template>
16049
16050     <xsl:template match="//marc:datafield[@tag='880']">
16051         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
16052             <marc:datafield>
16053                 <xsl:attribute name="tag">
16054                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
16055                 </xsl:attribute>
16056                 <xsl:attribute name="ind1">
16057                     <xsl:value-of select="@ind1" />
16058                 </xsl:attribute>
16059                 <xsl:attribute name="ind2">
16060                     <xsl:value-of select="@ind2" />
16061                 </xsl:attribute>
16062                 <xsl:apply-templates />
16063             </marc:datafield>
16064         </xsl:if>
16065     </xsl:template>
16066     
16067 </xsl:stylesheet>$$);
16068
16069 -- Splitting the ingest trigger up into little bits
16070
16071 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
16072     flag INTEGER PRIMARY KEY
16073 ) ON COMMIT DROP;
16074 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
16075
16076 -- cause failure if either of the tables we want to drop have rows
16077 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
16078 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
16079
16080 DROP TABLE IF EXISTS asset.copy_transparency_map;
16081 DROP TABLE IF EXISTS asset.copy_transparency;
16082
16083 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
16084
16085 -- We won't necessarily use all of these, but they are here for completeness.
16086 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
16087 -- Values are the EDI code value + 1000
16088
16089 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
16090 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
16091 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
16092 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
16093 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
16094 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
16095 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
16096 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
16097 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
16098 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
16099 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
16100 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
16101 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
16102 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
16103 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
16104 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
16105 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
16106 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
16107 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
16108 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
16109 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
16110 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
16111 ('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).'),
16112 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
16113 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
16114 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
16115 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
16116 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
16117 ('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.'),
16118 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
16119 ('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.'),
16120 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
16121 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
16122 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
16123 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
16124 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
16125 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
16126 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
16127 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
16128 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
16129 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
16130 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
16131 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
16132 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
16133 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
16134 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
16135 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
16136 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
16137 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
16138 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
16139 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
16140 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
16141 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
16142 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
16143 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
16144 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
16145 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
16146 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
16147 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
16148 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
16149 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
16150 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
16151 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
16152 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
16153 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
16154 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
16155 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
16156 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
16157 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
16158 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
16159 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
16160 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
16161 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
16162 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
16163 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
16164 ('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).'),
16165 ('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).'),
16166 ('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).'),
16167 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
16168 ('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).'),
16169 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
16170 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
16171 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
16172 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
16173 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
16174 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
16175 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
16176 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
16177 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
16178 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
16179 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
16180 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
16181 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
16182 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
16183 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
16184 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
16185 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
16186 ('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.'),
16187 ('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.'),
16188 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
16189 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
16190 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
16191 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
16192 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
16193 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
16194 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
16195 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
16196 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
16197 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
16198 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
16199 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
16200 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
16201 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
16202 ('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.'),
16203 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
16204 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
16205
16206 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
16207     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
16208  
16209 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
16210  
16211 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16212         'Remove Parenthesized Substring',
16213         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
16214         'remove_paren_substring',
16215         0
16216 );
16217
16218 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16219         'Trim Surrounding Space',
16220         'Trim leading and trailing spaces from extracted text.',
16221         'btrim',
16222         0
16223 );
16224
16225 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16226     SELECT  m.id,
16227             i.id,
16228             -2
16229       FROM  config.metabib_field m,
16230             config.index_normalizer i
16231       WHERE i.func IN ('remove_paren_substring')
16232             AND m.id IN (26);
16233
16234 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16235     SELECT  m.id,
16236             i.id,
16237             -1
16238       FROM  config.metabib_field m,
16239             config.index_normalizer i
16240       WHERE i.func IN ('btrim')
16241             AND m.id IN (26);
16242
16243 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
16244 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
16245 DECLARE
16246     dyn_profile     vandelay.compile_profile%ROWTYPE;
16247     replace_rule    TEXT;
16248     tmp_marc        TEXT;
16249     trgt_marc        TEXT;
16250     tmpl_marc        TEXT;
16251     match_count     INT;
16252 BEGIN
16253
16254     IF target_marc IS NULL OR template_marc IS NULL THEN
16255         -- RAISE NOTICE 'no marc for target or template record';
16256         RETURN NULL;
16257     END IF;
16258
16259     dyn_profile := vandelay.compile_profile( template_marc );
16260
16261     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
16262         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
16263         RETURN NULL;
16264     END IF;
16265
16266     IF dyn_profile.replace_rule <> '' THEN
16267         trgt_marc = target_marc;
16268         tmpl_marc = template_marc;
16269         replace_rule = dyn_profile.replace_rule;
16270     ELSE
16271         tmp_marc = target_marc;
16272         trgt_marc = template_marc;
16273         tmpl_marc = tmp_marc;
16274         replace_rule = dyn_profile.preserve_rule;
16275     END IF;
16276
16277     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
16278
16279 END;
16280 $$ LANGUAGE PLPGSQL;
16281
16282 -- Function to generate an ephemeral overlay template from an authority record
16283 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
16284
16285     use MARC::Record;
16286     use MARC::File::XML (BinaryEncoding => 'UTF-8');
16287
16288     my $xml = shift;
16289     my $r = MARC::Record->new_from_xml( $xml );
16290
16291     return undef unless ($r);
16292
16293     my $id = shift() || $r->subfield( '901' => 'c' );
16294     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
16295     return undef unless ($id); # We need an ID!
16296
16297     my $tmpl = MARC::Record->new();
16298
16299     my @rule_fields;
16300     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
16301
16302         my $tag = $field->tag;
16303         my $i1 = $field->indicator(1);
16304         my $i2 = $field->indicator(2);
16305         my $sf = join '', map { $_->[0] } $field->subfields;
16306         my @data = map { @$_ } $field->subfields;
16307
16308         my @replace_them;
16309
16310         # Map the authority field to bib fields it can control.
16311         if ($tag >= 100 and $tag <= 111) {       # names
16312             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
16313         } elsif ($tag eq '130') {                # uniform title
16314             @replace_them = qw/130 240 440 730 830/;
16315         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
16316             @replace_them = ($tag + 500);
16317         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
16318             @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/;
16319         } else {
16320             next;
16321         }
16322
16323         # Dummy up the bib-side data
16324         $tmpl->append_fields(
16325             map {
16326                 MARC::Field->new( $_, $i1, $i2, @data )
16327             } @replace_them
16328         );
16329
16330         # Construct some 'replace' rules
16331         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
16332     }
16333
16334     # Insert the replace rules into the template
16335     $tmpl->append_fields(
16336         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
16337     );
16338
16339     $xml = $tmpl->as_xml_record;
16340     $xml =~ s/^<\?.+?\?>$//mo;
16341     $xml =~ s/\n//sgo;
16342     $xml =~ s/>\s+</></sgo;
16343
16344     return $xml;
16345
16346 $func$ LANGUAGE PLPERLU;
16347
16348 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
16349     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
16350 $func$ LANGUAGE SQL;
16351
16352 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
16353     SELECT authority.generate_overlay_template( $1, NULL );
16354 $func$ LANGUAGE SQL;
16355
16356 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
16357 DELETE FROM config.metabib_field WHERE id = 26;
16358
16359 -- Making this a global_flag (UI accessible) instead of an internal_flag
16360 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16361     VALUES (
16362         'ingest.disable_authority_linking',
16363         oils_i18n_gettext(
16364             'ingest.disable_authority_linking',
16365             'Authority Automation: Disable bib-authority link tracking',
16366             'cgf', 
16367             'label'
16368         )
16369     );
16370 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
16371 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
16372
16373 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16374     VALUES (
16375         'ingest.disable_authority_auto_update',
16376         oils_i18n_gettext(
16377             'ingest.disable_authority_auto_update',
16378             'Authority Automation: Disable automatic authority updating (requires link tracking)',
16379             'cgf', 
16380             'label'
16381         )
16382     );
16383
16384 -- Enable automated ingest of authority records; just insert the row into
16385 -- authority.record_entry and authority.full_rec will automatically be populated
16386
16387 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
16388     UPDATE  biblio.record_entry
16389       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
16390       WHERE id = $2;
16391     SELECT $1;
16392 $func$ LANGUAGE SQL;
16393
16394 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
16395     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
16396 $func$ LANGUAGE SQL;
16397
16398 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
16399
16400 use MARC::Record;
16401 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16402
16403 my $xml = shift;
16404 my $r = MARC::Record->new_from_xml( $xml );
16405
16406 return_next( { tag => 'LDR', value => $r->leader } );
16407
16408 for my $f ( $r->fields ) {
16409     if ($f->is_control_field) {
16410         return_next({ tag => $f->tag, value => $f->data });
16411     } else {
16412         for my $s ($f->subfields) {
16413             return_next({
16414                 tag      => $f->tag,
16415                 ind1     => $f->indicator(1),
16416                 ind2     => $f->indicator(2),
16417                 subfield => $s->[0],
16418                 value    => $s->[1]
16419             });
16420
16421         }
16422     }
16423 }
16424
16425 return undef;
16426
16427 $func$ LANGUAGE PLPERLU;
16428
16429 CREATE OR REPLACE FUNCTION authority.flatten_marc ( rid BIGINT ) RETURNS SETOF authority.full_rec AS $func$
16430 DECLARE
16431     auth    authority.record_entry%ROWTYPE;
16432     output    authority.full_rec%ROWTYPE;
16433     field    RECORD;
16434 BEGIN
16435     SELECT INTO auth * FROM authority.record_entry WHERE id = rid;
16436
16437     FOR field IN SELECT * FROM authority.flatten_marc( auth.marc ) LOOP
16438         output.record := rid;
16439         output.ind1 := field.ind1;
16440         output.ind2 := field.ind2;
16441         output.tag := field.tag;
16442         output.subfield := field.subfield;
16443         IF field.subfield IS NOT NULL THEN
16444             output.value := naco_normalize(field.value, field.subfield);
16445         ELSE
16446             output.value := field.value;
16447         END IF;
16448
16449         CONTINUE WHEN output.value IS NULL;
16450
16451         RETURN NEXT output;
16452     END LOOP;
16453 END;
16454 $func$ LANGUAGE PLPGSQL;
16455
16456 -- authority.rec_descriptor appears to be unused currently
16457 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
16458 BEGIN
16459     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
16460 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
16461 --        SELECT  auth_id, ;
16462
16463     RETURN;
16464 END;
16465 $func$ LANGUAGE PLPGSQL;
16466
16467 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16468 BEGIN
16469     DELETE FROM authority.full_rec WHERE record = auth_id;
16470     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16471         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16472
16473     RETURN;
16474 END;
16475 $func$ LANGUAGE PLPGSQL;
16476
16477 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16478 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16479 BEGIN
16480
16481     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16482         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16483           -- Should remove matching $0 from controlled fields at the same time?
16484         RETURN NEW; -- and we're done
16485     END IF;
16486
16487     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16488         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16489
16490         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16491             RETURN NEW;
16492         END IF;
16493     END IF;
16494
16495     -- Flatten and insert the afr data
16496     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16497     IF NOT FOUND THEN
16498         PERFORM authority.reingest_authority_full_rec(NEW.id);
16499 -- authority.rec_descriptor is not currently used
16500 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16501 --        IF NOT FOUND THEN
16502 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16503 --        END IF;
16504     END IF;
16505
16506     RETURN NEW;
16507 END;
16508 $func$ LANGUAGE PLPGSQL;
16509
16510 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 ();
16511
16512 -- Some records manage to get XML namespace declarations into each element,
16513 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16514 -- This broke the old maintain_901(), so we'll make the regex more robust
16515
16516 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16517 BEGIN
16518     -- Remove any existing 901 fields before we insert the authoritative one
16519     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16520     IF TG_TABLE_SCHEMA = 'biblio' THEN
16521         NEW.marc := REGEXP_REPLACE(
16522             NEW.marc,
16523             E'(</(?:[^:]*?:)?record>)',
16524             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16525                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16526                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16527                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16528                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16529                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16530                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16531              E'</datafield>\\1'
16532         );
16533     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16534         NEW.marc := REGEXP_REPLACE(
16535             NEW.marc,
16536             E'(</(?:[^:]*?:)?record>)',
16537             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16538                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16539                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16540              E'</datafield>\\1'
16541         );
16542     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16543         NEW.marc := REGEXP_REPLACE(
16544             NEW.marc,
16545             E'(</(?:[^:]*?:)?record>)',
16546             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16547                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16548                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16549                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16550                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16551              E'</datafield>\\1'
16552         );
16553     ELSE
16554         NEW.marc := REGEXP_REPLACE(
16555             NEW.marc,
16556             E'(</(?:[^:]*?:)?record>)',
16557             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16558                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16559                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16560              E'</datafield>\\1'
16561         );
16562     END IF;
16563
16564     RETURN NEW;
16565 END;
16566 $func$ LANGUAGE PLPGSQL;
16567
16568 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16569 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16570 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16571  
16572 -- In booking, elbow room defines:
16573 --  a) how far in the future you must make a reservation on a given item if
16574 --      that item will have to transit somewhere to fulfill the reservation.
16575 --  b) how soon a reservation must be starting for the reserved item to
16576 --      be op-captured by the checkin interface.
16577
16578 -- We don't want to clobber any default_elbow room at any level:
16579
16580 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16581 DECLARE
16582     existing    actor.org_unit_setting%ROWTYPE;
16583 BEGIN
16584     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16585     IF NOT FOUND THEN
16586         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16587             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16588             'circ.booking_reservation.default_elbow_room',
16589             '"1 day"'
16590         );
16591         RETURN 1;
16592     END IF;
16593     RETURN 0;
16594 END;
16595 $$ LANGUAGE plpgsql;
16596
16597 SELECT pg_temp.default_elbow();
16598
16599 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16600
16601 -- returns the distinct set of target copy IDs from a user's visible circulation history
16602 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16603     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16604 $$ LANGUAGE SQL;
16605
16606 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16607 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16608 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16609 ALTER TABLE action.hold_copy_map DROP CONSTRAINT hold_copy_map_target_copy_fkey;
16610
16611 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16612
16613 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16614 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16615
16616 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16617     VALUES (
16618         'cat.maintain_control_numbers',
16619         oils_i18n_gettext(
16620             'cat.maintain_control_numbers',
16621             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16622             'cgf', 
16623             'label'
16624         )
16625     );
16626
16627 INSERT INTO config.global_flag (name, label, enabled)
16628     VALUES (
16629         'circ.holds.empty_issuance_ok',
16630         oils_i18n_gettext(
16631             'circ.holds.empty_issuance_ok',
16632             'Holds: Allow holds on empty issuances',
16633             'cgf',
16634             'label'
16635         ),
16636         TRUE
16637     );
16638
16639 INSERT INTO config.global_flag (name, label, enabled)
16640     VALUES (
16641         'circ.holds.usr_not_requestor',
16642         oils_i18n_gettext(
16643             'circ.holds.usr_not_requestor',
16644             'Holds: When testing hold matrix matchpoints, use the profile group of the receiving user instead of that of the requestor (affects staff-placed holds)',
16645             'cgf',
16646             'label'
16647         ),
16648         TRUE
16649     );
16650
16651 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16652 use strict;
16653 use MARC::Record;
16654 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16655 use Encode;
16656 use Unicode::Normalize;
16657
16658 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16659 my $schema = $_TD->{table_schema};
16660 my $rec_id = $_TD->{new}{id};
16661
16662 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16663 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16664 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16665     return;
16666 }
16667
16668 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16669 my $ou_cni = 'EVRGRN';
16670
16671 my $owner;
16672 if ($schema eq 'serial') {
16673     $owner = $_TD->{new}{owning_lib};
16674 } else {
16675     # are.owner and bre.owner can be null, so fall back to the consortial setting
16676     $owner = $_TD->{new}{owner} || 1;
16677 }
16678
16679 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16680 if ($ous_rv->{processed}) {
16681     $ou_cni = $ous_rv->{rows}[0]->{value};
16682     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16683 } else {
16684     # Fall back to the shortname of the OU if there was no OU setting
16685     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16686     if ($ous_rv->{processed}) {
16687         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16688     }
16689 }
16690
16691 my ($create, $munge) = (0, 0);
16692 my ($orig_001, $orig_003) = ('', '');
16693
16694 # Incoming MARC records may have multiple 001s or 003s, despite the spec
16695 my @control_ids = $record->field('003');
16696 my @scns = $record->field('035');
16697
16698 foreach my $id_field ('001', '003') {
16699     my $spec_value;
16700     my @controls = $record->field($id_field);
16701
16702     if ($id_field eq '001') {
16703         $spec_value = $rec_id;
16704     } else {
16705         $spec_value = $ou_cni;
16706     }
16707
16708     # Create the 001/003 if none exist
16709     if (scalar(@controls) == 0) {
16710         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
16711         $create = 1;
16712     } elsif (scalar(@controls) > 1) {
16713         # Do we already have the right 001/003 value in the existing set?
16714         unless (grep $_->data() eq $spec_value, @controls) {
16715             $munge = 1;
16716         }
16717
16718         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
16719         foreach my $control (@controls) {
16720             unless ($control->data() eq $spec_value) {
16721                 $record->delete_field($control);
16722             }
16723         }
16724     } else {
16725         # Only one field; check to see if we need to munge it
16726         unless (grep $_->data() eq $spec_value, @controls) {
16727             $munge = 1;
16728         }
16729     }
16730 }
16731
16732 # Now, if we need to munge the 001, we will first push the existing 001/003 into the 035
16733 if ($munge) {
16734     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
16735
16736     # Do not create duplicate 035 fields
16737     unless (grep $_->subfield('a') eq $scn, @scns) {
16738         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
16739     }
16740 }
16741
16742 # Set the 001/003 and update the MARC
16743 if ($create or $munge) {
16744     $record->field('001')->data($rec_id);
16745     $record->field('003')->data($ou_cni);
16746
16747     my $xml = $record->as_xml_record();
16748     $xml =~ s/\n//sgo;
16749     $xml =~ s/^<\?xml.+\?\s*>//go;
16750     $xml =~ s/>\s+</></go;
16751     $xml =~ s/\p{Cc}//go;
16752
16753     # Embed a version of OpenILS::Application::AppUtils->entityize()
16754     # to avoid having to set PERL5LIB for PostgreSQL as well
16755
16756     # If we are going to convert non-ASCII characters to XML entities,
16757     # we had better be dealing with a UTF8 string to begin with
16758     $xml = decode_utf8($xml);
16759
16760     $xml = NFC($xml);
16761
16762     # Convert raw ampersands to entities
16763     $xml =~ s/&(?!\S+;)/&amp;/gso;
16764
16765     # Convert Unicode characters to entities
16766     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
16767
16768     $xml =~ s/[\x00-\x1f]//go;
16769     $_TD->{new}{marc} = $xml;
16770
16771     return "MODIFY";
16772 }
16773
16774 return;
16775 $func$ LANGUAGE PLPERLU;
16776
16777 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16778 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16779 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16780
16781 INSERT INTO metabib.facet_entry (source, field, value)
16782     SELECT source, field, value FROM (
16783         SELECT * FROM metabib.author_field_entry
16784             UNION ALL
16785         SELECT * FROM metabib.keyword_field_entry
16786             UNION ALL
16787         SELECT * FROM metabib.identifier_field_entry
16788             UNION ALL
16789         SELECT * FROM metabib.title_field_entry
16790             UNION ALL
16791         SELECT * FROM metabib.subject_field_entry
16792             UNION ALL
16793         SELECT * FROM metabib.series_field_entry
16794         )x
16795     WHERE x.index_vector = '';
16796         
16797 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
16798 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
16799 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
16800 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
16801 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
16802 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
16803
16804 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
16805 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
16806 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
16807
16808 -- copy OPAC visibility materialized view
16809 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
16810
16811     TRUNCATE TABLE asset.opac_visible_copies;
16812
16813     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16814     SELECT  cp.id, cp.circ_lib, cn.record
16815     FROM  asset.copy cp
16816         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16817         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16818         JOIN asset.copy_location cl ON (cp.location = cl.id)
16819         JOIN config.copy_status cs ON (cp.status = cs.id)
16820         JOIN biblio.record_entry b ON (cn.record = b.id)
16821     WHERE NOT cp.deleted
16822         AND NOT cn.deleted
16823         AND NOT b.deleted
16824         AND cs.opac_visible
16825         AND cl.opac_visible
16826         AND cp.opac_visible
16827         AND a.opac_visible;
16828
16829 $$ LANGUAGE SQL;
16830 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
16831 Rebuild the copy OPAC visibility cache.  Useful during migrations.
16832 $$;
16833
16834 -- and actually populate the table
16835 SELECT asset.refresh_opac_visible_copies_mat_view();
16836
16837 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
16838 DECLARE
16839     add_query       TEXT;
16840     remove_query    TEXT;
16841     do_add          BOOLEAN := false;
16842     do_remove       BOOLEAN := false;
16843 BEGIN
16844     add_query := $$
16845             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16846                 SELECT  cp.id, cp.circ_lib, cn.record
16847                   FROM  asset.copy cp
16848                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16849                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16850                         JOIN asset.copy_location cl ON (cp.location = cl.id)
16851                         JOIN config.copy_status cs ON (cp.status = cs.id)
16852                         JOIN biblio.record_entry b ON (cn.record = b.id)
16853                   WHERE NOT cp.deleted
16854                         AND NOT cn.deleted
16855                         AND NOT b.deleted
16856                         AND cs.opac_visible
16857                         AND cl.opac_visible
16858                         AND cp.opac_visible
16859                         AND a.opac_visible
16860     $$;
16861  
16862     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
16863
16864     IF TG_OP = 'INSERT' THEN
16865
16866         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16867             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16868             EXECUTE add_query;
16869         END IF;
16870
16871         RETURN NEW;
16872
16873     END IF;
16874
16875     -- handle items first, since with circulation activity
16876     -- their statuses change frequently
16877     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16878
16879         IF OLD.location    <> NEW.location OR
16880            OLD.call_number <> NEW.call_number OR
16881            OLD.status      <> NEW.status OR
16882            OLD.circ_lib    <> NEW.circ_lib THEN
16883             -- any of these could change visibility, but
16884             -- we'll save some queries and not try to calculate
16885             -- the change directly
16886             do_remove := true;
16887             do_add := true;
16888         ELSE
16889
16890             IF OLD.deleted <> NEW.deleted THEN
16891                 IF NEW.deleted THEN
16892                     do_remove := true;
16893                 ELSE
16894                     do_add := true;
16895                 END IF;
16896             END IF;
16897
16898             IF OLD.opac_visible <> NEW.opac_visible THEN
16899                 IF OLD.opac_visible THEN
16900                     do_remove := true;
16901                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
16902                                         -- is also marked opac_visible
16903                     do_add := true;
16904                 END IF;
16905             END IF;
16906
16907         END IF;
16908
16909         IF do_remove THEN
16910             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
16911         END IF;
16912         IF do_add THEN
16913             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16914             EXECUTE add_query;
16915         END IF;
16916
16917         RETURN NEW;
16918
16919     END IF;
16920
16921     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
16922  
16923         IF OLD.deleted AND NEW.deleted THEN -- do nothing
16924
16925             RETURN NEW;
16926  
16927         ELSIF NEW.deleted THEN -- remove rows
16928  
16929             IF TG_TABLE_NAME = 'call_number' THEN
16930                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
16931             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16932                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
16933             END IF;
16934  
16935             RETURN NEW;
16936  
16937         ELSIF OLD.deleted THEN -- add rows
16938  
16939             IF TG_TABLE_NAME IN ('copy','unit') THEN
16940                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16941             ELSIF TG_TABLE_NAME = 'call_number' THEN
16942                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16943             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16944                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
16945             END IF;
16946  
16947             EXECUTE add_query;
16948             RETURN NEW;
16949  
16950         END IF;
16951  
16952     END IF;
16953
16954     IF TG_TABLE_NAME = 'call_number' THEN
16955
16956         IF OLD.record <> NEW.record THEN
16957             -- call number is linked to different bib
16958             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
16959             EXECUTE remove_query;
16960             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16961             EXECUTE add_query;
16962         END IF;
16963
16964         RETURN NEW;
16965
16966     END IF;
16967
16968     IF TG_TABLE_NAME IN ('record_entry') THEN
16969         RETURN NEW; -- don't have 'opac_visible'
16970     END IF;
16971
16972     -- actor.org_unit, asset.copy_location, asset.copy_status
16973     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
16974
16975         RETURN NEW;
16976
16977     ELSIF NEW.opac_visible THEN -- add rows
16978
16979         IF TG_TABLE_NAME = 'org_unit' THEN
16980             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
16981         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16982             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
16983         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16984             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
16985         END IF;
16986  
16987         EXECUTE add_query;
16988  
16989     ELSE -- delete rows
16990
16991         IF TG_TABLE_NAME = 'org_unit' THEN
16992             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
16993         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16994             remove_query := remove_query || 'location = ' || NEW.id || ');';
16995         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16996             remove_query := remove_query || 'status = ' || NEW.id || ');';
16997         END IF;
16998  
16999         EXECUTE remove_query;
17000  
17001     END IF;
17002  
17003     RETURN NEW;
17004 END;
17005 $func$ LANGUAGE PLPGSQL;
17006 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
17007 Trigger function to update the copy OPAC visiblity cache.
17008 $$;
17009 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();
17010 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17011 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();
17012 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();
17013 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17014 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();
17015 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();
17016
17017 -- must create this rule explicitly; it is not inherited from asset.copy
17018 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;
17019
17020 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);
17021
17022 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
17023 DECLARE
17024     moved_objects INT := 0;
17025     bib_id        INT := 0;
17026     bib_rec       biblio.record_entry%ROWTYPE;
17027     auth_link     authority.bib_linking%ROWTYPE;
17028 BEGIN
17029
17030     -- 1. Make source_record MARC a copy of the target_record to get auto-sync in linked bib records
17031     UPDATE authority.record_entry
17032       SET marc = (
17033         SELECT marc
17034           FROM authority.record_entry
17035           WHERE id = target_record
17036       )
17037       WHERE id = source_record;
17038
17039     -- 2. Update all bib records with the ID from target_record in their $0
17040     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre 
17041       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
17042       WHERE abl.authority = target_record LOOP
17043
17044         UPDATE biblio.record_entry
17045           SET marc = REGEXP_REPLACE(marc, 
17046             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
17047             E'\\1' || target_record || '<', 'g')
17048           WHERE id = bib_rec.id;
17049
17050           moved_objects := moved_objects + 1;
17051     END LOOP;
17052
17053     -- 3. "Delete" source_record
17054     DELETE FROM authority.record_entry
17055       WHERE id = source_record;
17056
17057     RETURN moved_objects;
17058 END;
17059 $func$ LANGUAGE plpgsql;
17060
17061 -- serial.record_entry already had an owner column spelled "owning_lib"
17062 -- Adjust the table and affected functions accordingly
17063
17064 ALTER TABLE serial.record_entry DROP COLUMN owner;
17065
17066 CREATE TABLE actor.usr_saved_search (
17067     id              SERIAL          PRIMARY KEY,
17068         owner           INT             NOT NULL REFERENCES actor.usr (id)
17069                                         ON DELETE CASCADE
17070                                         DEFERRABLE INITIALLY DEFERRED,
17071         name            TEXT            NOT NULL,
17072         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
17073         query_text      TEXT            NOT NULL,
17074         query_type      TEXT            NOT NULL
17075                                         CONSTRAINT valid_query_text CHECK (
17076                                         query_type IN ( 'URL' )) DEFAULT 'URL',
17077                                         -- we may add other types someday
17078         target          TEXT            NOT NULL
17079                                         CONSTRAINT valid_target CHECK (
17080                                         target IN ( 'record', 'metarecord', 'callnumber' )),
17081         CONSTRAINT name_once_per_user UNIQUE (owner, name)
17082 );
17083
17084 -- Apply Dan Wells' changes to the serial schema, from the
17085 -- seials-integration branch
17086
17087 CREATE TABLE serial.subscription_note (
17088         id           SERIAL PRIMARY KEY,
17089         subscription INT    NOT NULL
17090                             REFERENCES serial.subscription (id)
17091                             ON DELETE CASCADE
17092                             DEFERRABLE INITIALLY DEFERRED,
17093         creator      INT    NOT NULL
17094                             REFERENCES actor.usr (id)
17095                             DEFERRABLE INITIALLY DEFERRED,
17096         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17097         pub          BOOL   NOT NULL DEFAULT FALSE,
17098         title        TEXT   NOT NULL,
17099         value        TEXT   NOT NULL
17100 );
17101 CREATE INDEX serial_subscription_note_sub_idx ON serial.subscription_note (subscription);
17102
17103 CREATE TABLE serial.distribution_note (
17104         id           SERIAL PRIMARY KEY,
17105         distribution INT    NOT NULL
17106                             REFERENCES serial.distribution (id)
17107                             ON DELETE CASCADE
17108                             DEFERRABLE INITIALLY DEFERRED,
17109         creator      INT    NOT NULL
17110                             REFERENCES actor.usr (id)
17111                             DEFERRABLE INITIALLY DEFERRED,
17112         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17113         pub          BOOL   NOT NULL DEFAULT FALSE,
17114         title        TEXT   NOT NULL,
17115         value        TEXT   NOT NULL
17116 );
17117 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
17118
17119 ------- Begin surgery on serial.unit
17120
17121 ALTER TABLE serial.unit
17122         DROP COLUMN label;
17123
17124 ALTER TABLE serial.unit
17125         RENAME COLUMN label_sort_key TO sort_key;
17126
17127 ALTER TABLE serial.unit
17128         RENAME COLUMN contents TO detailed_contents;
17129
17130 ALTER TABLE serial.unit
17131         ADD COLUMN summary_contents TEXT;
17132
17133 UPDATE serial.unit
17134 SET summary_contents = detailed_contents;
17135
17136 ALTER TABLE serial.unit
17137         ALTER column summary_contents SET NOT NULL;
17138
17139 ------- End surgery on serial.unit
17140
17141 -- 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' );
17142
17143 -- Now rebuild the constraints dropped via cascade.
17144 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
17145 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
17146 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
17147
17148 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
17149
17150 DELETE FROM config.metabib_field_index_norm_map
17151     WHERE norm IN (
17152         SELECT id 
17153             FROM config.index_normalizer
17154             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
17155     )
17156     AND field = 18
17157 ;
17158
17159 -- We won't necessarily use all of these, but they are here for completeness.
17160 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
17161 -- Values are the EDI code value + 1200
17162
17163 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
17164 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
17165 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
17166 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
17167 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
17168 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
17169 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
17170 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
17171 (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.'),
17172 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
17173 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
17174 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
17175 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
17176 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
17177 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
17178 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
17179 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
17180 (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.'),
17181 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
17182 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
17183 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
17184 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
17185 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
17186 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
17187 (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.'),
17188 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
17189 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
17190 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
17191 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
17192 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
17193 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
17194 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
17195 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
17196 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
17197 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
17198 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
17199 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
17200 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
17201 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
17202 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
17203 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
17204 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
17205 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
17206 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
17207 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
17208 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
17209 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
17210 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
17211 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
17212 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
17213 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
17214 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
17215 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
17216 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
17217 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
17218 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
17219 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
17220 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
17221 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
17222 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
17223 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
17224 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
17225 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
17226 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
17227 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
17228 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
17229 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
17230 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
17231 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
17232 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
17233 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
17234 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
17235 (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.'),
17236 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
17237 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
17238 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
17239 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
17240 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
17241 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
17242 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
17243 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
17244 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
17245 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
17246 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
17247 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
17248 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
17249 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
17250 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
17251 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
17252 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
17253 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
17254 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
17255 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
17256 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
17257 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
17258 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
17259 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
17260 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
17261 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
17262 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
17263 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
17264 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
17265 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
17266 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
17267 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
17268 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
17269 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
17270 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
17271 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
17272 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
17273 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
17274 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
17275 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
17276 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
17277 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
17278 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
17279 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
17280 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
17281 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
17282 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
17283 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
17284 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
17285 (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.'),
17286 (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.'),
17287 (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.'),
17288 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
17289 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
17290 (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.'),
17291 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
17292 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
17293 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
17294 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
17295 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
17296 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
17297 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
17298 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
17299 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
17300 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
17301 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
17302 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
17303 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
17304 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
17305 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
17306 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
17307 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
17308 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
17309 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
17310 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
17311 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
17312 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
17313 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
17314 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
17315 (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.'),
17316 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
17317 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
17318 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
17319 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
17320 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
17321 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
17322 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
17323 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
17324 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
17325 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
17326 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
17327 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
17328 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
17329 (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.'),
17330 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
17331 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
17332 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
17333 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
17334 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
17335 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
17336 (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.'),
17337 (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.'),
17338 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
17339 (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.'),
17340 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
17341 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
17342 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
17343 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
17344 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
17345 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
17346 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
17347 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
17348 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
17349 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
17350 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
17351 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
17352 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
17353 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
17354 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
17355 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
17356 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
17357 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
17358 (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.'),
17359 (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.'),
17360 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
17361 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
17362 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
17363 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
17364 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
17365 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
17366 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
17367 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
17368 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
17369 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
17370 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
17371 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
17372 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
17373 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
17374 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
17375 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
17376 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
17377 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
17378 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
17379 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
17380 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
17381 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
17382 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
17383 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
17384 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
17385 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
17386 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
17387 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
17388 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
17389 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
17390 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
17391 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
17392 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
17393 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
17394 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
17395 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
17396 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
17397 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
17398 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
17399 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
17400 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
17401 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
17402 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
17403 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
17404 (1, 't', 1442, 'Number of months', 'The number of months.'),
17405 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
17406 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
17407 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
17408 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
17409 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
17410 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
17411 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
17412 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
17413 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
17414 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
17415 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
17416 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
17417 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
17418 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
17419 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
17420 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
17421 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
17422 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
17423 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
17424 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
17425 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
17426 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
17427 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
17428 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
17429 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
17430 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
17431 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
17432 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
17433 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
17434 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
17435 (1, 't', 1473, 'Agents', 'The number of agents.'),
17436 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
17437 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
17438 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
17439 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
17440 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
17441 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
17442 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
17443 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
17444 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
17445 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
17446 (1, 't', 1484, 'Departments', 'The number of departments.'),
17447 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
17448 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
17449 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
17450 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
17451 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
17452 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
17453 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
17454 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
17455 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
17456 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
17457 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
17458 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
17459 (1, 't', 1497, 'Executives', 'The number of executives.'),
17460 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
17461 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
17462 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
17463 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
17464 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
17465 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
17466 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
17467 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
17468 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
17469 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
17470 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
17471 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
17472 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
17473 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
17474 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17475 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17476 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17477 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17478 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17479 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17480 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17481 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17482 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17483 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17484 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17485 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17486 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17487 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17488 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17489 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17490 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17491 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17492 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17493 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17494 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17495 (1, 't', 1533, 'Seats',        'The number of seats.'),
17496 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17497 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17498 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17499 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17500 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17501 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17502 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17503 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17504 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17505 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17506 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17507 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17508 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17509 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17510 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17511 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17512 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17513 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17514 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17515 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17516 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17517 (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.'),
17518 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17519 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17520 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17521 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17522 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17523 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17524 (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.'),
17525 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17526 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17527 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17528 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17529 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17530 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17531 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17532 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17533 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17534 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17535 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17536 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17537 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17538 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17539 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17540 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17541 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17542 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17543 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17544 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17545 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17546 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17547 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17548 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17549 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17550 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17551 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17552 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17553 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17554 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17555 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17556 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17557 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17558 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17559 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17560 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17561 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17562 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17563 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17564 (1, 't', 1602, 'Patients',         'Number of patients.'),
17565 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17566 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17567 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17568 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17569 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17570 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17571 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17572 (1, 't', 1610, 'Operators',        'Number of operators.'),
17573 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17574 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17575 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17576 (1, 't', 1614, 'Machines',         'Number of machines.'),
17577 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17578 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17579 (1, 't', 1617, 'Directors',        'Number of directors.'),
17580 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17581 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17582 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17583 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17584 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17585 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17586 (1, 't', 1624, 'Beds', 'Number of beds.'),
17587 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17588 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17589 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17590 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17591 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17592 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17593 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17594 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17595 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17596 (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.'),
17597 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17598 (1, 't', 1636, 'Professor', 'The number of professors.'),
17599 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17600 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17601 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17602 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17603 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17604 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17605 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17606 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17607 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17608 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17609 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17610 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17611 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17612 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17613 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17614 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17615 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17616 (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.'),
17617 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17618 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17619 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17620 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17621 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17622 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17623 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17624 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17625 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17626 (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.'),
17627 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17628 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17629 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17630 (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.'),
17631 (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.'),
17632 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17633 (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.'),
17634 (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.'),
17635 (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.'),
17636 (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.'),
17637 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17638 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17639 (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.'),
17640 (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.'),
17641 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17642 (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.'),
17643 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17644 (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.'),
17645 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17646 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17647 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17648 (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).'),
17649 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17650 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17651 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17652 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17653 ;
17654 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17655
17656 CREATE TABLE acq.serial_claim (
17657     id     SERIAL           PRIMARY KEY,
17658     type   INT              NOT NULL REFERENCES acq.claim_type
17659                                      DEFERRABLE INITIALLY DEFERRED,
17660     item    BIGINT          NOT NULL REFERENCES serial.item
17661                                      DEFERRABLE INITIALLY DEFERRED
17662 );
17663
17664 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17665
17666 CREATE TABLE acq.serial_claim_event (
17667     id             BIGSERIAL        PRIMARY KEY,
17668     type           INT              NOT NULL REFERENCES acq.claim_event_type
17669                                              DEFERRABLE INITIALLY DEFERRED,
17670     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17671                                              DEFERRABLE INITIALLY DEFERRED,
17672     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17673     creator        INT              NOT NULL REFERENCES actor.usr
17674                                              DEFERRABLE INITIALLY DEFERRED,
17675     note           TEXT
17676 );
17677
17678 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
17679
17680 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
17681
17682 -- now what about the auditor.*_lifecycle views??
17683
17684 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17685     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
17686 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17687     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
17688 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
17689 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
17690
17691 CREATE TABLE asset.call_number_class (
17692     id             bigserial     PRIMARY KEY,
17693     name           TEXT          NOT NULL,
17694     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
17695     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17696 );
17697
17698 COMMENT ON TABLE asset.call_number_class IS $$
17699 Defines the call number normalization database functions in the "normalizer"
17700 column and the tag/subfield combinations to use to lookup the call number in
17701 the "field" column for a given classification scheme. Tag/subfield combinations
17702 are delimited by commas.
17703 $$;
17704
17705 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
17706     ('Generic', 'asset.label_normalizer_generic'),
17707     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
17708     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
17709 ;
17710
17711 -- Generic fields
17712 UPDATE asset.call_number_class
17713     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17714     WHERE id = 1
17715 ;
17716
17717 -- Dewey fields
17718 UPDATE asset.call_number_class
17719     SET field = '080ab,082ab'
17720     WHERE id = 2
17721 ;
17722
17723 -- LC fields
17724 UPDATE asset.call_number_class
17725     SET field = '050ab,055ab'
17726     WHERE id = 3
17727 ;
17728  
17729 ALTER TABLE asset.call_number
17730         ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL
17731                 REFERENCES asset.call_number_class(id)
17732                 DEFERRABLE INITIALLY DEFERRED;
17733
17734 ALTER TABLE asset.call_number
17735         ADD COLUMN label_sortkey TEXT;
17736
17737 CREATE INDEX asset_call_number_label_sortkey
17738         ON asset.call_number(label_sortkey);
17739
17740 ALTER TABLE auditor.asset_call_number_history
17741         ADD COLUMN label_class BIGINT;
17742
17743 ALTER TABLE auditor.asset_call_number_history
17744         ADD COLUMN label_sortkey TEXT;
17745
17746 -- Pick up the new columns in dependent views
17747
17748 DROP VIEW auditor.asset_call_number_lifecycle;
17749
17750 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17751
17752 DROP VIEW auditor.asset_call_number_lifecycle;
17753
17754 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17755
17756 DROP VIEW IF EXISTS stats.fleshed_call_number;
17757
17758 CREATE VIEW stats.fleshed_call_number AS
17759         SELECT  cn.*,
17760             CAST(cn.create_date AS DATE) AS create_date_day,
17761         CAST(cn.edit_date AS DATE) AS edit_date_day,
17762         DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
17763         DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
17764             rd.item_lang,
17765                 rd.item_type,
17766                 rd.item_form
17767         FROM    asset.call_number cn
17768                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
17769
17770 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
17771 DECLARE
17772     sortkey        TEXT := '';
17773 BEGIN
17774     sortkey := NEW.label_sortkey;
17775
17776     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
17777        quote_literal( NEW.label ) || ')'
17778        FROM asset.call_number_class acnc
17779        WHERE acnc.id = NEW.label_class
17780        INTO sortkey;
17781
17782     NEW.label_sortkey = sortkey;
17783
17784     RETURN NEW;
17785 END;
17786 $func$ LANGUAGE PLPGSQL;
17787
17788 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
17789     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
17790     # thus could probably be considered a derived work, although nothing was
17791     # directly copied - but to err on the safe side of providing attribution:
17792     # Copyright (C) 2007 LibLime
17793     # Licensed under the GPL v2 or later
17794
17795     use strict;
17796     use warnings;
17797
17798     # Converts the callnumber to uppercase
17799     # Strips spaces from start and end of the call number
17800     # Converts anything other than letters, digits, and periods into underscores
17801     # Collapses multiple underscores into a single underscore
17802     my $callnum = uc(shift);
17803     $callnum =~ s/^\s//g;
17804     $callnum =~ s/\s$//g;
17805     $callnum =~ s/[^A-Z0-9_.]/_/g;
17806     $callnum =~ s/_{2,}/_/g;
17807
17808     return $callnum;
17809 $func$ LANGUAGE PLPERLU;
17810
17811 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
17812     # Derived from the Koha C4::ClassSortRoutine::Dewey module
17813     # Copyright (C) 2007 LibLime
17814     # Licensed under the GPL v2 or later
17815
17816     use strict;
17817     use warnings;
17818
17819     my $init = uc(shift);
17820     $init =~ s/^\s+//;
17821     $init =~ s/\s+$//;
17822     $init =~ s!/!!g;
17823     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
17824     my @tokens = split /\.|\s+/, $init;
17825     my $digit_group_count = 0;
17826     for (my $i = 0; $i <= $#tokens; $i++) {
17827         if ($tokens[$i] =~ /^\d+$/) {
17828             $digit_group_count++;
17829             if (2 == $digit_group_count) {
17830                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
17831                 $tokens[$i] =~ tr/ /0/;
17832             }
17833         }
17834     }
17835     my $key = join("_", @tokens);
17836     $key =~ s/[^\p{IsAlnum}_]//g;
17837
17838     return $key;
17839
17840 $func$ LANGUAGE PLPERLU;
17841
17842 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
17843     use strict;
17844     use warnings;
17845
17846     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
17847     # The author hopes to upload it to CPAN some day, which would make our lives easier
17848     use Library::CallNumber::LC;
17849
17850     my $callnum = Library::CallNumber::LC->new(shift);
17851     return $callnum->normalize();
17852
17853 $func$ LANGUAGE PLPERLU;
17854
17855 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$
17856 DECLARE
17857     ans RECORD;
17858     trans INT;
17859 BEGIN
17860     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;
17861
17862     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
17863         RETURN QUERY
17864         SELECT  ans.depth,
17865                 ans.id,
17866                 COUNT( av.id ),
17867                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17868                 COUNT( av.id ),
17869                 trans
17870           FROM
17871                 actor.org_unit_descendants(ans.id) d
17872                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17873                 JOIN asset.copy cp ON (cp.id = av.id)
17874           GROUP BY 1,2,6;
17875
17876         IF NOT FOUND THEN
17877             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17878         END IF;
17879
17880     END LOOP;
17881
17882     RETURN;
17883 END;
17884 $f$ LANGUAGE PLPGSQL;
17885
17886 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$
17887 DECLARE
17888     ans RECORD;
17889     trans INT;
17890 BEGIN
17891     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;
17892
17893     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17894         RETURN QUERY
17895         SELECT  -1,
17896                 ans.id,
17897                 COUNT( av.id ),
17898                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17899                 COUNT( av.id ),
17900                 trans
17901           FROM
17902                 actor.org_unit_descendants(ans.id) d
17903                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17904                 JOIN asset.copy cp ON (cp.id = av.id)
17905           GROUP BY 1,2,6;
17906
17907         IF NOT FOUND THEN
17908             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17909         END IF;
17910
17911     END LOOP;
17912
17913     RETURN;
17914 END;
17915 $f$ LANGUAGE PLPGSQL;
17916
17917 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$
17918 DECLARE
17919     ans RECORD;
17920     trans INT;
17921 BEGIN
17922     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;
17923
17924     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
17925         RETURN QUERY
17926         SELECT  ans.depth,
17927                 ans.id,
17928                 COUNT( cp.id ),
17929                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17930                 COUNT( cp.id ),
17931                 trans
17932           FROM
17933                 actor.org_unit_descendants(ans.id) d
17934                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17935                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17936           GROUP BY 1,2,6;
17937
17938         IF NOT FOUND THEN
17939             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17940         END IF;
17941
17942     END LOOP;
17943
17944     RETURN;
17945 END;
17946 $f$ LANGUAGE PLPGSQL;
17947
17948 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$
17949 DECLARE
17950     ans RECORD;
17951     trans INT;
17952 BEGIN
17953     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;
17954
17955     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17956         RETURN QUERY
17957         SELECT  -1,
17958                 ans.id,
17959                 COUNT( cp.id ),
17960                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17961                 COUNT( cp.id ),
17962                 trans
17963           FROM
17964                 actor.org_unit_descendants(ans.id) d
17965                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17966                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17967           GROUP BY 1,2,6;
17968
17969         IF NOT FOUND THEN
17970             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17971         END IF;
17972
17973     END LOOP;
17974
17975     RETURN;
17976 END;
17977 $f$ LANGUAGE PLPGSQL;
17978
17979 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$
17980 BEGIN
17981     IF staff IS TRUE THEN
17982         IF place > 0 THEN
17983             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
17984         ELSE
17985             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
17986         END IF;
17987     ELSE
17988         IF place > 0 THEN
17989             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
17990         ELSE
17991             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
17992         END IF;
17993     END IF;
17994
17995     RETURN;
17996 END;
17997 $f$ LANGUAGE PLPGSQL;
17998
17999 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$
18000 DECLARE
18001     ans RECORD;
18002     trans INT;
18003 BEGIN
18004     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;
18005
18006     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
18007         RETURN QUERY
18008         SELECT  ans.depth,
18009                 ans.id,
18010                 COUNT( av.id ),
18011                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18012                 COUNT( av.id ),
18013                 trans
18014           FROM
18015                 actor.org_unit_descendants(ans.id) d
18016                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18017                 JOIN asset.copy cp ON (cp.id = av.id)
18018                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18019           GROUP BY 1,2,6;
18020
18021         IF NOT FOUND THEN
18022             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18023         END IF;
18024
18025     END LOOP;
18026
18027     RETURN;
18028 END;
18029 $f$ LANGUAGE PLPGSQL;
18030
18031 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$
18032 DECLARE
18033     ans RECORD;
18034     trans INT;
18035 BEGIN
18036     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;
18037
18038     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18039         RETURN QUERY
18040         SELECT  -1,
18041                 ans.id,
18042                 COUNT( av.id ),
18043                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18044                 COUNT( av.id ),
18045                 trans
18046           FROM
18047                 actor.org_unit_descendants(ans.id) d
18048                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18049                 JOIN asset.copy cp ON (cp.id = av.id)
18050                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18051           GROUP BY 1,2,6;
18052
18053         IF NOT FOUND THEN
18054             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18055         END IF;
18056
18057     END LOOP;
18058
18059     RETURN;
18060 END;
18061 $f$ LANGUAGE PLPGSQL;
18062
18063 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$
18064 DECLARE
18065     ans RECORD;
18066     trans INT;
18067 BEGIN
18068     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;
18069
18070     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
18071         RETURN QUERY
18072         SELECT  ans.depth,
18073                 ans.id,
18074                 COUNT( cp.id ),
18075                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18076                 COUNT( cp.id ),
18077                 trans
18078           FROM
18079                 actor.org_unit_descendants(ans.id) d
18080                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18081                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18082                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18083           GROUP BY 1,2,6;
18084
18085         IF NOT FOUND THEN
18086             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18087         END IF;
18088
18089     END LOOP;
18090
18091     RETURN;
18092 END;
18093 $f$ LANGUAGE PLPGSQL;
18094
18095 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$
18096 DECLARE
18097     ans RECORD;
18098     trans INT;
18099 BEGIN
18100     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;
18101
18102     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18103         RETURN QUERY
18104         SELECT  -1,
18105                 ans.id,
18106                 COUNT( cp.id ),
18107                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18108                 COUNT( cp.id ),
18109                 trans
18110           FROM
18111                 actor.org_unit_descendants(ans.id) d
18112                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18113                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18114                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18115           GROUP BY 1,2,6;
18116
18117         IF NOT FOUND THEN
18118             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18119         END IF;
18120
18121     END LOOP;
18122
18123     RETURN;
18124 END;
18125 $f$ LANGUAGE PLPGSQL;
18126
18127 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$
18128 BEGIN
18129     IF staff IS TRUE THEN
18130         IF place > 0 THEN
18131             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
18132         ELSE
18133             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
18134         END IF;
18135     ELSE
18136         IF place > 0 THEN
18137             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
18138         ELSE
18139             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
18140         END IF;
18141     END IF;
18142
18143     RETURN;
18144 END;
18145 $f$ LANGUAGE PLPGSQL;
18146
18147 -- No transaction is required
18148
18149 -- Triggers on the vandelay.queued_*_record tables delete entries from
18150 -- the associated vandelay.queued_*_record_attr tables based on the record's
18151 -- ID; create an index on that column to avoid sequential scans for each
18152 -- queued record that is deleted
18153 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
18154 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
18155
18156 -- Avoid sequential scans for queue retrieval operations by providing an
18157 -- index on the queue column
18158 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
18159 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
18160
18161 -- Start picking up call number label prefixes and suffixes
18162 -- from asset.copy_location
18163 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
18164 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
18165
18166 DROP VIEW auditor.asset_copy_lifecycle;
18167
18168 SELECT auditor.create_auditor_lifecycle( 'asset', 'copy' );
18169
18170 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
18171
18172 -- Let's not break existing reports
18173 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
18174 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
18175
18176 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
18177 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
18178 SELECT  r.id,
18179     r.fingerprint,
18180     r.quality,
18181     r.tcn_source,
18182     r.tcn_value,
18183     FIRST(title.value) AS title,
18184     FIRST(author.value) AS author,
18185     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
18186     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
18187     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18188     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
18189   FROM  biblio.record_entry r
18190     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18191     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
18192     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18193     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18194     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18195     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18196   GROUP BY 1,2,3,4,5;
18197
18198 -- Correct the ISSN array definition for reporter.simple_record
18199
18200 CREATE OR REPLACE VIEW reporter.simple_record AS
18201 SELECT  r.id,
18202         s.metarecord,
18203         r.fingerprint,
18204         r.quality,
18205         r.tcn_source,
18206         r.tcn_value,
18207         title.value AS title,
18208         uniform_title.value AS uniform_title,
18209         author.value AS author,
18210         publisher.value AS publisher,
18211         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
18212         series_title.value AS series_title,
18213         series_statement.value AS series_statement,
18214         summary.value AS summary,
18215         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18216         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
18217         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
18218         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
18219         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
18220         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
18221         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
18222         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
18223   FROM  biblio.record_entry r
18224         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
18225         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
18226         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18227         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
18228         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18229         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18230         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18231         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18232         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')
18233         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
18234         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
18235   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
18236
18237 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
18238     DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
18239 $$ LANGUAGE SQL;
18240
18241 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
18242 BEGIN
18243     IF TG_OP = 'DELETE' THEN
18244         PERFORM reporter.simple_rec_delete(NEW.id);
18245     ELSE
18246         PERFORM reporter.simple_rec_update(NEW.id);
18247     END IF;
18248
18249     RETURN NEW;
18250 END;
18251 $func$ LANGUAGE PLPGSQL;
18252
18253 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
18254
18255 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
18256
18257 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
18258
18259 UPDATE config.org_unit_setting_type
18260     SET view_perm = (SELECT id FROM permission.perm_list
18261         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
18262     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
18263
18264 UPDATE config.org_unit_setting_type
18265     SET update_perm = (SELECT id FROM permission.perm_list
18266         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
18267     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
18268
18269 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
18270     VALUES (
18271         'opac.fully_compressed_serial_holdings',
18272         'OPAC: Use fully compressed serial holdings',
18273         'Show fully compressed serial holdings for all libraries at and below
18274         the current context unit',
18275         'bool'
18276     );
18277
18278 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
18279     use strict;
18280     use warnings;
18281
18282     use utf8;
18283     use MARC::Record;
18284     use MARC::File::XML (BinaryEncoding => 'UTF8');
18285     use UUID::Tiny ':std';
18286
18287     my $xml = shift() or return undef;
18288
18289     my $r;
18290
18291     # Prevent errors in XML parsing from blowing out ungracefully
18292     eval {
18293         $r = MARC::Record->new_from_xml( $xml );
18294         1;
18295     } or do {
18296        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18297     };
18298
18299     if (!$r) {
18300        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18301     }
18302
18303     # From http://www.loc.gov/standards/sourcelist/subject.html
18304     my $thes_code_map = {
18305         a => 'lcsh',
18306         b => 'lcshac',
18307         c => 'mesh',
18308         d => 'nal',
18309         k => 'cash',
18310         n => 'notapplicable',
18311         r => 'aat',
18312         s => 'sears',
18313         v => 'rvm',
18314     };
18315
18316     # Default to "No attempt to code" if the leader is horribly broken
18317     my $fixed_field = $r->field('008');
18318     my $thes_char = '|';
18319     if ($fixed_field) {
18320         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
18321     }
18322
18323     my $thes_code = 'UNDEFINED';
18324
18325     if ($thes_char eq 'z') {
18326         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
18327         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
18328     } elsif ($thes_code_map->{$thes_char}) {
18329         $thes_code = $thes_code_map->{$thes_char};
18330     }
18331
18332     my $auth_txt = '';
18333     my $head = $r->field('1..');
18334     if ($head) {
18335         # Concatenate all of these subfields together, prefixed by their code
18336         # to prevent collisions along the lines of "Fiction, North Carolina"
18337         foreach my $sf ($head->subfields()) {
18338             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
18339         }
18340     }
18341
18342     # Perhaps better to parameterize the spi and pass as a parameter
18343     $auth_txt =~ s/'//go;
18344
18345     if ($auth_txt) {
18346         my $result = spi_exec_query("SELECT public.naco_normalize('$auth_txt') AS norm_text");
18347         my $norm_txt = $result->{rows}[0]->{norm_text};
18348         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
18349     }
18350
18351     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
18352 $func$ LANGUAGE 'plperlu' IMMUTABLE;
18353
18354 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
18355 /**
18356 * Extract the authority heading, thesaurus, and NACO-normalized values
18357 * from an authority record. The primary purpose is to build a unique
18358 * index to defend against duplicated authority records from the same
18359 * thesaurus.
18360 */
18361 $$;
18362
18363 DROP INDEX authority.authority_record_unique_tcn;
18364 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
18365 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
18366
18367 ALTER TABLE acq.provider_contact
18368         ALTER COLUMN name SET NOT NULL;
18369
18370 ALTER TABLE actor.stat_cat
18371         ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
18372
18373 -- Recreate some foreign keys that were somehow dropped, probably
18374 -- by some kind of cascade from an inherited table:
18375
18376 ALTER TABLE action.reservation_transit_copy
18377         ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy)
18378                 REFERENCES booking.resource(id)
18379                 ON DELETE CASCADE
18380                 DEFERRABLE INITIALLY DEFERRED,
18381         ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation)
18382                 REFERENCES booking.reservation(id)
18383                 ON DELETE SET NULL
18384                 DEFERRABLE INITIALLY DEFERRED;
18385
18386 CREATE INDEX user_bucket_item_target_user_idx
18387         ON container.user_bucket_item ( target_user );
18388
18389 CREATE INDEX m_c_t_collector_idx
18390         ON money.collections_tracker ( collector );
18391
18392 CREATE INDEX aud_actor_usr_address_hist_id_idx
18393         ON auditor.actor_usr_address_history ( id );
18394
18395 CREATE INDEX aud_actor_usr_hist_id_idx
18396         ON auditor.actor_usr_history ( id );
18397
18398 CREATE INDEX aud_asset_cn_hist_creator_idx
18399         ON auditor.asset_call_number_history ( creator );
18400
18401 CREATE INDEX aud_asset_cn_hist_editor_idx
18402         ON auditor.asset_call_number_history ( editor );
18403
18404 CREATE INDEX aud_asset_cp_hist_creator_idx
18405         ON auditor.asset_copy_history ( creator );
18406
18407 CREATE INDEX aud_asset_cp_hist_editor_idx
18408         ON auditor.asset_copy_history ( editor );
18409
18410 CREATE INDEX aud_bib_rec_entry_hist_creator_idx
18411         ON auditor.biblio_record_entry_history ( creator );
18412
18413 CREATE INDEX aud_bib_rec_entry_hist_editor_idx
18414         ON auditor.biblio_record_entry_history ( editor );
18415
18416 CREATE TABLE action.hold_request_note (
18417
18418     id     BIGSERIAL PRIMARY KEY,
18419     hold   BIGINT    NOT NULL REFERENCES action.hold_request (id)
18420                               ON DELETE CASCADE
18421                               DEFERRABLE INITIALLY DEFERRED,
18422     title  TEXT      NOT NULL,
18423     body   TEXT      NOT NULL,
18424     slip   BOOL      NOT NULL DEFAULT FALSE,
18425     pub    BOOL      NOT NULL DEFAULT FALSE,
18426     staff  BOOL      NOT NULL DEFAULT FALSE  -- created by staff
18427
18428 );
18429 CREATE INDEX ahrn_hold_idx ON action.hold_request_note (hold);
18430
18431 -- Tweak a constraint to add a CASCADE
18432
18433 ALTER TABLE action.hold_notification DROP CONSTRAINT hold_notification_hold_fkey;
18434
18435 ALTER TABLE action.hold_notification
18436         ADD CONSTRAINT hold_notification_hold_fkey
18437                 FOREIGN KEY (hold) REFERENCES action.hold_request (id)
18438                 ON DELETE CASCADE
18439                 DEFERRABLE INITIALLY DEFERRED;
18440
18441 CREATE TRIGGER asset_label_sortkey_trigger
18442     BEFORE UPDATE OR INSERT ON asset.call_number
18443     FOR EACH ROW EXECUTE PROCEDURE asset.label_normalizer();
18444
18445 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
18446 RETURNS VOID AS $$
18447 --
18448 -- Delete expired circulation bucket items for all users that have
18449 -- a setting for patron.max_reading_list_interval.
18450 --
18451 DECLARE
18452     today        TIMESTAMP WITH TIME ZONE;
18453     threshold    TIMESTAMP WITH TIME ZONE;
18454         usr_setting  RECORD;
18455 BEGIN
18456         SELECT date_trunc( 'day', now() ) INTO today;
18457         --
18458         FOR usr_setting in
18459                 SELECT
18460                         usr,
18461                         value
18462                 FROM
18463                         actor.usr_setting
18464                 WHERE
18465                         name = 'patron.max_reading_list_interval'
18466         LOOP
18467                 --
18468                 -- Make sure the setting is a valid interval
18469                 --
18470                 BEGIN
18471                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
18472                 EXCEPTION
18473                         WHEN OTHERS THEN
18474                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
18475                                         usr_setting.usr, usr_setting.value;
18476                                 CONTINUE;
18477                 END;
18478                 --
18479                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
18480                 --
18481         DELETE FROM container.copy_bucket_item
18482         WHERE
18483                 bucket IN
18484                 (
18485                     SELECT
18486                         id
18487                     FROM
18488                         container.copy_bucket
18489                     WHERE
18490                         owner = usr_setting.usr
18491                         AND btype = 'circ_history'
18492                 )
18493                 AND create_time < threshold;
18494         END LOOP;
18495         --
18496 END;
18497 $$ LANGUAGE plpgsql;
18498
18499 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
18500 /*
18501  * Delete expired circulation bucket items for all users that have
18502  * a setting for patron.max_reading_list_interval.
18503 */
18504 $$;
18505
18506 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
18507          ac_usr IN INTEGER
18508 ) RETURNS VOID AS $$
18509 --
18510 -- Delete old circulation bucket items for a specified user.
18511 -- "Old" means older than the interval specified by a
18512 -- user-level setting, if it is so specified.
18513 --
18514 DECLARE
18515     threshold TIMESTAMP WITH TIME ZONE;
18516 BEGIN
18517         -- Sanity check
18518         IF ac_usr IS NULL THEN
18519                 RETURN;
18520         END IF;
18521         -- Determine the threshold date that defines "old".  Subtract the
18522         -- interval from the system date, then truncate to midnight.
18523         SELECT
18524                 date_trunc( 
18525                         'day',
18526                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
18527                 )
18528         INTO
18529                 threshold
18530         FROM
18531                 actor.usr_setting
18532         WHERE
18533                 usr = ac_usr
18534                 AND name = 'patron.max_reading_list_interval';
18535         --
18536         IF threshold is null THEN
18537                 -- No interval defined; don't delete anything
18538                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
18539                 return;
18540         END IF;
18541         --
18542         -- RAISE NOTICE 'Date threshold: %', threshold;
18543         --
18544         -- Threshold found; do the delete
18545         delete from container.copy_bucket_item
18546         where
18547                 bucket in
18548                 (
18549                         select
18550                                 id
18551                         from
18552                                 container.copy_bucket
18553                         where
18554                                 owner = ac_usr
18555                                 and btype = 'circ_history'
18556                 )
18557                 and create_time < threshold;
18558         --
18559         RETURN;
18560 END;
18561 $$ LANGUAGE plpgsql;
18562
18563 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
18564 /*
18565  * Delete old circulation bucket items for a specified user.
18566  * "Old" means older than the interval specified by a
18567  * user-level setting, if it is so specified.
18568 */
18569 $$;
18570
18571 CREATE OR REPLACE VIEW reporter.hold_request_record AS
18572 SELECT  id,
18573     target,
18574     hold_type,
18575     CASE
18576         WHEN hold_type = 'T'
18577             THEN target
18578         WHEN hold_type = 'I'
18579             THEN (SELECT ssub.record_entry FROM serial.subscription ssub JOIN serial.issuance si ON (si.subscription = ssub.id) WHERE si.id = ahr.target)
18580         WHEN hold_type = 'V'
18581             THEN (SELECT cn.record FROM asset.call_number cn WHERE cn.id = ahr.target)
18582         WHEN hold_type IN ('C','R','F')
18583             THEN (SELECT cn.record FROM asset.call_number cn JOIN asset.copy cp ON (cn.id = cp.call_number) WHERE cp.id = ahr.target)
18584         WHEN hold_type = 'M'
18585             THEN (SELECT mr.master_record FROM metabib.metarecord mr WHERE mr.id = ahr.target)
18586     END AS bib_record
18587   FROM  action.hold_request ahr;
18588
18589 UPDATE  metabib.rec_descriptor
18590   SET   date1=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date1, ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
18591         date2=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date2, ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
18592
18593 -- Change some ints to bigints:
18594
18595 ALTER TABLE container.biblio_record_entry_bucket_item
18596         ALTER COLUMN target_biblio_record_entry SET DATA TYPE bigint;
18597
18598 ALTER TABLE vandelay.queued_bib_record
18599         ALTER COLUMN imported_as SET DATA TYPE bigint;
18600
18601 ALTER TABLE action.hold_copy_map
18602         ALTER COLUMN id SET DATA TYPE bigint;
18603
18604 -- Make due times get pushed to 23:59:59 on insert OR update
18605 DROP TRIGGER IF EXISTS push_due_date_tgr ON action.circulation;
18606 CREATE TRIGGER push_due_date_tgr BEFORE INSERT OR UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.push_circ_due_time();
18607
18608 COMMIT;
18609
18610 -- Some operations go outside of the transaction, because they may
18611 -- legitimately fail.
18612
18613 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
18614 \qecho doesn't exist; ignore those errors if they occur.
18615
18616 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
18617
18618 ALTER TABLE auditor.action_hold_request_history
18619 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
18620
18621 ALTER TABLE auditor.action_hold_request_history
18622 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
18623
18624 \qecho Outside of the transaction: adding indexes that may or may not exist.
18625 \qecho If any of these CREATE INDEX statements fails because the index already
18626 \qecho exists, ignore the failure.
18627
18628 CREATE INDEX acq_picklist_owner_idx   ON acq.picklist ( owner );
18629 CREATE INDEX acq_picklist_creator_idx ON acq.picklist ( creator );
18630 CREATE INDEX acq_picklist_editor_idx  ON acq.picklist ( editor );
18631 CREATE INDEX acq_po_note_creator_idx  ON acq.po_note ( creator );
18632 CREATE INDEX acq_po_note_editor_idx   ON acq.po_note ( editor );
18633 CREATE INDEX fund_alloc_allocator_idx ON acq.fund_allocation ( allocator );
18634 CREATE INDEX li_creator_idx   ON acq.lineitem ( creator );
18635 CREATE INDEX li_editor_idx    ON acq.lineitem ( editor );
18636 CREATE INDEX li_selector_idx  ON acq.lineitem ( selector );
18637 CREATE INDEX li_note_creator_idx  ON acq.lineitem_note ( creator );
18638 CREATE INDEX li_note_editor_idx   ON acq.lineitem_note ( editor );
18639 CREATE INDEX li_usr_attr_def_usr_idx  ON acq.lineitem_usr_attr_definition ( usr );
18640 CREATE INDEX po_editor_idx   ON acq.purchase_order ( editor );
18641 CREATE INDEX po_creator_idx  ON acq.purchase_order ( creator );
18642 CREATE INDEX acq_po_org_name_order_date_idx ON acq.purchase_order( ordering_agency, name, order_date );
18643 CREATE INDEX action_in_house_use_staff_idx  ON action.in_house_use ( staff );
18644 CREATE INDEX action_non_cat_circ_patron_idx ON action.non_cataloged_circulation ( patron );
18645 CREATE INDEX action_non_cat_circ_staff_idx  ON action.non_cataloged_circulation ( staff );
18646 CREATE INDEX action_survey_response_usr_idx ON action.survey_response ( usr );
18647 CREATE INDEX ahn_notify_staff_idx           ON action.hold_notification ( notify_staff );
18648 CREATE INDEX circ_all_usr_idx               ON action.circulation ( usr );
18649 CREATE INDEX circ_circ_staff_idx            ON action.circulation ( circ_staff );
18650 CREATE INDEX circ_checkin_staff_idx         ON action.circulation ( checkin_staff );
18651 CREATE INDEX hold_request_fulfillment_staff_idx ON action.hold_request ( fulfillment_staff );
18652 CREATE INDEX hold_request_requestor_idx     ON action.hold_request ( requestor );
18653 CREATE INDEX non_cat_in_house_use_staff_idx ON action.non_cat_in_house_use ( staff );
18654 CREATE INDEX actor_usr_note_creator_idx     ON actor.usr_note ( creator );
18655 CREATE INDEX actor_usr_standing_penalty_staff_idx ON actor.usr_standing_penalty ( staff );
18656 CREATE INDEX usr_org_unit_opt_in_staff_idx  ON actor.usr_org_unit_opt_in ( staff );
18657 CREATE INDEX asset_call_number_note_creator_idx ON asset.call_number_note ( creator );
18658 CREATE INDEX asset_copy_note_creator_idx    ON asset.copy_note ( creator );
18659 CREATE INDEX cp_creator_idx                 ON asset.copy ( creator );
18660 CREATE INDEX cp_editor_idx                  ON asset.copy ( editor );
18661
18662 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
18663
18664 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
18665
18666 \qecho If the following CREATE INDEX fails, It will be necessary to do some
18667 \qecho data cleanup as described in the comments.
18668
18669 CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
18670     ON authority.record_entry (authority.normalize_heading(marc))
18671         WHERE deleted IS FALSE or deleted = FALSE;
18672
18673 -- If the unique index fails, uncomment the following to create
18674 -- a regular index that will help find the duplicates in a hurry:
18675 --CREATE INDEX by_heading_and_thesaurus
18676 --    ON authority.record_entry (authority.normalize_heading(marc))
18677 --    WHERE deleted IS FALSE or deleted = FALSE
18678 --;
18679
18680 -- Then find the duplicates like so to get an idea of how much
18681 -- pain you're looking at to clean things up:
18682 --SELECT id, authority.normalize_heading(marc)
18683 --    FROM authority.record_entry
18684 --    WHERE authority.normalize_heading(marc) IN (
18685 --        SELECT authority.normalize_heading(marc)
18686 --        FROM authority.record_entry
18687 --        GROUP BY authority.normalize_heading(marc)
18688 --        HAVING COUNT(*) > 1
18689 --    )
18690 --;
18691
18692 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
18693 -- statement succeeds, drop the temporary index to avoid unnecessary
18694 -- duplication:
18695 -- DROP INDEX authority.by_heading_and_thesaurus;
18696
18697 \qecho Upgrade script completed.