]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
Bring the 1.6.1-2.0 upgrade script up to date for the push_due_date_tgr
[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 ('0422');
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 )
10967 RETURNS SETOF RECORD AS $func$
10968 DECLARE
10969     xpath_list  TEXT[];
10970     select_list TEXT[];
10971     where_list  TEXT[];
10972     q           TEXT;
10973     out_record  RECORD;
10974     empty_test  RECORD;
10975 BEGIN
10976     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
10977
10978     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
10979
10980     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
10981         select_list := ARRAY_APPEND(
10982             select_list,
10983             $sel$
10984             EXPLODE_ARRAY(
10985                 COALESCE(
10986                     NULLIF(
10987                         oils_xpath(
10988                             $sel$ ||
10989                                 quote_literal(
10990                                     CASE
10991                                         WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
10992                                         ELSE xpath_list[i] || '//text()'
10993                                     END
10994                                 ) ||
10995                             $sel$,
10996                             $sel$ || document_field || $sel$
10997                         ),
10998                        '{}'::TEXT[]
10999                     ),
11000                     '{NULL}'::TEXT[]
11001                 )
11002             ) AS c_$sel$ || i
11003         );
11004         where_list := ARRAY_APPEND(
11005             where_list,
11006             'c_' || i || ' IS NOT NULL'
11007         );
11008     END LOOP;
11009
11010     q := $q$
11011 SELECT * FROM (
11012     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
11013 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' AND ' );
11014     -- RAISE NOTICE 'query: %', q;
11015
11016     FOR out_record IN EXECUTE q LOOP
11017         RETURN NEXT out_record;
11018     END LOOP;
11019
11020     RETURN;
11021 END;
11022 $func$ LANGUAGE PLPGSQL;
11023
11024 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
11025 DECLARE
11026
11027     owning_lib      TEXT;
11028     circ_lib        TEXT;
11029     call_number     TEXT;
11030     copy_number     TEXT;
11031     status          TEXT;
11032     location        TEXT;
11033     circulate       TEXT;
11034     deposit         TEXT;
11035     deposit_amount  TEXT;
11036     ref             TEXT;
11037     holdable        TEXT;
11038     price           TEXT;
11039     barcode         TEXT;
11040     circ_modifier   TEXT;
11041     circ_as_type    TEXT;
11042     alert_message   TEXT;
11043     opac_visible    TEXT;
11044     pub_note        TEXT;
11045     priv_note       TEXT;
11046
11047     attr_def        RECORD;
11048     tmp_attr_set    RECORD;
11049     attr_set        vandelay.import_item%ROWTYPE;
11050
11051     xpath           TEXT;
11052
11053 BEGIN
11054
11055     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
11056
11057     IF FOUND THEN
11058
11059         attr_set.definition := attr_def.id; 
11060     
11061         -- Build the combined XPath
11062     
11063         owning_lib :=
11064             CASE
11065                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
11066                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
11067                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
11068             END;
11069     
11070         circ_lib :=
11071             CASE
11072                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
11073                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
11074                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
11075             END;
11076     
11077         call_number :=
11078             CASE
11079                 WHEN attr_def.call_number IS NULL THEN 'null()'
11080                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
11081                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
11082             END;
11083     
11084         copy_number :=
11085             CASE
11086                 WHEN attr_def.copy_number IS NULL THEN 'null()'
11087                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
11088                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
11089             END;
11090     
11091         status :=
11092             CASE
11093                 WHEN attr_def.status IS NULL THEN 'null()'
11094                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
11095                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
11096             END;
11097     
11098         location :=
11099             CASE
11100                 WHEN attr_def.location IS NULL THEN 'null()'
11101                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
11102                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
11103             END;
11104     
11105         circulate :=
11106             CASE
11107                 WHEN attr_def.circulate IS NULL THEN 'null()'
11108                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
11109                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
11110             END;
11111     
11112         deposit :=
11113             CASE
11114                 WHEN attr_def.deposit IS NULL THEN 'null()'
11115                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
11116                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
11117             END;
11118     
11119         deposit_amount :=
11120             CASE
11121                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
11122                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
11123                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
11124             END;
11125     
11126         ref :=
11127             CASE
11128                 WHEN attr_def.ref IS NULL THEN 'null()'
11129                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
11130                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
11131             END;
11132     
11133         holdable :=
11134             CASE
11135                 WHEN attr_def.holdable IS NULL THEN 'null()'
11136                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
11137                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
11138             END;
11139     
11140         price :=
11141             CASE
11142                 WHEN attr_def.price IS NULL THEN 'null()'
11143                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
11144                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
11145             END;
11146     
11147         barcode :=
11148             CASE
11149                 WHEN attr_def.barcode IS NULL THEN 'null()'
11150                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
11151                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
11152             END;
11153     
11154         circ_modifier :=
11155             CASE
11156                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
11157                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
11158                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
11159             END;
11160     
11161         circ_as_type :=
11162             CASE
11163                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
11164                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
11165                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
11166             END;
11167     
11168         alert_message :=
11169             CASE
11170                 WHEN attr_def.alert_message IS NULL THEN 'null()'
11171                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
11172                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
11173             END;
11174     
11175         opac_visible :=
11176             CASE
11177                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
11178                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
11179                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
11180             END;
11181
11182         pub_note :=
11183             CASE
11184                 WHEN attr_def.pub_note IS NULL THEN 'null()'
11185                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
11186                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
11187             END;
11188         priv_note :=
11189             CASE
11190                 WHEN attr_def.priv_note IS NULL THEN 'null()'
11191                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
11192                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
11193             END;
11194     
11195     
11196         xpath := 
11197             owning_lib      || '|' || 
11198             circ_lib        || '|' || 
11199             call_number     || '|' || 
11200             copy_number     || '|' || 
11201             status          || '|' || 
11202             location        || '|' || 
11203             circulate       || '|' || 
11204             deposit         || '|' || 
11205             deposit_amount  || '|' || 
11206             ref             || '|' || 
11207             holdable        || '|' || 
11208             price           || '|' || 
11209             barcode         || '|' || 
11210             circ_modifier   || '|' || 
11211             circ_as_type    || '|' || 
11212             alert_message   || '|' || 
11213             pub_note        || '|' || 
11214             priv_note       || '|' || 
11215             opac_visible;
11216
11217         -- RAISE NOTICE 'XPath: %', xpath;
11218         
11219         FOR tmp_attr_set IN
11220                 SELECT  *
11221                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
11222                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
11223                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
11224                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
11225         LOOP
11226     
11227             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
11228             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
11229
11230             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
11231             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
11232     
11233             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
11234             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
11235             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
11236     
11237             SELECT  id INTO attr_set.location
11238               FROM  asset.copy_location
11239               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
11240                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
11241     
11242             attr_set.circulate      :=
11243                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
11244                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
11245
11246             attr_set.deposit        :=
11247                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
11248                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
11249
11250             attr_set.holdable       :=
11251                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
11252                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
11253
11254             attr_set.opac_visible   :=
11255                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
11256                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
11257
11258             attr_set.ref            :=
11259                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
11260                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
11261     
11262             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
11263             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
11264             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
11265     
11266             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
11267             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
11268             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
11269             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
11270             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11271             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
11272             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
11273             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
11274     
11275             RETURN NEXT attr_set;
11276     
11277         END LOOP;
11278     
11279     END IF;
11280
11281     RETURN;
11282
11283 END;
11284 $$ LANGUAGE PLPGSQL;
11285
11286 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
11287 DECLARE
11288     attr_def    BIGINT;
11289     item_data   vandelay.import_item%ROWTYPE;
11290 BEGIN
11291
11292     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
11293
11294     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
11295         INSERT INTO vandelay.import_item (
11296             record,
11297             definition,
11298             owning_lib,
11299             circ_lib,
11300             call_number,
11301             copy_number,
11302             status,
11303             location,
11304             circulate,
11305             deposit,
11306             deposit_amount,
11307             ref,
11308             holdable,
11309             price,
11310             barcode,
11311             circ_modifier,
11312             circ_as_type,
11313             alert_message,
11314             pub_note,
11315             priv_note,
11316             opac_visible
11317         ) VALUES (
11318             NEW.id,
11319             item_data.definition,
11320             item_data.owning_lib,
11321             item_data.circ_lib,
11322             item_data.call_number,
11323             item_data.copy_number,
11324             item_data.status,
11325             item_data.location,
11326             item_data.circulate,
11327             item_data.deposit,
11328             item_data.deposit_amount,
11329             item_data.ref,
11330             item_data.holdable,
11331             item_data.price,
11332             item_data.barcode,
11333             item_data.circ_modifier,
11334             item_data.circ_as_type,
11335             item_data.alert_message,
11336             item_data.pub_note,
11337             item_data.priv_note,
11338             item_data.opac_visible
11339         );
11340     END LOOP;
11341
11342     RETURN NULL;
11343 END;
11344 $func$ LANGUAGE PLPGSQL;
11345
11346 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11347 BEGIN
11348     EXECUTE $$
11349         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
11350     $$;
11351         RETURN TRUE;
11352 END;
11353 $creator$ LANGUAGE 'plpgsql';
11354
11355 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11356 BEGIN
11357     EXECUTE $$
11358         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
11359             audit_id    BIGINT                          PRIMARY KEY,
11360             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
11361             audit_action        TEXT                            NOT NULL,
11362             LIKE $$ || sch || $$.$$ || tbl || $$
11363         );
11364     $$;
11365         RETURN TRUE;
11366 END;
11367 $creator$ LANGUAGE 'plpgsql';
11368
11369 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11370 BEGIN
11371     EXECUTE $$
11372         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11373         RETURNS TRIGGER AS $func$
11374         BEGIN
11375             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11376                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11377                     now(),
11378                     SUBSTR(TG_OP,1,1),
11379                     OLD.*;
11380             RETURN NULL;
11381         END;
11382         $func$ LANGUAGE 'plpgsql';
11383     $$;
11384         RETURN TRUE;
11385 END;
11386 $creator$ LANGUAGE 'plpgsql';
11387
11388 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11389 BEGIN
11390     EXECUTE $$
11391         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11392             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11393             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11394     $$;
11395         RETURN TRUE;
11396 END;
11397 $creator$ LANGUAGE 'plpgsql';
11398
11399 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11400 BEGIN
11401     EXECUTE $$
11402         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11403             SELECT      -1, now() as audit_time, '-' as audit_action, *
11404               FROM      $$ || sch || $$.$$ || tbl || $$
11405                 UNION ALL
11406             SELECT      *
11407               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11408     $$;
11409         RETURN TRUE;
11410 END;
11411 $creator$ LANGUAGE 'plpgsql';
11412
11413 -- The main event
11414
11415 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11416 BEGIN
11417     PERFORM acq.create_acq_seq(sch, tbl);
11418     PERFORM acq.create_acq_history(sch, tbl);
11419     PERFORM acq.create_acq_func(sch, tbl);
11420     PERFORM acq.create_acq_update_trigger(sch, tbl);
11421     PERFORM acq.create_acq_lifecycle(sch, tbl);
11422     RETURN TRUE;
11423 END;
11424 $creator$ LANGUAGE 'plpgsql';
11425
11426 ALTER TABLE acq.lineitem DROP COLUMN item_count;
11427
11428 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11429     SELECT  fund.id AS fund,
11430             fund_debit.encumbrance AS encumbrance,
11431             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11432       FROM acq.fund AS fund
11433                         LEFT JOIN acq.fund_debit AS fund_debit
11434                                 ON ( fund.id = fund_debit.fund )
11435       GROUP BY 1,2;
11436
11437 CREATE TABLE acq.debit_attribution (
11438         id                     INT         NOT NULL PRIMARY KEY,
11439         fund_debit             INT         NOT NULL
11440                                            REFERENCES acq.fund_debit
11441                                            DEFERRABLE INITIALLY DEFERRED,
11442     debit_amount           NUMERIC     NOT NULL,
11443         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11444                                            DEFERRABLE INITIALLY DEFERRED,
11445     credit_amount          NUMERIC
11446 );
11447
11448 CREATE INDEX acq_attribution_debit_idx
11449         ON acq.debit_attribution( fund_debit );
11450
11451 CREATE INDEX acq_attribution_credit_idx
11452         ON acq.debit_attribution( funding_source_credit );
11453
11454 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11455 /*
11456 Function to attribute expenditures and encumbrances to funding source credits,
11457 and thereby to funding sources.
11458
11459 Read the debits in chonological order, attributing each one to one or
11460 more funding source credits.  Constraints:
11461
11462 1. Don't attribute more to a credit than the amount of the credit.
11463
11464 2. For a given fund, don't attribute more to a funding source than the
11465 source has allocated to that fund.
11466
11467 3. Attribute debits to credits with deadlines before attributing them to
11468 credits without deadlines.  Otherwise attribute to the earliest credits
11469 first, based on the deadline date when present, or on the effective date
11470 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11471 This ordering is defined by an ORDER BY clause on the view
11472 acq.ordered_funding_source_credit.
11473
11474 Start by truncating the table acq.debit_attribution.  Then insert a row
11475 into that table for each attribution.  If a debit cannot be fully
11476 attributed, insert a row for the unattributable balance, with the 
11477 funding_source_credit and credit_amount columns NULL.
11478 */
11479 DECLARE
11480         curr_fund_source_bal RECORD;
11481         seqno                INT;     -- sequence num for credits applicable to a fund
11482         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11483         fc                   RECORD;  -- used for loading t_fund_credit table
11484         sc                   RECORD;  -- used for loading t_fund_credit table
11485         --
11486         -- Used exclusively in the main loop:
11487         --
11488         deb                 RECORD;   -- current row from acq.fund_debit table
11489         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11490         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11491         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11492         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11493         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11494         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11495         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11496         attrib_count        INT;      -- populates id of acq.debit_attribution
11497 BEGIN
11498         --
11499         -- Load a temporary table.  For each combination of fund and funding source,
11500         -- load an entry with the total amount allocated to that fund by that source.
11501         -- This sum may reflect transfers as well as original allocations.  We will
11502         -- reduce this balance whenever we attribute debits to it.
11503         --
11504         CREATE TEMP TABLE t_fund_source_bal
11505         ON COMMIT DROP AS
11506                 SELECT
11507                         fund AS fund,
11508                         funding_source AS source,
11509                         sum( amount ) AS balance
11510                 FROM
11511                         acq.fund_allocation
11512                 GROUP BY
11513                         fund,
11514                         funding_source
11515                 HAVING
11516                         sum( amount ) > 0;
11517         --
11518         CREATE INDEX t_fund_source_bal_idx
11519                 ON t_fund_source_bal( fund, source );
11520         -------------------------------------------------------------------------------
11521         --
11522         -- Load another temporary table.  For each fund, load zero or more
11523         -- funding source credits from which that fund can get money.
11524         --
11525         CREATE TEMP TABLE t_fund_credit (
11526                 fund        INT,
11527                 seq         INT,
11528                 credit      INT
11529         ) ON COMMIT DROP;
11530         --
11531         FOR fc IN
11532                 SELECT DISTINCT fund
11533                 FROM acq.fund_allocation
11534                 ORDER BY fund
11535         LOOP                  -- Loop over the funds
11536                 seqno := 1;
11537                 FOR sc IN
11538                         SELECT
11539                                 ofsc.id
11540                         FROM
11541                                 acq.ordered_funding_source_credit AS ofsc
11542                         WHERE
11543                                 ofsc.funding_source IN
11544                                 (
11545                                         SELECT funding_source
11546                                         FROM acq.fund_allocation
11547                                         WHERE fund = fc.fund
11548                                 )
11549                 ORDER BY
11550                     ofsc.sort_priority,
11551                     ofsc.sort_date,
11552                     ofsc.id
11553                 LOOP                        -- Add each credit to the list
11554                         INSERT INTO t_fund_credit (
11555                                 fund,
11556                                 seq,
11557                                 credit
11558                         ) VALUES (
11559                                 fc.fund,
11560                                 seqno,
11561                                 sc.id
11562                         );
11563                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11564                         seqno := seqno + 1;
11565                 END LOOP;     -- Loop over credits for a given fund
11566         END LOOP;         -- Loop over funds
11567         --
11568         CREATE INDEX t_fund_credit_idx
11569                 ON t_fund_credit( fund, seq );
11570         -------------------------------------------------------------------------------
11571         --
11572         -- Load yet another temporary table.  This one is a list of funding source
11573         -- credits, with their balances.  We shall reduce those balances as we
11574         -- attribute debits to them.
11575         --
11576         CREATE TEMP TABLE t_credit
11577         ON COMMIT DROP AS
11578         SELECT
11579             fsc.id AS credit,
11580             fsc.funding_source AS source,
11581             fsc.amount AS balance,
11582             fs.currency_type AS currency_type
11583         FROM
11584             acq.funding_source_credit AS fsc,
11585             acq.funding_source fs
11586         WHERE
11587             fsc.funding_source = fs.id
11588                         AND fsc.amount > 0;
11589         --
11590         CREATE INDEX t_credit_idx
11591                 ON t_credit( credit );
11592         --
11593         -------------------------------------------------------------------------------
11594         --
11595         -- Now that we have loaded the lookup tables: loop through the debits,
11596         -- attributing each one to one or more funding source credits.
11597         -- 
11598         truncate table acq.debit_attribution;
11599         --
11600         attrib_count := 0;
11601         FOR deb in
11602                 SELECT
11603                         fd.id,
11604                         fd.fund,
11605                         fd.amount,
11606                         f.currency_type,
11607                         fd.encumbrance
11608                 FROM
11609                         acq.fund_debit fd,
11610                         acq.fund f
11611                 WHERE
11612                         fd.fund = f.id
11613                 ORDER BY
11614                         fd.id
11615         LOOP
11616                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11617                 --
11618                 debit_balance := deb.amount;
11619                 --
11620                 -- Loop over the funding source credits that are eligible
11621                 -- to pay for this debit
11622                 --
11623                 FOR fund_credit IN
11624                         SELECT
11625                                 credit
11626                         FROM
11627                                 t_fund_credit
11628                         WHERE
11629                                 fund = deb.fund
11630                         ORDER BY
11631                                 seq
11632                 LOOP
11633                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11634                         --
11635                         -- Look up the balance for this credit.  If it's zero, then
11636                         -- it's not useful, so treat it as if you didn't find it.
11637                         -- (Actually there shouldn't be any zero balances in the table,
11638                         -- but we check just to make sure.)
11639                         --
11640                         SELECT *
11641                         INTO curr_credit_bal
11642                         FROM t_credit
11643                         WHERE
11644                                 credit = fund_credit.credit
11645                                 AND balance > 0;
11646                         --
11647                         IF curr_credit_bal IS NULL THEN
11648                                 --
11649                                 -- This credit is exhausted; try the next one.
11650                                 --
11651                                 CONTINUE;
11652                         END IF;
11653                         --
11654                         --
11655                         -- At this point we have an applicable credit with some money left.
11656                         -- Now see if the relevant funding_source has any money left.
11657                         --
11658                         -- Look up the balance of the allocation for this combination of
11659                         -- fund and source.  If you find such an entry, but it has a zero
11660                         -- balance, then it's not useful, so treat it as unfound.
11661                         -- (Actually there shouldn't be any zero balances in the table,
11662                         -- but we check just to make sure.)
11663                         --
11664                         SELECT *
11665                         INTO curr_fund_source_bal
11666                         FROM t_fund_source_bal
11667                         WHERE
11668                                 fund = deb.fund
11669                                 AND source = curr_credit_bal.source
11670                                 AND balance > 0;
11671                         --
11672                         IF curr_fund_source_bal IS NULL THEN
11673                                 --
11674                                 -- This fund/source doesn't exist or is already exhausted,
11675                                 -- so we can't use this credit.  Go on to the next one.
11676                                 --
11677                                 CONTINUE;
11678                         END IF;
11679                         --
11680                         -- Convert the available balances to the currency of the fund
11681                         --
11682                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11683                                 curr_credit_bal.currency_type, deb.currency_type );
11684                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11685                                 curr_credit_bal.currency_type, deb.currency_type );
11686                         --
11687                         -- Determine how much we can attribute to this credit: the minimum
11688                         -- of the debit amount, the fund/source balance, and the
11689                         -- credit balance
11690                         --
11691                         --RAISE NOTICE '   deb bal %', debit_balance;
11692                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11693                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11694                         --
11695                         conv_attr_amount := NULL;
11696                         attr_amount := debit_balance;
11697                         --
11698                         IF attr_amount > conv_alloc_balance THEN
11699                                 attr_amount := conv_alloc_balance;
11700                                 conv_attr_amount := curr_fund_source_bal.balance;
11701                         END IF;
11702                         IF attr_amount > conv_cred_balance THEN
11703                                 attr_amount := conv_cred_balance;
11704                                 conv_attr_amount := curr_credit_bal.balance;
11705                         END IF;
11706                         --
11707                         -- If we're attributing all of one of the balances, then that's how
11708                         -- much we will deduct from the balances, and we already captured
11709                         -- that amount above.  Otherwise we must convert the amount of the
11710                         -- attribution from the currency of the fund back to the currency of
11711                         -- the funding source.
11712                         --
11713                         IF conv_attr_amount IS NULL THEN
11714                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11715                                         deb.currency_type, curr_credit_bal.currency_type );
11716                         END IF;
11717                         --
11718                         -- Insert a row to record the attribution
11719                         --
11720                         attrib_count := attrib_count + 1;
11721                         INSERT INTO acq.debit_attribution (
11722                                 id,
11723                                 fund_debit,
11724                                 debit_amount,
11725                                 funding_source_credit,
11726                                 credit_amount
11727                         ) VALUES (
11728                                 attrib_count,
11729                                 deb.id,
11730                                 attr_amount,
11731                                 curr_credit_bal.credit,
11732                                 conv_attr_amount
11733                         );
11734                         --
11735                         -- Subtract the attributed amount from the various balances
11736                         --
11737                         debit_balance := debit_balance - attr_amount;
11738                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11739                         --
11740                         IF curr_fund_source_bal.balance <= 0 THEN
11741                                 --
11742                                 -- This allocation is exhausted.  Delete it so
11743                                 -- that we don't waste time looking at it again.
11744                                 --
11745                                 DELETE FROM t_fund_source_bal
11746                                 WHERE
11747                                         fund = curr_fund_source_bal.fund
11748                                         AND source = curr_fund_source_bal.source;
11749                         ELSE
11750                                 UPDATE t_fund_source_bal
11751                                 SET balance = balance - conv_attr_amount
11752                                 WHERE
11753                                         fund = curr_fund_source_bal.fund
11754                                         AND source = curr_fund_source_bal.source;
11755                         END IF;
11756                         --
11757                         IF curr_credit_bal.balance <= 0 THEN
11758                                 --
11759                                 -- This funding source credit is exhausted.  Delete it
11760                                 -- so that we don't waste time looking at it again.
11761                                 --
11762                                 --DELETE FROM t_credit
11763                                 --WHERE
11764                                 --      credit = curr_credit_bal.credit;
11765                                 --
11766                                 DELETE FROM t_fund_credit
11767                                 WHERE
11768                                         credit = curr_credit_bal.credit;
11769                         ELSE
11770                                 UPDATE t_credit
11771                                 SET balance = curr_credit_bal.balance
11772                                 WHERE
11773                                         credit = curr_credit_bal.credit;
11774                         END IF;
11775                         --
11776                         -- Are we done with this debit yet?
11777                         --
11778                         IF debit_balance <= 0 THEN
11779                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11780                         END IF;
11781                 END LOOP;       -- End loop over credits
11782                 --
11783                 IF debit_balance <> 0 THEN
11784                         --
11785                         -- We weren't able to attribute this debit, or at least not
11786                         -- all of it.  Insert a row for the unattributed balance.
11787                         --
11788                         attrib_count := attrib_count + 1;
11789                         INSERT INTO acq.debit_attribution (
11790                                 id,
11791                                 fund_debit,
11792                                 debit_amount,
11793                                 funding_source_credit,
11794                                 credit_amount
11795                         ) VALUES (
11796                                 attrib_count,
11797                                 deb.id,
11798                                 debit_balance,
11799                                 NULL,
11800                                 NULL
11801                         );
11802                 END IF;
11803         END LOOP;   -- End of loop over debits
11804 END;
11805 $$ LANGUAGE 'plpgsql';
11806
11807 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11808 DECLARE
11809     query TEXT;
11810     output TEXT;
11811 BEGIN
11812     query := $q$
11813         SELECT  regexp_replace(
11814                     oils_xpath_string(
11815                         $q$ || quote_literal($3) || $q$,
11816                         marc,
11817                         ' '
11818                     ),
11819                     $q$ || quote_literal($4) || $q$,
11820                     '',
11821                     'g')
11822           FROM  $q$ || $1 || $q$
11823           WHERE id = $q$ || $2;
11824
11825     EXECUTE query INTO output;
11826
11827     -- RAISE NOTICE 'query: %, output; %', query, output;
11828
11829     RETURN output;
11830 END;
11831 $$ LANGUAGE PLPGSQL IMMUTABLE;
11832
11833 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
11834     SELECT extract_marc_field($1,$2,$3,'');
11835 $$ LANGUAGE SQL IMMUTABLE;
11836
11837 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
11838 DECLARE
11839     moved_objects INT := 0;
11840     source_cn     asset.call_number%ROWTYPE;
11841     target_cn     asset.call_number%ROWTYPE;
11842     metarec       metabib.metarecord%ROWTYPE;
11843     hold          action.hold_request%ROWTYPE;
11844     ser_rec       serial.record_entry%ROWTYPE;
11845     uri_count     INT := 0;
11846     counter       INT := 0;
11847     uri_datafield TEXT;
11848     uri_text      TEXT := '';
11849 BEGIN
11850
11851     -- move any 856 entries on records that have at least one MARC-mapped URI entry
11852     SELECT  INTO uri_count COUNT(*)
11853       FROM  asset.uri_call_number_map m
11854             JOIN asset.call_number cn ON (m.call_number = cn.id)
11855       WHERE cn.record = source_record;
11856
11857     IF uri_count > 0 THEN
11858
11859         SELECT  COUNT(*) INTO counter
11860           FROM  oils_xpath_table(
11861                     'id',
11862                     'marc',
11863                     'biblio.record_entry',
11864                     '//*[@tag="856"]',
11865                     'id=' || source_record
11866                 ) as t(i int,c text);
11867
11868         FOR i IN 1 .. counter LOOP
11869             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
11870                         ' tag="856"' || 
11871                         ' ind1="' || FIRST(ind1) || '"'  || 
11872                         ' ind2="' || FIRST(ind2) || '">' || 
11873                         array_to_string(
11874                             array_accum(
11875                                 '<subfield code="' || subfield || '">' ||
11876                                 regexp_replace(
11877                                     regexp_replace(
11878                                         regexp_replace(data,'&','&amp;','g'),
11879                                         '>', '&gt;', 'g'
11880                                     ),
11881                                     '<', '&lt;', 'g'
11882                                 ) || '</subfield>'
11883                             ), ''
11884                         ) || '</datafield>' INTO uri_datafield
11885               FROM  oils_xpath_table(
11886                         'id',
11887                         'marc',
11888                         'biblio.record_entry',
11889                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
11890                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
11891                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
11892                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
11893                         'id=' || source_record
11894                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
11895
11896             uri_text := uri_text || uri_datafield;
11897         END LOOP;
11898
11899         IF uri_text <> '' THEN
11900             UPDATE  biblio.record_entry
11901               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
11902               WHERE id = target_record;
11903         END IF;
11904
11905     END IF;
11906
11907     -- Find and move metarecords to the target record
11908     SELECT  INTO metarec *
11909       FROM  metabib.metarecord
11910       WHERE master_record = source_record;
11911
11912     IF FOUND THEN
11913         UPDATE  metabib.metarecord
11914           SET   master_record = target_record,
11915             mods = NULL
11916           WHERE id = metarec.id;
11917
11918         moved_objects := moved_objects + 1;
11919     END IF;
11920
11921     -- Find call numbers attached to the source ...
11922     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
11923
11924         SELECT  INTO target_cn *
11925           FROM  asset.call_number
11926           WHERE label = source_cn.label
11927             AND owning_lib = source_cn.owning_lib
11928             AND record = target_record;
11929
11930         -- ... and if there's a conflicting one on the target ...
11931         IF FOUND THEN
11932
11933             -- ... move the copies to that, and ...
11934             UPDATE  asset.copy
11935               SET   call_number = target_cn.id
11936               WHERE call_number = source_cn.id;
11937
11938             -- ... move V holds to the move-target call number
11939             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
11940
11941                 UPDATE  action.hold_request
11942                   SET   target = target_cn.id
11943                   WHERE id = hold.id;
11944
11945                 moved_objects := moved_objects + 1;
11946             END LOOP;
11947
11948         -- ... if not ...
11949         ELSE
11950             -- ... just move the call number to the target record
11951             UPDATE  asset.call_number
11952               SET   record = target_record
11953               WHERE id = source_cn.id;
11954         END IF;
11955
11956         moved_objects := moved_objects + 1;
11957     END LOOP;
11958
11959     -- Find T holds targeting the source record ...
11960     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
11961
11962         -- ... and move them to the target record
11963         UPDATE  action.hold_request
11964           SET   target = target_record
11965           WHERE id = hold.id;
11966
11967         moved_objects := moved_objects + 1;
11968     END LOOP;
11969
11970     -- Find serial records targeting the source record ...
11971     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
11972         -- ... and move them to the target record
11973         UPDATE  serial.record_entry
11974           SET   record = target_record
11975           WHERE id = ser_rec.id;
11976
11977         moved_objects := moved_objects + 1;
11978     END LOOP;
11979
11980     -- Finally, "delete" the source record
11981     DELETE FROM biblio.record_entry WHERE id = source_record;
11982
11983     -- That's all, folks!
11984     RETURN moved_objects;
11985 END;
11986 $func$ LANGUAGE plpgsql;
11987
11988 CREATE OR REPLACE FUNCTION acq.transfer_fund(
11989         old_fund   IN INT,
11990         old_amount IN NUMERIC,     -- in currency of old fund
11991         new_fund   IN INT,
11992         new_amount IN NUMERIC,     -- in currency of new fund
11993         user_id    IN INT,
11994         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
11995         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
11996 ) RETURNS VOID AS $$
11997 /* -------------------------------------------------------------------------------
11998
11999 Function to transfer money from one fund to another.
12000
12001 A transfer is represented as a pair of entries in acq.fund_allocation, with a
12002 negative amount for the old (losing) fund and a positive amount for the new
12003 (gaining) fund.  In some cases there may be more than one such pair of entries
12004 in order to pull the money from different funding sources, or more specifically
12005 from different funding source credits.  For each such pair there is also an
12006 entry in acq.fund_transfer.
12007
12008 Since funding_source is a non-nullable column in acq.fund_allocation, we must
12009 choose a funding source for the transferred money to come from.  This choice
12010 must meet two constraints, so far as possible:
12011
12012 1. The amount transferred from a given funding source must not exceed the
12013 amount allocated to the old fund by the funding source.  To that end we
12014 compare the amount being transferred to the amount allocated.
12015
12016 2. We shouldn't transfer money that has already been spent or encumbered, as
12017 defined by the funding attribution process.  We attribute expenses to the
12018 oldest funding source credits first.  In order to avoid transferring that
12019 attributed money, we reverse the priority, transferring from the newest funding
12020 source credits first.  There can be no guarantee that this approach will
12021 avoid overcommitting a fund, but no other approach can do any better.
12022
12023 In this context the age of a funding source credit is defined by the
12024 deadline_date for credits with deadline_dates, and by the effective_date for
12025 credits without deadline_dates, with the proviso that credits with deadline_dates
12026 are all considered "older" than those without.
12027
12028 ----------
12029
12030 In the signature for this function, there is one last parameter commented out,
12031 named "funding_source_in".  Correspondingly, the WHERE clause for the query
12032 driving the main loop has an OR clause commented out, which references the
12033 funding_source_in parameter.
12034
12035 If these lines are uncommented, this function will allow the user optionally to
12036 restrict a fund transfer to a specified funding source.  If the source
12037 parameter is left NULL, then there will be no such restriction.
12038
12039 ------------------------------------------------------------------------------- */ 
12040 DECLARE
12041         same_currency      BOOLEAN;
12042         currency_ratio     NUMERIC;
12043         old_fund_currency  TEXT;
12044         old_remaining      NUMERIC;  -- in currency of old fund
12045         new_fund_currency  TEXT;
12046         new_fund_active    BOOLEAN;
12047         new_remaining      NUMERIC;  -- in currency of new fund
12048         curr_old_amt       NUMERIC;  -- in currency of old fund
12049         curr_new_amt       NUMERIC;  -- in currency of new fund
12050         source_addition    NUMERIC;  -- in currency of funding source
12051         source_deduction   NUMERIC;  -- in currency of funding source
12052         orig_allocated_amt NUMERIC;  -- in currency of funding source
12053         allocated_amt      NUMERIC;  -- in currency of fund
12054         source             RECORD;
12055 BEGIN
12056         --
12057         -- Sanity checks
12058         --
12059         IF old_fund IS NULL THEN
12060                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
12061         END IF;
12062         --
12063         IF old_amount IS NULL THEN
12064                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
12065         END IF;
12066         --
12067         -- The new fund and its amount must be both NULL or both not NULL.
12068         --
12069         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
12070                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
12071         END IF;
12072         --
12073         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
12074                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
12075         END IF;
12076         --
12077         IF user_id IS NULL THEN
12078                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
12079         END IF;
12080         --
12081         -- Initialize the amounts to be transferred, each denominated
12082         -- in the currency of its respective fund.  They will be
12083         -- reduced on each iteration of the loop.
12084         --
12085         old_remaining := old_amount;
12086         new_remaining := new_amount;
12087         --
12088         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
12089         --      old_amount, old_fund, new_amount, new_fund;
12090         --
12091         -- Get the currency types of the old and new funds.
12092         --
12093         SELECT
12094                 currency_type
12095         INTO
12096                 old_fund_currency
12097         FROM
12098                 acq.fund
12099         WHERE
12100                 id = old_fund;
12101         --
12102         IF old_fund_currency IS NULL THEN
12103                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
12104         END IF;
12105         --
12106         IF new_fund IS NOT NULL THEN
12107                 SELECT
12108                         currency_type,
12109                         active
12110                 INTO
12111                         new_fund_currency,
12112                         new_fund_active
12113                 FROM
12114                         acq.fund
12115                 WHERE
12116                         id = new_fund;
12117                 --
12118                 IF new_fund_currency IS NULL THEN
12119                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
12120                 ELSIF NOT new_fund_active THEN
12121                         --
12122                         -- No point in putting money into a fund from whence you can't spend it
12123                         --
12124                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
12125                 END IF;
12126                 --
12127                 IF new_amount = old_amount THEN
12128                         same_currency := true;
12129                         currency_ratio := 1;
12130                 ELSE
12131                         --
12132                         -- We'll have to translate currency between funds.  We presume that
12133                         -- the calling code has already applied an appropriate exchange rate,
12134                         -- so we'll apply the same conversion to each sub-transfer.
12135                         --
12136                         same_currency := false;
12137                         currency_ratio := new_amount / old_amount;
12138                 END IF;
12139         END IF;
12140         --
12141         -- Identify the funding source(s) from which we want to transfer the money.
12142         -- The principle is that we want to transfer the newest money first, because
12143         -- we spend the oldest money first.  The priority for spending is defined
12144         -- by a sort of the view acq.ordered_funding_source_credit.
12145         --
12146         FOR source in
12147                 SELECT
12148                         ofsc.id,
12149                         ofsc.funding_source,
12150                         ofsc.amount,
12151                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
12152                                 AS converted_amt,
12153                         fs.currency_type
12154                 FROM
12155                         acq.ordered_funding_source_credit AS ofsc,
12156                         acq.funding_source fs
12157                 WHERE
12158                         ofsc.funding_source = fs.id
12159                         and ofsc.funding_source IN
12160                         (
12161                                 SELECT funding_source
12162                                 FROM acq.fund_allocation
12163                                 WHERE fund = old_fund
12164                         )
12165                         -- and
12166                         -- (
12167                         --      ofsc.funding_source = funding_source_in
12168                         --      OR funding_source_in IS NULL
12169                         -- )
12170                 ORDER BY
12171                         ofsc.sort_priority desc,
12172                         ofsc.sort_date desc,
12173                         ofsc.id desc
12174         LOOP
12175                 --
12176                 -- Determine how much money the old fund got from this funding source,
12177                 -- denominated in the currency types of the source and of the fund.
12178                 -- This result may reflect transfers from previous iterations.
12179                 --
12180                 SELECT
12181                         COALESCE( sum( amount ), 0 ),
12182                         COALESCE( sum( amount )
12183                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
12184                 INTO
12185                         orig_allocated_amt,     -- in currency of the source
12186                         allocated_amt           -- in currency of the old fund
12187                 FROM
12188                         acq.fund_allocation
12189                 WHERE
12190                         fund = old_fund
12191                         and funding_source = source.funding_source;
12192                 --      
12193                 -- Determine how much to transfer from this credit, in the currency
12194                 -- of the fund.   Begin with the amount remaining to be attributed:
12195                 --
12196                 curr_old_amt := old_remaining;
12197                 --
12198                 -- Can't attribute more than was allocated from the fund:
12199                 --
12200                 IF curr_old_amt > allocated_amt THEN
12201                         curr_old_amt := allocated_amt;
12202                 END IF;
12203                 --
12204                 -- Can't attribute more than the amount of the current credit:
12205                 --
12206                 IF curr_old_amt > source.converted_amt THEN
12207                         curr_old_amt := source.converted_amt;
12208                 END IF;
12209                 --
12210                 curr_old_amt := trunc( curr_old_amt, 2 );
12211                 --
12212                 old_remaining := old_remaining - curr_old_amt;
12213                 --
12214                 -- Determine the amount to be deducted, if any,
12215                 -- from the old allocation.
12216                 --
12217                 IF old_remaining > 0 THEN
12218                         --
12219                         -- In this case we're using the whole allocation, so use that
12220                         -- amount directly instead of applying a currency translation
12221                         -- and thereby inviting round-off errors.
12222                         --
12223                         source_deduction := - orig_allocated_amt;
12224                 ELSE 
12225                         source_deduction := trunc(
12226                                 ( - curr_old_amt ) *
12227                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
12228                                 2 );
12229                 END IF;
12230                 --
12231                 IF source_deduction <> 0 THEN
12232                         --
12233                         -- Insert negative allocation for old fund in fund_allocation,
12234                         -- converted into the currency of the funding source
12235                         --
12236                         INSERT INTO acq.fund_allocation (
12237                                 funding_source,
12238                                 fund,
12239                                 amount,
12240                                 allocator,
12241                                 note
12242                         ) VALUES (
12243                                 source.funding_source,
12244                                 old_fund,
12245                                 source_deduction,
12246                                 user_id,
12247                                 'Transfer to fund ' || new_fund
12248                         );
12249                 END IF;
12250                 --
12251                 IF new_fund IS NOT NULL THEN
12252                         --
12253                         -- Determine how much to add to the new fund, in
12254                         -- its currency, and how much remains to be added:
12255                         --
12256                         IF same_currency THEN
12257                                 curr_new_amt := curr_old_amt;
12258                         ELSE
12259                                 IF old_remaining = 0 THEN
12260                                         --
12261                                         -- This is the last iteration, so nothing should be left
12262                                         --
12263                                         curr_new_amt := new_remaining;
12264                                         new_remaining := 0;
12265                                 ELSE
12266                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
12267                                         new_remaining := new_remaining - curr_new_amt;
12268                                 END IF;
12269                         END IF;
12270                         --
12271                         -- Determine how much to add, if any,
12272                         -- to the new fund's allocation.
12273                         --
12274                         IF old_remaining > 0 THEN
12275                                 --
12276                                 -- In this case we're using the whole allocation, so use that amount
12277                                 -- amount directly instead of applying a currency translation and
12278                                 -- thereby inviting round-off errors.
12279                                 --
12280                                 source_addition := orig_allocated_amt;
12281                         ELSIF source.currency_type = old_fund_currency THEN
12282                                 --
12283                                 -- In this case we don't need a round trip currency translation,
12284                                 -- thereby inviting round-off errors:
12285                                 --
12286                                 source_addition := curr_old_amt;
12287                         ELSE 
12288                                 source_addition := trunc(
12289                                         curr_new_amt *
12290                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
12291                                         2 );
12292                         END IF;
12293                         --
12294                         IF source_addition <> 0 THEN
12295                                 --
12296                                 -- Insert positive allocation for new fund in fund_allocation,
12297                                 -- converted to the currency of the founding source
12298                                 --
12299                                 INSERT INTO acq.fund_allocation (
12300                                         funding_source,
12301                                         fund,
12302                                         amount,
12303                                         allocator,
12304                                         note
12305                                 ) VALUES (
12306                                         source.funding_source,
12307                                         new_fund,
12308                                         source_addition,
12309                                         user_id,
12310                                         'Transfer from fund ' || old_fund
12311                                 );
12312                         END IF;
12313                 END IF;
12314                 --
12315                 IF trunc( curr_old_amt, 2 ) <> 0
12316                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
12317                         --
12318                         -- Insert row in fund_transfer, using amounts in the currency of the funds
12319                         --
12320                         INSERT INTO acq.fund_transfer (
12321                                 src_fund,
12322                                 src_amount,
12323                                 dest_fund,
12324                                 dest_amount,
12325                                 transfer_user,
12326                                 note,
12327                                 funding_source_credit
12328                         ) VALUES (
12329                                 old_fund,
12330                                 trunc( curr_old_amt, 2 ),
12331                                 new_fund,
12332                                 trunc( curr_new_amt, 2 ),
12333                                 user_id,
12334                                 xfer_note,
12335                                 source.id
12336                         );
12337                 END IF;
12338                 --
12339                 if old_remaining <= 0 THEN
12340                         EXIT;                   -- Nothing more to be transferred
12341                 END IF;
12342         END LOOP;
12343 END;
12344 $$ LANGUAGE plpgsql;
12345
12346 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
12347         old_year INTEGER,
12348         user_id INTEGER,
12349         org_unit_id INTEGER
12350 ) RETURNS VOID AS $$
12351 DECLARE
12352 --
12353 new_id      INT;
12354 old_fund    RECORD;
12355 org_found   BOOLEAN;
12356 --
12357 BEGIN
12358         --
12359         -- Sanity checks
12360         --
12361         IF old_year IS NULL THEN
12362                 RAISE EXCEPTION 'Input year argument is NULL';
12363         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12364                 RAISE EXCEPTION 'Input year is out of range';
12365         END IF;
12366         --
12367         IF user_id IS NULL THEN
12368                 RAISE EXCEPTION 'Input user id argument is NULL';
12369         END IF;
12370         --
12371         IF org_unit_id IS NULL THEN
12372                 RAISE EXCEPTION 'Org unit id argument is NULL';
12373         ELSE
12374                 SELECT TRUE INTO org_found
12375                 FROM actor.org_unit
12376                 WHERE id = org_unit_id;
12377                 --
12378                 IF org_found IS NULL THEN
12379                         RAISE EXCEPTION 'Org unit id is invalid';
12380                 END IF;
12381         END IF;
12382         --
12383         -- Loop over the applicable funds
12384         --
12385         FOR old_fund in SELECT * FROM acq.fund
12386         WHERE
12387                 year = old_year
12388                 AND propagate
12389                 AND org = org_unit_id
12390         LOOP
12391                 BEGIN
12392                         INSERT INTO acq.fund (
12393                                 org,
12394                                 name,
12395                                 year,
12396                                 currency_type,
12397                                 code,
12398                                 rollover,
12399                                 propagate,
12400                                 balance_warning_percent,
12401                                 balance_stop_percent
12402                         ) VALUES (
12403                                 old_fund.org,
12404                                 old_fund.name,
12405                                 old_year + 1,
12406                                 old_fund.currency_type,
12407                                 old_fund.code,
12408                                 old_fund.rollover,
12409                                 true,
12410                                 old_fund.balance_warning_percent,
12411                                 old_fund.balance_stop_percent
12412                         )
12413                         RETURNING id INTO new_id;
12414                 EXCEPTION
12415                         WHEN unique_violation THEN
12416                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12417                                 CONTINUE;
12418                 END;
12419                 --RAISE NOTICE 'Propagating fund % to fund %',
12420                 --      old_fund.code, new_id;
12421         END LOOP;
12422 END;
12423 $$ LANGUAGE plpgsql;
12424
12425 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12426         old_year INTEGER,
12427         user_id INTEGER,
12428         org_unit_id INTEGER
12429 ) RETURNS VOID AS $$
12430 DECLARE
12431 --
12432 new_id      INT;
12433 old_fund    RECORD;
12434 org_found   BOOLEAN;
12435 --
12436 BEGIN
12437         --
12438         -- Sanity checks
12439         --
12440         IF old_year IS NULL THEN
12441                 RAISE EXCEPTION 'Input year argument is NULL';
12442         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12443                 RAISE EXCEPTION 'Input year is out of range';
12444         END IF;
12445         --
12446         IF user_id IS NULL THEN
12447                 RAISE EXCEPTION 'Input user id argument is NULL';
12448         END IF;
12449         --
12450         IF org_unit_id IS NULL THEN
12451                 RAISE EXCEPTION 'Org unit id argument is NULL';
12452         ELSE
12453                 SELECT TRUE INTO org_found
12454                 FROM actor.org_unit
12455                 WHERE id = org_unit_id;
12456                 --
12457                 IF org_found IS NULL THEN
12458                         RAISE EXCEPTION 'Org unit id is invalid';
12459                 END IF;
12460         END IF;
12461         --
12462         -- Loop over the applicable funds
12463         --
12464         FOR old_fund in SELECT * FROM acq.fund
12465         WHERE
12466                 year = old_year
12467                 AND propagate
12468                 AND org in (
12469                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12470                 )
12471         LOOP
12472                 BEGIN
12473                         INSERT INTO acq.fund (
12474                                 org,
12475                                 name,
12476                                 year,
12477                                 currency_type,
12478                                 code,
12479                                 rollover,
12480                                 propagate,
12481                                 balance_warning_percent,
12482                                 balance_stop_percent
12483                         ) VALUES (
12484                                 old_fund.org,
12485                                 old_fund.name,
12486                                 old_year + 1,
12487                                 old_fund.currency_type,
12488                                 old_fund.code,
12489                                 old_fund.rollover,
12490                                 true,
12491                                 old_fund.balance_warning_percent,
12492                                 old_fund.balance_stop_percent
12493                         )
12494                         RETURNING id INTO new_id;
12495                 EXCEPTION
12496                         WHEN unique_violation THEN
12497                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12498                                 CONTINUE;
12499                 END;
12500                 --RAISE NOTICE 'Propagating fund % to fund %',
12501                 --      old_fund.code, new_id;
12502         END LOOP;
12503 END;
12504 $$ LANGUAGE plpgsql;
12505
12506 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12507         old_year INTEGER,
12508         user_id INTEGER,
12509         org_unit_id INTEGER
12510 ) RETURNS VOID AS $$
12511 DECLARE
12512 --
12513 new_fund    INT;
12514 new_year    INT := old_year + 1;
12515 org_found   BOOL;
12516 xfer_amount NUMERIC;
12517 roll_fund   RECORD;
12518 deb         RECORD;
12519 detail      RECORD;
12520 --
12521 BEGIN
12522         --
12523         -- Sanity checks
12524         --
12525         IF old_year IS NULL THEN
12526                 RAISE EXCEPTION 'Input year argument is NULL';
12527     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12528         RAISE EXCEPTION 'Input year is out of range';
12529         END IF;
12530         --
12531         IF user_id IS NULL THEN
12532                 RAISE EXCEPTION 'Input user id argument is NULL';
12533         END IF;
12534         --
12535         IF org_unit_id IS NULL THEN
12536                 RAISE EXCEPTION 'Org unit id argument is NULL';
12537         ELSE
12538                 --
12539                 -- Validate the org unit
12540                 --
12541                 SELECT TRUE
12542                 INTO org_found
12543                 FROM actor.org_unit
12544                 WHERE id = org_unit_id;
12545                 --
12546                 IF org_found IS NULL THEN
12547                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12548                 END IF;
12549         END IF;
12550         --
12551         -- Loop over the propagable funds to identify the details
12552         -- from the old fund plus the id of the new one, if it exists.
12553         --
12554         FOR roll_fund in
12555         SELECT
12556             oldf.id AS old_fund,
12557             oldf.org,
12558             oldf.name,
12559             oldf.currency_type,
12560             oldf.code,
12561                 oldf.rollover,
12562             newf.id AS new_fund_id
12563         FROM
12564         acq.fund AS oldf
12565         LEFT JOIN acq.fund AS newf
12566                 ON ( oldf.code = newf.code )
12567         WHERE
12568                     oldf.org = org_unit_id
12569                 and oldf.year = old_year
12570                 and oldf.propagate
12571         and newf.year = new_year
12572         LOOP
12573                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12574                 --
12575                 IF roll_fund.new_fund_id IS NULL THEN
12576                         --
12577                         -- The old fund hasn't been propagated yet.  Propagate it now.
12578                         --
12579                         INSERT INTO acq.fund (
12580                                 org,
12581                                 name,
12582                                 year,
12583                                 currency_type,
12584                                 code,
12585                                 rollover,
12586                                 propagate,
12587                                 balance_warning_percent,
12588                                 balance_stop_percent
12589                         ) VALUES (
12590                                 roll_fund.org,
12591                                 roll_fund.name,
12592                                 new_year,
12593                                 roll_fund.currency_type,
12594                                 roll_fund.code,
12595                                 true,
12596                                 true,
12597                                 roll_fund.balance_warning_percent,
12598                                 roll_fund.balance_stop_percent
12599                         )
12600                         RETURNING id INTO new_fund;
12601                 ELSE
12602                         new_fund = roll_fund.new_fund_id;
12603                 END IF;
12604                 --
12605                 -- Determine the amount to transfer
12606                 --
12607                 SELECT amount
12608                 INTO xfer_amount
12609                 FROM acq.fund_spent_balance
12610                 WHERE fund = roll_fund.old_fund;
12611                 --
12612                 IF xfer_amount <> 0 THEN
12613                         IF roll_fund.rollover THEN
12614                                 --
12615                                 -- Transfer balance from old fund to new
12616                                 --
12617                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12618                                 --
12619                                 PERFORM acq.transfer_fund(
12620                                         roll_fund.old_fund,
12621                                         xfer_amount,
12622                                         new_fund,
12623                                         xfer_amount,
12624                                         user_id,
12625                                         'Rollover'
12626                                 );
12627                         ELSE
12628                                 --
12629                                 -- Transfer balance from old fund to the void
12630                                 --
12631                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12632                                 --
12633                                 PERFORM acq.transfer_fund(
12634                                         roll_fund.old_fund,
12635                                         xfer_amount,
12636                                         NULL,
12637                                         NULL,
12638                                         user_id,
12639                                         'Rollover'
12640                                 );
12641                         END IF;
12642                 END IF;
12643                 --
12644                 IF roll_fund.rollover THEN
12645                         --
12646                         -- Move any lineitems from the old fund to the new one
12647                         -- where the associated debit is an encumbrance.
12648                         --
12649                         -- Any other tables tying expenditure details to funds should
12650                         -- receive similar treatment.  At this writing there are none.
12651                         --
12652                         UPDATE acq.lineitem_detail
12653                         SET fund = new_fund
12654                         WHERE
12655                         fund = roll_fund.old_fund -- this condition may be redundant
12656                         AND fund_debit in
12657                         (
12658                                 SELECT id
12659                                 FROM acq.fund_debit
12660                                 WHERE
12661                                 fund = roll_fund.old_fund
12662                                 AND encumbrance
12663                         );
12664                         --
12665                         -- Move encumbrance debits from the old fund to the new fund
12666                         --
12667                         UPDATE acq.fund_debit
12668                         SET fund = new_fund
12669                         wHERE
12670                                 fund = roll_fund.old_fund
12671                                 AND encumbrance;
12672                 END IF;
12673                 --
12674                 -- Mark old fund as inactive, now that we've closed it
12675                 --
12676                 UPDATE acq.fund
12677                 SET active = FALSE
12678                 WHERE id = roll_fund.old_fund;
12679         END LOOP;
12680 END;
12681 $$ LANGUAGE plpgsql;
12682
12683 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12684         old_year INTEGER,
12685         user_id INTEGER,
12686         org_unit_id INTEGER
12687 ) RETURNS VOID AS $$
12688 DECLARE
12689 --
12690 new_fund    INT;
12691 new_year    INT := old_year + 1;
12692 org_found   BOOL;
12693 xfer_amount NUMERIC;
12694 roll_fund   RECORD;
12695 deb         RECORD;
12696 detail      RECORD;
12697 --
12698 BEGIN
12699         --
12700         -- Sanity checks
12701         --
12702         IF old_year IS NULL THEN
12703                 RAISE EXCEPTION 'Input year argument is NULL';
12704     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12705         RAISE EXCEPTION 'Input year is out of range';
12706         END IF;
12707         --
12708         IF user_id IS NULL THEN
12709                 RAISE EXCEPTION 'Input user id argument is NULL';
12710         END IF;
12711         --
12712         IF org_unit_id IS NULL THEN
12713                 RAISE EXCEPTION 'Org unit id argument is NULL';
12714         ELSE
12715                 --
12716                 -- Validate the org unit
12717                 --
12718                 SELECT TRUE
12719                 INTO org_found
12720                 FROM actor.org_unit
12721                 WHERE id = org_unit_id;
12722                 --
12723                 IF org_found IS NULL THEN
12724                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12725                 END IF;
12726         END IF;
12727         --
12728         -- Loop over the propagable funds to identify the details
12729         -- from the old fund plus the id of the new one, if it exists.
12730         --
12731         FOR roll_fund in
12732         SELECT
12733             oldf.id AS old_fund,
12734             oldf.org,
12735             oldf.name,
12736             oldf.currency_type,
12737             oldf.code,
12738                 oldf.rollover,
12739             newf.id AS new_fund_id
12740         FROM
12741         acq.fund AS oldf
12742         LEFT JOIN acq.fund AS newf
12743                 ON ( oldf.code = newf.code )
12744         WHERE
12745                     oldf.year = old_year
12746                 AND oldf.propagate
12747         AND newf.year = new_year
12748                 AND oldf.org in (
12749                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12750                 )
12751         LOOP
12752                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12753                 --
12754                 IF roll_fund.new_fund_id IS NULL THEN
12755                         --
12756                         -- The old fund hasn't been propagated yet.  Propagate it now.
12757                         --
12758                         INSERT INTO acq.fund (
12759                                 org,
12760                                 name,
12761                                 year,
12762                                 currency_type,
12763                                 code,
12764                                 rollover,
12765                                 propagate,
12766                                 balance_warning_percent,
12767                                 balance_stop_percent
12768                         ) VALUES (
12769                                 roll_fund.org,
12770                                 roll_fund.name,
12771                                 new_year,
12772                                 roll_fund.currency_type,
12773                                 roll_fund.code,
12774                                 true,
12775                                 true,
12776                                 roll_fund.balance_warning_percent,
12777                                 roll_fund.balance_stop_percent
12778                         )
12779                         RETURNING id INTO new_fund;
12780                 ELSE
12781                         new_fund = roll_fund.new_fund_id;
12782                 END IF;
12783                 --
12784                 -- Determine the amount to transfer
12785                 --
12786                 SELECT amount
12787                 INTO xfer_amount
12788                 FROM acq.fund_spent_balance
12789                 WHERE fund = roll_fund.old_fund;
12790                 --
12791                 IF xfer_amount <> 0 THEN
12792                         IF roll_fund.rollover THEN
12793                                 --
12794                                 -- Transfer balance from old fund to new
12795                                 --
12796                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12797                                 --
12798                                 PERFORM acq.transfer_fund(
12799                                         roll_fund.old_fund,
12800                                         xfer_amount,
12801                                         new_fund,
12802                                         xfer_amount,
12803                                         user_id,
12804                                         'Rollover'
12805                                 );
12806                         ELSE
12807                                 --
12808                                 -- Transfer balance from old fund to the void
12809                                 --
12810                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12811                                 --
12812                                 PERFORM acq.transfer_fund(
12813                                         roll_fund.old_fund,
12814                                         xfer_amount,
12815                                         NULL,
12816                                         NULL,
12817                                         user_id,
12818                                         'Rollover'
12819                                 );
12820                         END IF;
12821                 END IF;
12822                 --
12823                 IF roll_fund.rollover THEN
12824                         --
12825                         -- Move any lineitems from the old fund to the new one
12826                         -- where the associated debit is an encumbrance.
12827                         --
12828                         -- Any other tables tying expenditure details to funds should
12829                         -- receive similar treatment.  At this writing there are none.
12830                         --
12831                         UPDATE acq.lineitem_detail
12832                         SET fund = new_fund
12833                         WHERE
12834                         fund = roll_fund.old_fund -- this condition may be redundant
12835                         AND fund_debit in
12836                         (
12837                                 SELECT id
12838                                 FROM acq.fund_debit
12839                                 WHERE
12840                                 fund = roll_fund.old_fund
12841                                 AND encumbrance
12842                         );
12843                         --
12844                         -- Move encumbrance debits from the old fund to the new fund
12845                         --
12846                         UPDATE acq.fund_debit
12847                         SET fund = new_fund
12848                         wHERE
12849                                 fund = roll_fund.old_fund
12850                                 AND encumbrance;
12851                 END IF;
12852                 --
12853                 -- Mark old fund as inactive, now that we've closed it
12854                 --
12855                 UPDATE acq.fund
12856                 SET active = FALSE
12857                 WHERE id = roll_fund.old_fund;
12858         END LOOP;
12859 END;
12860 $$ LANGUAGE plpgsql;
12861
12862 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
12863     SELECT regexp_replace($1, ',', '', 'g');
12864 $$ LANGUAGE SQL STRICT IMMUTABLE;
12865
12866 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
12867     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
12868 $$ LANGUAGE SQL STRICT IMMUTABLE;
12869
12870 CREATE TABLE acq.distribution_formula_application (
12871     id BIGSERIAL PRIMARY KEY,
12872     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
12873     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
12874     formula INT NOT NULL
12875         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
12876     lineitem INT NOT NULL
12877         REFERENCES acq.lineitem( id )
12878                 ON DELETE CASCADE
12879                 DEFERRABLE INITIALLY DEFERRED
12880 );
12881
12882 CREATE INDEX acqdfa_df_idx
12883     ON acq.distribution_formula_application(formula);
12884 CREATE INDEX acqdfa_li_idx
12885     ON acq.distribution_formula_application(lineitem);
12886 CREATE INDEX acqdfa_creator_idx
12887     ON acq.distribution_formula_application(creator);
12888
12889 CREATE TABLE acq.user_request_type (
12890     id      SERIAL  PRIMARY KEY,
12891     label   TEXT    NOT NULL UNIQUE -- i18n-ize
12892 );
12893
12894 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
12895 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
12896 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
12897 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
12898 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
12899
12900 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
12901
12902 CREATE TABLE acq.cancel_reason (
12903         id            SERIAL            PRIMARY KEY,
12904         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
12905                                         DEFERRABLE INITIALLY DEFERRED,
12906         label         TEXT              NOT NULL,
12907         description   TEXT              NOT NULL,
12908         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
12909         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
12910 );
12911
12912 -- Reserve ids 1-999 for stock reasons
12913 -- Reserve ids 1000-1999 for EDI reasons
12914 -- 2000+ are available for staff to create
12915
12916 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
12917
12918 CREATE TABLE acq.user_request (
12919     id                  SERIAL  PRIMARY KEY,
12920     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
12921     hold                BOOL    NOT NULL DEFAULT TRUE,
12922
12923     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
12924     holdable_formats    TEXT,           -- nullable, for use in hold creation
12925     phone_notify        TEXT,
12926     email_notify        BOOL    NOT NULL DEFAULT TRUE,
12927     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
12928     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
12929     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
12930     need_before         TIMESTAMPTZ,    -- don't create holds after this
12931     max_fee             TEXT,
12932
12933     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
12934     isxn                TEXT,
12935     title               TEXT,
12936     volume              TEXT,
12937     author              TEXT,
12938     article_title       TEXT,
12939     article_pages       TEXT,
12940     publisher           TEXT,
12941     location            TEXT,
12942     pubdate             TEXT,
12943     mentioned           TEXT,
12944     other_info          TEXT,
12945         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
12946                                              DEFERRABLE INITIALLY DEFERRED
12947 );
12948
12949 CREATE TABLE acq.lineitem_alert_text (
12950         id               SERIAL         PRIMARY KEY,
12951         code             TEXT           NOT NULL,
12952         description      TEXT,
12953         owning_lib       INT            NOT NULL
12954                                         REFERENCES actor.org_unit(id)
12955                                         DEFERRABLE INITIALLY DEFERRED,
12956         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
12957 );
12958
12959 ALTER TABLE acq.lineitem_note
12960         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
12961                                          DEFERRABLE INITIALLY DEFERRED;
12962
12963 -- add ON DELETE CASCADE clause
12964
12965 ALTER TABLE acq.lineitem_note
12966         DROP CONSTRAINT lineitem_note_lineitem_fkey;
12967
12968 ALTER TABLE acq.lineitem_note
12969         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
12970                 ON DELETE CASCADE
12971                 DEFERRABLE INITIALLY DEFERRED;
12972
12973 ALTER TABLE acq.lineitem_note
12974         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
12975
12976 CREATE TABLE acq.invoice_method (
12977     code    TEXT    PRIMARY KEY,
12978     name    TEXT    NOT NULL -- i18n-ize
12979 );
12980 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
12981 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
12982
12983 CREATE TABLE acq.invoice_payment_method (
12984         code      TEXT     PRIMARY KEY,
12985         name      TEXT     NOT NULL
12986 );
12987
12988 CREATE TABLE acq.invoice (
12989     id             SERIAL      PRIMARY KEY,
12990     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
12991     provider       INT         NOT NULL REFERENCES acq.provider (id),
12992     shipper        INT         NOT NULL REFERENCES acq.provider (id),
12993     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
12994     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
12995     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
12996     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
12997         payment_auth   TEXT,
12998         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
12999                                    DEFERRABLE INITIALLY DEFERRED,
13000         note           TEXT,
13001     complete       BOOL        NOT NULL DEFAULT FALSE,
13002     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
13003 );
13004
13005 CREATE TABLE acq.invoice_entry (
13006     id              SERIAL      PRIMARY KEY,
13007     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
13008     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13009     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
13010     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
13011     phys_item_count INT, -- and how many did staff count
13012     note            TEXT,
13013     billed_per_item BOOL,
13014     cost_billed     NUMERIC(8,2),
13015     actual_cost     NUMERIC(8,2),
13016         amount_paid     NUMERIC (8,2)
13017 );
13018
13019 CREATE TABLE acq.invoice_item_type (
13020     code    TEXT    PRIMARY KEY,
13021     name    TEXT    NOT NULL, -- i18n-ize
13022         prorate BOOL    NOT NULL DEFAULT FALSE
13023 );
13024
13025 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
13026 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
13027 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
13028 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
13029 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
13030 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name'));
13031
13032 CREATE TABLE acq.po_item (
13033         id              SERIAL      PRIMARY KEY,
13034         purchase_order  INT         REFERENCES acq.purchase_order (id)
13035                                     ON UPDATE CASCADE ON DELETE SET NULL
13036                                     DEFERRABLE INITIALLY DEFERRED,
13037         fund_debit      INT         REFERENCES acq.fund_debit (id)
13038                                     DEFERRABLE INITIALLY DEFERRED,
13039         inv_item_type   TEXT        NOT NULL
13040                                     REFERENCES acq.invoice_item_type (code)
13041                                     DEFERRABLE INITIALLY DEFERRED,
13042         title           TEXT,
13043         author          TEXT,
13044         note            TEXT,
13045         estimated_cost  NUMERIC(8,2),
13046         fund            INT         REFERENCES acq.fund (id)
13047                                     DEFERRABLE INITIALLY DEFERRED,
13048         target          BIGINT
13049 );
13050
13051 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
13052     id              SERIAL      PRIMARY KEY,
13053     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
13054     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
13055     fund_debit      INT         REFERENCES acq.fund_debit (id),
13056     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
13057     title           TEXT,
13058     author          TEXT,
13059     note            TEXT,
13060     cost_billed     NUMERIC(8,2),
13061     actual_cost     NUMERIC(8,2),
13062     fund            INT         REFERENCES acq.fund (id)
13063                                 DEFERRABLE INITIALLY DEFERRED,
13064     amount_paid     NUMERIC (8,2),
13065     po_item         INT         REFERENCES acq.po_item (id)
13066                                 DEFERRABLE INITIALLY DEFERRED,
13067     target          BIGINT
13068 );
13069
13070 CREATE TABLE acq.edi_message (
13071     id               SERIAL          PRIMARY KEY,
13072     account          INTEGER         REFERENCES acq.edi_account(id)
13073                                      DEFERRABLE INITIALLY DEFERRED,
13074     remote_file      TEXT,
13075     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
13076     translate_time   TIMESTAMPTZ,
13077     process_time     TIMESTAMPTZ,
13078     error_time       TIMESTAMPTZ,
13079     status           TEXT            NOT NULL DEFAULT 'new'
13080                                      CONSTRAINT status_value CHECK
13081                                      ( status IN (
13082                                         'new',          -- needs to be translated
13083                                         'translated',   -- needs to be processed
13084                                         'trans_error',  -- error in translation step
13085                                         'processed',    -- needs to have remote_file deleted
13086                                         'proc_error',   -- error in processing step
13087                                         'delete_error', -- error in deletion
13088                                         'retry',        -- need to retry
13089                                         'complete'      -- done
13090                                      )),
13091     edi              TEXT,
13092     jedi             TEXT,
13093     error            TEXT,
13094     purchase_order   INT             REFERENCES acq.purchase_order
13095                                      DEFERRABLE INITIALLY DEFERRED,
13096     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
13097                                      CHECK ( message_type IN (
13098                                         'ORDERS',
13099                                         'ORDRSP',
13100                                         'INVOIC',
13101                                         'OSTENQ',
13102                                         'OSTRPT'
13103                                      ))
13104 );
13105
13106 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
13107
13108 ALTER TABLE acq.provider_address
13109         ADD COLUMN fax_phone TEXT;
13110
13111 ALTER TABLE acq.provider_contact_address
13112         ADD COLUMN fax_phone TEXT;
13113
13114 CREATE TABLE acq.provider_note (
13115     id      SERIAL              PRIMARY KEY,
13116     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
13117     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13118     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
13119     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13120     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
13121     value       TEXT            NOT NULL
13122 );
13123 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
13124 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
13125 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
13126
13127 -- For each fund: the total allocation from all sources, in the
13128 -- currency of the fund (or 0 if there are no allocations)
13129
13130 CREATE VIEW acq.all_fund_allocation_total AS
13131 SELECT
13132     f.id AS fund,
13133     COALESCE( SUM( a.amount * acq.exchange_ratio(
13134         s.currency_type, f.currency_type))::numeric(100,2), 0 )
13135     AS amount
13136 FROM
13137     acq.fund f
13138         LEFT JOIN acq.fund_allocation a
13139             ON a.fund = f.id
13140         LEFT JOIN acq.funding_source s
13141             ON a.funding_source = s.id
13142 GROUP BY
13143     f.id;
13144
13145 -- For every fund: the total encumbrances (or 0 if none),
13146 -- in the currency of the fund.
13147
13148 CREATE VIEW acq.all_fund_encumbrance_total AS
13149 SELECT
13150         f.id AS fund,
13151         COALESCE( encumb.amount, 0 ) AS amount
13152 FROM
13153         acq.fund AS f
13154                 LEFT JOIN (
13155                         SELECT
13156                                 fund,
13157                                 sum( amount ) AS amount
13158                         FROM
13159                                 acq.fund_debit
13160                         WHERE
13161                                 encumbrance
13162                         GROUP BY fund
13163                 ) AS encumb
13164                         ON f.id = encumb.fund;
13165
13166 -- For every fund: the total spent (or 0 if none),
13167 -- in the currency of the fund.
13168
13169 CREATE VIEW acq.all_fund_spent_total AS
13170 SELECT
13171     f.id AS fund,
13172     COALESCE( spent.amount, 0 ) AS amount
13173 FROM
13174     acq.fund AS f
13175         LEFT JOIN (
13176             SELECT
13177                 fund,
13178                 sum( amount ) AS amount
13179             FROM
13180                 acq.fund_debit
13181             WHERE
13182                 NOT encumbrance
13183             GROUP BY fund
13184         ) AS spent
13185             ON f.id = spent.fund;
13186
13187 -- For each fund: the amount not yet spent, in the currency
13188 -- of the fund.  May include encumbrances.
13189
13190 CREATE VIEW acq.all_fund_spent_balance AS
13191 SELECT
13192         c.fund,
13193         c.amount - d.amount AS amount
13194 FROM acq.all_fund_allocation_total c
13195     LEFT JOIN acq.all_fund_spent_total d USING (fund);
13196
13197 -- For each fund: the amount neither spent nor encumbered,
13198 -- in the currency of the fund
13199
13200 CREATE VIEW acq.all_fund_combined_balance AS
13201 SELECT
13202      a.fund,
13203      a.amount - COALESCE( c.amount, 0 ) AS amount
13204 FROM
13205      acq.all_fund_allocation_total a
13206         LEFT OUTER JOIN (
13207             SELECT
13208                 fund,
13209                 SUM( amount ) AS amount
13210             FROM
13211                 acq.fund_debit
13212             GROUP BY
13213                 fund
13214         ) AS c USING ( fund );
13215
13216 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 $$
13217 DECLARE
13218         suffix TEXT;
13219         bucket_row RECORD;
13220         picklist_row RECORD;
13221         queue_row RECORD;
13222         folder_row RECORD;
13223 BEGIN
13224
13225     -- do some initial cleanup 
13226     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
13227     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
13228     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
13229
13230     -- actor.*
13231     IF del_cards THEN
13232         DELETE FROM actor.card where usr = src_usr;
13233     ELSE
13234         IF deactivate_cards THEN
13235             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
13236         END IF;
13237         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
13238     END IF;
13239
13240
13241     IF del_addrs THEN
13242         DELETE FROM actor.usr_address WHERE usr = src_usr;
13243     ELSE
13244         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
13245     END IF;
13246
13247     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
13248     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
13249     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
13250     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
13251     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
13252
13253     -- permission.*
13254     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
13255     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
13256     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
13257     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
13258
13259
13260     -- container.*
13261         
13262         -- For each *_bucket table: transfer every bucket belonging to src_usr
13263         -- into the custody of dest_usr.
13264         --
13265         -- In order to avoid colliding with an existing bucket owned by
13266         -- the destination user, append the source user's id (in parenthesese)
13267         -- to the name.  If you still get a collision, add successive
13268         -- spaces to the name and keep trying until you succeed.
13269         --
13270         FOR bucket_row in
13271                 SELECT id, name
13272                 FROM   container.biblio_record_entry_bucket
13273                 WHERE  owner = src_usr
13274         LOOP
13275                 suffix := ' (' || src_usr || ')';
13276                 LOOP
13277                         BEGIN
13278                                 UPDATE  container.biblio_record_entry_bucket
13279                                 SET     owner = dest_usr, name = name || suffix
13280                                 WHERE   id = bucket_row.id;
13281                         EXCEPTION WHEN unique_violation THEN
13282                                 suffix := suffix || ' ';
13283                                 CONTINUE;
13284                         END;
13285                         EXIT;
13286                 END LOOP;
13287         END LOOP;
13288
13289         FOR bucket_row in
13290                 SELECT id, name
13291                 FROM   container.call_number_bucket
13292                 WHERE  owner = src_usr
13293         LOOP
13294                 suffix := ' (' || src_usr || ')';
13295                 LOOP
13296                         BEGIN
13297                                 UPDATE  container.call_number_bucket
13298                                 SET     owner = dest_usr, name = name || suffix
13299                                 WHERE   id = bucket_row.id;
13300                         EXCEPTION WHEN unique_violation THEN
13301                                 suffix := suffix || ' ';
13302                                 CONTINUE;
13303                         END;
13304                         EXIT;
13305                 END LOOP;
13306         END LOOP;
13307
13308         FOR bucket_row in
13309                 SELECT id, name
13310                 FROM   container.copy_bucket
13311                 WHERE  owner = src_usr
13312         LOOP
13313                 suffix := ' (' || src_usr || ')';
13314                 LOOP
13315                         BEGIN
13316                                 UPDATE  container.copy_bucket
13317                                 SET     owner = dest_usr, name = name || suffix
13318                                 WHERE   id = bucket_row.id;
13319                         EXCEPTION WHEN unique_violation THEN
13320                                 suffix := suffix || ' ';
13321                                 CONTINUE;
13322                         END;
13323                         EXIT;
13324                 END LOOP;
13325         END LOOP;
13326
13327         FOR bucket_row in
13328                 SELECT id, name
13329                 FROM   container.user_bucket
13330                 WHERE  owner = src_usr
13331         LOOP
13332                 suffix := ' (' || src_usr || ')';
13333                 LOOP
13334                         BEGIN
13335                                 UPDATE  container.user_bucket
13336                                 SET     owner = dest_usr, name = name || suffix
13337                                 WHERE   id = bucket_row.id;
13338                         EXCEPTION WHEN unique_violation THEN
13339                                 suffix := suffix || ' ';
13340                                 CONTINUE;
13341                         END;
13342                         EXIT;
13343                 END LOOP;
13344         END LOOP;
13345
13346         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
13347
13348     -- vandelay.*
13349         -- transfer queues the same way we transfer buckets (see above)
13350         FOR queue_row in
13351                 SELECT id, name
13352                 FROM   vandelay.queue
13353                 WHERE  owner = src_usr
13354         LOOP
13355                 suffix := ' (' || src_usr || ')';
13356                 LOOP
13357                         BEGIN
13358                                 UPDATE  vandelay.queue
13359                                 SET     owner = dest_usr, name = name || suffix
13360                                 WHERE   id = queue_row.id;
13361                         EXCEPTION WHEN unique_violation THEN
13362                                 suffix := suffix || ' ';
13363                                 CONTINUE;
13364                         END;
13365                         EXIT;
13366                 END LOOP;
13367         END LOOP;
13368
13369     -- money.*
13370     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13371     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13372     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13373     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13374     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13375
13376     -- action.*
13377     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13378     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13379     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13380
13381     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13382     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13383     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13384     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13385
13386     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13387     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13388     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13389     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13390     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13391
13392     -- acq.*
13393     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13394         UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13395
13396         -- transfer picklists the same way we transfer buckets (see above)
13397         FOR picklist_row in
13398                 SELECT id, name
13399                 FROM   acq.picklist
13400                 WHERE  owner = src_usr
13401         LOOP
13402                 suffix := ' (' || src_usr || ')';
13403                 LOOP
13404                         BEGIN
13405                                 UPDATE  acq.picklist
13406                                 SET     owner = dest_usr, name = name || suffix
13407                                 WHERE   id = picklist_row.id;
13408                         EXCEPTION WHEN unique_violation THEN
13409                                 suffix := suffix || ' ';
13410                                 CONTINUE;
13411                         END;
13412                         EXIT;
13413                 END LOOP;
13414         END LOOP;
13415
13416     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13417     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13418     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13419     UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13420     UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13421     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13422     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13423     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13424
13425     -- asset.*
13426     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13427     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13428     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13429     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13430     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13431     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13432
13433     -- serial.*
13434     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13435     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13436
13437     -- reporter.*
13438     -- It's not uncommon to define the reporter schema in a replica 
13439     -- DB only, so don't assume these tables exist in the write DB.
13440     BEGIN
13441         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13442     EXCEPTION WHEN undefined_table THEN
13443         -- do nothing
13444     END;
13445     BEGIN
13446         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13447     EXCEPTION WHEN undefined_table THEN
13448         -- do nothing
13449     END;
13450     BEGIN
13451         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13452     EXCEPTION WHEN undefined_table THEN
13453         -- do nothing
13454     END;
13455     BEGIN
13456                 -- transfer folders the same way we transfer buckets (see above)
13457                 FOR folder_row in
13458                         SELECT id, name
13459                         FROM   reporter.template_folder
13460                         WHERE  owner = src_usr
13461                 LOOP
13462                         suffix := ' (' || src_usr || ')';
13463                         LOOP
13464                                 BEGIN
13465                                         UPDATE  reporter.template_folder
13466                                         SET     owner = dest_usr, name = name || suffix
13467                                         WHERE   id = folder_row.id;
13468                                 EXCEPTION WHEN unique_violation THEN
13469                                         suffix := suffix || ' ';
13470                                         CONTINUE;
13471                                 END;
13472                                 EXIT;
13473                         END LOOP;
13474                 END LOOP;
13475     EXCEPTION WHEN undefined_table THEN
13476         -- do nothing
13477     END;
13478     BEGIN
13479                 -- transfer folders the same way we transfer buckets (see above)
13480                 FOR folder_row in
13481                         SELECT id, name
13482                         FROM   reporter.report_folder
13483                         WHERE  owner = src_usr
13484                 LOOP
13485                         suffix := ' (' || src_usr || ')';
13486                         LOOP
13487                                 BEGIN
13488                                         UPDATE  reporter.report_folder
13489                                         SET     owner = dest_usr, name = name || suffix
13490                                         WHERE   id = folder_row.id;
13491                                 EXCEPTION WHEN unique_violation THEN
13492                                         suffix := suffix || ' ';
13493                                         CONTINUE;
13494                                 END;
13495                                 EXIT;
13496                         END LOOP;
13497                 END LOOP;
13498     EXCEPTION WHEN undefined_table THEN
13499         -- do nothing
13500     END;
13501     BEGIN
13502                 -- transfer folders the same way we transfer buckets (see above)
13503                 FOR folder_row in
13504                         SELECT id, name
13505                         FROM   reporter.output_folder
13506                         WHERE  owner = src_usr
13507                 LOOP
13508                         suffix := ' (' || src_usr || ')';
13509                         LOOP
13510                                 BEGIN
13511                                         UPDATE  reporter.output_folder
13512                                         SET     owner = dest_usr, name = name || suffix
13513                                         WHERE   id = folder_row.id;
13514                                 EXCEPTION WHEN unique_violation THEN
13515                                         suffix := suffix || ' ';
13516                                         CONTINUE;
13517                                 END;
13518                                 EXIT;
13519                         END LOOP;
13520                 END LOOP;
13521     EXCEPTION WHEN undefined_table THEN
13522         -- do nothing
13523     END;
13524
13525     -- Finally, delete the source user
13526     DELETE FROM actor.usr WHERE id = src_usr;
13527
13528 END;
13529 $$ LANGUAGE plpgsql;
13530
13531 -- The "add" trigger functions should protect against existing NULLed values, just in case
13532 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13533 BEGIN
13534     IF NOT NEW.voided THEN
13535         UPDATE  money.materialized_billable_xact_summary
13536           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13537             last_billing_ts = NEW.billing_ts,
13538             last_billing_note = NEW.note,
13539             last_billing_type = NEW.billing_type,
13540             balance_owed = balance_owed + NEW.amount
13541           WHERE id = NEW.xact;
13542     END IF;
13543
13544     RETURN NEW;
13545 END;
13546 $$ LANGUAGE PLPGSQL;
13547
13548 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13549 BEGIN
13550     IF NOT NEW.voided THEN
13551         UPDATE  money.materialized_billable_xact_summary
13552           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13553             last_payment_ts = NEW.payment_ts,
13554             last_payment_note = NEW.note,
13555             last_payment_type = TG_ARGV[0],
13556             balance_owed = balance_owed - NEW.amount
13557           WHERE id = NEW.xact;
13558     END IF;
13559
13560     RETURN NEW;
13561 END;
13562 $$ LANGUAGE PLPGSQL;
13563
13564 -- Refresh the mat view with the corrected underlying view
13565 TRUNCATE money.materialized_billable_xact_summary;
13566 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13567
13568 -- Now redefine the view as a window onto the materialized view
13569 CREATE OR REPLACE VIEW money.billable_xact_summary AS
13570     SELECT * FROM money.materialized_billable_xact_summary;
13571
13572 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13573     user_id    IN INTEGER,
13574     perm_code  IN TEXT
13575 )
13576 RETURNS SETOF INTEGER AS $$
13577 --
13578 -- Return a set of all the org units for which a given user has a given
13579 -- permission, granted directly (not through inheritance from a parent
13580 -- org unit).
13581 --
13582 -- The permissions apply to a minimum depth of the org unit hierarchy,
13583 -- for the org unit(s) to which the user is assigned.  (They also apply
13584 -- to the subordinates of those org units, but we don't report the
13585 -- subordinates here.)
13586 --
13587 -- For purposes of this function, the permission.usr_work_ou_map table
13588 -- defines which users belong to which org units.  I.e. we ignore the
13589 -- home_ou column of actor.usr.
13590 --
13591 -- The result set may contain duplicates, which should be eliminated
13592 -- by a DISTINCT clause.
13593 --
13594 DECLARE
13595     b_super       BOOLEAN;
13596     n_perm        INTEGER;
13597     n_min_depth   INTEGER;
13598     n_work_ou     INTEGER;
13599     n_curr_ou     INTEGER;
13600     n_depth       INTEGER;
13601     n_curr_depth  INTEGER;
13602 BEGIN
13603     --
13604     -- Check for superuser
13605     --
13606     SELECT INTO b_super
13607         super_user
13608     FROM
13609         actor.usr
13610     WHERE
13611         id = user_id;
13612     --
13613     IF NOT FOUND THEN
13614         return;             -- No user?  No permissions.
13615     ELSIF b_super THEN
13616         --
13617         -- Super user has all permissions everywhere
13618         --
13619         FOR n_work_ou IN
13620             SELECT
13621                 id
13622             FROM
13623                 actor.org_unit
13624             WHERE
13625                 parent_ou IS NULL
13626         LOOP
13627             RETURN NEXT n_work_ou;
13628         END LOOP;
13629         RETURN;
13630     END IF;
13631     --
13632     -- Translate the permission name
13633     -- to a numeric permission id
13634     --
13635     SELECT INTO n_perm
13636         id
13637     FROM
13638         permission.perm_list
13639     WHERE
13640         code = perm_code;
13641     --
13642     IF NOT FOUND THEN
13643         RETURN;               -- No such permission
13644     END IF;
13645     --
13646     -- Find the highest-level org unit (i.e. the minimum depth)
13647     -- to which the permission is applied for this user
13648     --
13649     -- This query is modified from the one in permission.usr_perms().
13650     --
13651     SELECT INTO n_min_depth
13652         min( depth )
13653     FROM    (
13654         SELECT depth
13655           FROM permission.usr_perm_map upm
13656          WHERE upm.usr = user_id
13657            AND (upm.perm = n_perm OR upm.perm = -1)
13658                     UNION
13659         SELECT  gpm.depth
13660           FROM  permission.grp_perm_map gpm
13661           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13662             AND gpm.grp IN (
13663                SELECT   (permission.grp_ancestors(
13664                     (SELECT profile FROM actor.usr WHERE id = user_id)
13665                 )).id
13666             )
13667                     UNION
13668         SELECT  p.depth
13669           FROM  permission.grp_perm_map p
13670           WHERE (p.perm = n_perm OR p.perm = -1)
13671             AND p.grp IN (
13672                 SELECT (permission.grp_ancestors(m.grp)).id
13673                 FROM   permission.usr_grp_map m
13674                 WHERE  m.usr = user_id
13675             )
13676     ) AS x;
13677     --
13678     IF NOT FOUND THEN
13679         RETURN;                -- No such permission for this user
13680     END IF;
13681     --
13682     -- Identify the org units to which the user is assigned.  Note that
13683     -- we pay no attention to the home_ou column in actor.usr.
13684     --
13685     FOR n_work_ou IN
13686         SELECT
13687             work_ou
13688         FROM
13689             permission.usr_work_ou_map
13690         WHERE
13691             usr = user_id
13692     LOOP            -- For each org unit to which the user is assigned
13693         --
13694         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13695         -- We take it on faith that this depth agrees with the actual hierarchy
13696         -- defined in actor.org_unit.
13697         --
13698         SELECT INTO n_depth
13699             type.depth
13700         FROM
13701             actor.org_unit_type type
13702                 INNER JOIN actor.org_unit ou
13703                     ON ( ou.ou_type = type.id )
13704         WHERE
13705             ou.id = n_work_ou;
13706         --
13707         IF NOT FOUND THEN
13708             CONTINUE;        -- Maybe raise exception?
13709         END IF;
13710         --
13711         -- Compare the depth of the work org unit to the
13712         -- minimum depth, and branch accordingly
13713         --
13714         IF n_depth = n_min_depth THEN
13715             --
13716             -- The org unit is at the right depth, so return it.
13717             --
13718             RETURN NEXT n_work_ou;
13719         ELSIF n_depth > n_min_depth THEN
13720             --
13721             -- Traverse the org unit tree toward the root,
13722             -- until you reach the minimum depth determined above
13723             --
13724             n_curr_depth := n_depth;
13725             n_curr_ou := n_work_ou;
13726             WHILE n_curr_depth > n_min_depth LOOP
13727                 SELECT INTO n_curr_ou
13728                     parent_ou
13729                 FROM
13730                     actor.org_unit
13731                 WHERE
13732                     id = n_curr_ou;
13733                 --
13734                 IF FOUND THEN
13735                     n_curr_depth := n_curr_depth - 1;
13736                 ELSE
13737                     --
13738                     -- This can happen only if the hierarchy defined in
13739                     -- actor.org_unit is corrupted, or out of sync with
13740                     -- the depths defined in actor.org_unit_type.
13741                     -- Maybe we should raise an exception here, instead
13742                     -- of silently ignoring the problem.
13743                     --
13744                     n_curr_ou = NULL;
13745                     EXIT;
13746                 END IF;
13747             END LOOP;
13748             --
13749             IF n_curr_ou IS NOT NULL THEN
13750                 RETURN NEXT n_curr_ou;
13751             END IF;
13752         ELSE
13753             --
13754             -- The permission applies only at a depth greater than the work org unit.
13755             -- Use connectby() to find all dependent org units at the specified depth.
13756             --
13757             FOR n_curr_ou IN
13758                 SELECT ou::INTEGER
13759                 FROM connectby(
13760                         'actor.org_unit',         -- table name
13761                         'id',                     -- key column
13762                         'parent_ou',              -- recursive foreign key
13763                         n_work_ou::TEXT,          -- id of starting point
13764                         (n_min_depth - n_depth)   -- max depth to search, relative
13765                     )                             --   to starting point
13766                     AS t(
13767                         ou text,            -- dependent org unit
13768                         parent_ou text,     -- (ignore)
13769                         level int           -- depth relative to starting point
13770                     )
13771                 WHERE
13772                     level = n_min_depth - n_depth
13773             LOOP
13774                 RETURN NEXT n_curr_ou;
13775             END LOOP;
13776         END IF;
13777         --
13778     END LOOP;
13779     --
13780     RETURN;
13781     --
13782 END;
13783 $$ LANGUAGE 'plpgsql';
13784
13785 ALTER TABLE acq.purchase_order
13786         ADD COLUMN cancel_reason INT
13787                 REFERENCES acq.cancel_reason( id )
13788             DEFERRABLE INITIALLY DEFERRED,
13789         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13790
13791 -- Build the history table and lifecycle view
13792 -- for acq.purchase_order
13793
13794 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
13795
13796 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
13797
13798 ALTER TABLE acq.lineitem
13799         ADD COLUMN cancel_reason INT
13800                 REFERENCES acq.cancel_reason( id )
13801             DEFERRABLE INITIALLY DEFERRED,
13802         ADD COLUMN estimated_unit_price NUMERIC,
13803         ADD COLUMN claim_policy INT
13804                 REFERENCES acq.claim_policy
13805                 DEFERRABLE INITIALLY DEFERRED,
13806         ALTER COLUMN eg_bib_id SET DATA TYPE bigint;
13807
13808 -- Build the history table and lifecycle view
13809 -- for acq.lineitem
13810
13811 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
13812 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
13813
13814 ALTER TABLE acq.lineitem_detail
13815         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13816                                             DEFERRABLE INITIALLY DEFERRED;
13817
13818 ALTER TABLE acq.lineitem_detail
13819         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13820
13821 ALTER TABLE acq.lineitem_detail
13822         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13823                 ON DELETE CASCADE
13824                 DEFERRABLE INITIALLY DEFERRED;
13825
13826 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
13827
13828 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13829         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
13830
13831 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13832         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
13833
13834 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13835
13836     use MARC::Record;
13837     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13838     use strict;
13839
13840     my $target_xml = shift;
13841     my $source_xml = shift;
13842     my $field_spec = shift;
13843
13844     my $target_r = MARC::Record->new_from_xml( $target_xml );
13845     my $source_r = MARC::Record->new_from_xml( $source_xml );
13846
13847     return $target_xml unless ($target_r && $source_r);
13848
13849     my @field_list = split(',', $field_spec);
13850
13851     my %fields;
13852     for my $f (@field_list) {
13853         $f =~ s/^\s*//; $f =~ s/\s*$//;
13854         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13855             my $field = $1;
13856             $field =~ s/\s+//;
13857             my $sf = $2;
13858             $sf =~ s/\s+//;
13859             my $match = $3;
13860             $match =~ s/^\s*//; $match =~ s/\s*$//;
13861             $fields{$field} = { sf => [ split('', $sf) ] };
13862             if ($match) {
13863                 my ($msf,$mre) = split('~', $match);
13864                 if (length($msf) > 0 and length($mre) > 0) {
13865                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13866                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13867                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13868                 }
13869             }
13870         }
13871     }
13872
13873     for my $f ( keys %fields) {
13874         if ( @{$fields{$f}{sf}} ) {
13875             for my $from_field ($source_r->field( $f )) {
13876                 for my $to_field ($target_r->field( $f )) {
13877                     if (exists($fields{$f}{match})) {
13878                         next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13879                     }
13880                     my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
13881                     $to_field->add_subfields( @new_sf );
13882                 }
13883             }
13884         } else {
13885             my @new_fields = map { $_->clone } $source_r->field( $f );
13886             $target_r->insert_fields_ordered( @new_fields );
13887         }
13888     }
13889
13890     $target_xml = $target_r->as_xml_record;
13891     $target_xml =~ s/^<\?.+?\?>$//mo;
13892     $target_xml =~ s/\n//sgo;
13893     $target_xml =~ s/>\s+</></sgo;
13894
13895     return $target_xml;
13896
13897 $_$ LANGUAGE PLPERLU;
13898
13899 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13900
13901     use MARC::Record;
13902     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13903     use strict;
13904
13905     my $xml = shift;
13906     my $r = MARC::Record->new_from_xml( $xml );
13907
13908     return $xml unless ($r);
13909
13910     my $field_spec = shift;
13911     my @field_list = split(',', $field_spec);
13912
13913     my %fields;
13914     for my $f (@field_list) {
13915         $f =~ s/^\s*//; $f =~ s/\s*$//;
13916         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13917             my $field = $1;
13918             $field =~ s/\s+//;
13919             my $sf = $2;
13920             $sf =~ s/\s+//;
13921             my $match = $3;
13922             $match =~ s/^\s*//; $match =~ s/\s*$//;
13923             $fields{$field} = { sf => [ split('', $sf) ] };
13924             if ($match) {
13925                 my ($msf,$mre) = split('~', $match);
13926                 if (length($msf) > 0 and length($mre) > 0) {
13927                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13928                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13929                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13930                 }
13931             }
13932         }
13933     }
13934
13935     for my $f ( keys %fields) {
13936         for my $to_field ($r->field( $f )) {
13937             if (exists($fields{$f}{match})) {
13938                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13939             }
13940
13941             if ( @{$fields{$f}{sf}} ) {
13942                 $to_field->delete_subfield(code => $fields{$f}{sf});
13943             } else {
13944                 $r->delete_field( $to_field );
13945             }
13946         }
13947     }
13948
13949     $xml = $r->as_xml_record;
13950     $xml =~ s/^<\?.+?\?>$//mo;
13951     $xml =~ s/\n//sgo;
13952     $xml =~ s/>\s+</></sgo;
13953
13954     return $xml;
13955
13956 $_$ LANGUAGE PLPERLU;
13957
13958 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13959     SELECT vandelay.add_field( vandelay.strip_field( $1, $3), $2, $3 );
13960 $_$ LANGUAGE SQL;
13961
13962 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13963     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
13964 $_$ LANGUAGE SQL;
13965
13966 CREATE VIEW action.unfulfilled_hold_max_loop AS
13967         SELECT  hold,
13968                 max(count) AS max
13969         FROM    action.unfulfilled_hold_loops
13970         GROUP BY 1;
13971
13972 ALTER TABLE acq.lineitem_attr
13973         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
13974
13975 ALTER TABLE acq.lineitem_attr
13976         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13977                 ON DELETE CASCADE
13978                 DEFERRABLE INITIALLY DEFERRED;
13979
13980 ALTER TABLE acq.po_note
13981         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13982
13983 CREATE TABLE vandelay.merge_profile (
13984     id              BIGSERIAL   PRIMARY KEY,
13985     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
13986     name            TEXT        NOT NULL,
13987     add_spec        TEXT,
13988     replace_spec    TEXT,
13989     strip_spec      TEXT,
13990     preserve_spec   TEXT,
13991     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
13992     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))
13993 );
13994
13995 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
13996 DECLARE
13997     attr        RECORD;
13998     attr_def    RECORD;
13999     eg_rec      RECORD;
14000     id_value    TEXT;
14001     exact_id    BIGINT;
14002 BEGIN
14003
14004     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
14005
14006     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
14007
14008     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
14009         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
14010
14011         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
14012             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
14013             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
14014             IF exact_id IS NOT NULL THEN
14015                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
14016             END IF;
14017         END IF;
14018     END IF;
14019
14020     IF exact_id IS NULL THEN
14021         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
14022
14023             -- All numbers? check for an id match
14024             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
14025                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
14026                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14027                 END LOOP;
14028             END IF;
14029
14030             -- Looks like an ISBN? check for an isbn match
14031             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
14032                 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
14033                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
14034                     IF FOUND THEN
14035                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
14036                     END IF;
14037                 END LOOP;
14038
14039                 -- subcheck for isbn-as-tcn
14040                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
14041                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14042                 END LOOP;
14043             END IF;
14044
14045             -- check for an OCLC tcn_value match
14046             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
14047                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') AND deleted IS FALSE LOOP
14048                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14049                 END LOOP;
14050             END IF;
14051
14052             -- check for a direct tcn_value match
14053             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
14054                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
14055             END LOOP;
14056
14057             -- check for a direct item barcode match
14058             FOR eg_rec IN
14059                     SELECT  DISTINCT b.*
14060                       FROM  biblio.record_entry b
14061                             JOIN asset.call_number cn ON (cn.record = b.id)
14062                             JOIN asset.copy cp ON (cp.call_number = cn.id)
14063                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
14064             LOOP
14065                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
14066             END LOOP;
14067
14068         END LOOP;
14069     END IF;
14070
14071     RETURN NULL;
14072 END;
14073 $func$ LANGUAGE PLPGSQL;
14074
14075 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 $_$
14076     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
14077 $_$ LANGUAGE SQL;
14078
14079 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
14080 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
14081 DECLARE
14082     output              vandelay.compile_profile%ROWTYPE;
14083     profile             vandelay.merge_profile%ROWTYPE;
14084     profile_tmpl        TEXT;
14085     profile_tmpl_owner  TEXT;
14086     add_rule            TEXT := '';
14087     strip_rule          TEXT := '';
14088     replace_rule        TEXT := '';
14089     preserve_rule       TEXT := '';
14090
14091 BEGIN
14092
14093     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
14094     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
14095
14096     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
14097         SELECT  p.* INTO profile
14098           FROM  vandelay.merge_profile p
14099                 JOIN actor.org_unit u ON (u.id = p.owner)
14100           WHERE p.name = profile_tmpl
14101                 AND u.shortname = profile_tmpl_owner;
14102
14103         IF profile.id IS NOT NULL THEN
14104             add_rule := COALESCE(profile.add_spec,'');
14105             strip_rule := COALESCE(profile.strip_spec,'');
14106             replace_rule := COALESCE(profile.replace_spec,'');
14107             preserve_rule := COALESCE(profile.preserve_spec,'');
14108         END IF;
14109     END IF;
14110
14111     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),''),'');
14112     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),''),'');
14113     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),''),'');
14114     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),''),'');
14115
14116     output.add_rule := BTRIM(add_rule,',');
14117     output.replace_rule := BTRIM(replace_rule,',');
14118     output.strip_rule := BTRIM(strip_rule,',');
14119     output.preserve_rule := BTRIM(preserve_rule,',');
14120
14121     RETURN output;
14122 END;
14123 $_$ LANGUAGE PLPGSQL;
14124
14125 -- Template-based marc munging functions
14126 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14127 DECLARE
14128     merge_profile   vandelay.merge_profile%ROWTYPE;
14129     dyn_profile     vandelay.compile_profile%ROWTYPE;
14130     editor_string   TEXT;
14131     editor_id       INT;
14132     source_marc     TEXT;
14133     target_marc     TEXT;
14134     eg_marc         TEXT;
14135     replace_rule    TEXT;
14136     match_count     INT;
14137 BEGIN
14138
14139     SELECT  b.marc INTO eg_marc
14140       FROM  biblio.record_entry b
14141       WHERE b.id = eg_id
14142       LIMIT 1;
14143
14144     IF eg_marc IS NULL OR v_marc IS NULL THEN
14145         -- RAISE NOTICE 'no marc for template or bib record';
14146         RETURN FALSE;
14147     END IF;
14148
14149     dyn_profile := vandelay.compile_profile( v_marc );
14150
14151     IF merge_profile_id IS NOT NULL THEN
14152         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14153         IF FOUND THEN
14154             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14155             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14156             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14157             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14158         END IF;
14159     END IF;
14160
14161     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14162         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14163         RETURN FALSE;
14164     END IF;
14165
14166     IF dyn_profile.replace_rule <> '' THEN
14167         source_marc = v_marc;
14168         target_marc = eg_marc;
14169         replace_rule = dyn_profile.replace_rule;
14170     ELSE
14171         source_marc = eg_marc;
14172         target_marc = v_marc;
14173         replace_rule = dyn_profile.preserve_rule;
14174     END IF;
14175
14176     UPDATE  biblio.record_entry
14177       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14178       WHERE id = eg_id;
14179
14180     IF NOT FOUND THEN
14181         -- RAISE NOTICE 'update of biblio.record_entry failed';
14182         RETURN FALSE;
14183     END IF;
14184
14185     RETURN TRUE;
14186
14187 END;
14188 $$ LANGUAGE PLPGSQL;
14189
14190 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
14191     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
14192 $$ LANGUAGE SQL;
14193
14194 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14195 DECLARE
14196     merge_profile   vandelay.merge_profile%ROWTYPE;
14197     dyn_profile     vandelay.compile_profile%ROWTYPE;
14198     editor_string   TEXT;
14199     editor_id       INT;
14200     source_marc     TEXT;
14201     target_marc     TEXT;
14202     eg_marc         TEXT;
14203     v_marc          TEXT;
14204     replace_rule    TEXT;
14205     match_count     INT;
14206 BEGIN
14207
14208     SELECT  q.marc INTO v_marc
14209       FROM  vandelay.queued_record q
14210             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
14211       LIMIT 1;
14212
14213     IF v_marc IS NULL THEN
14214         -- RAISE NOTICE 'no marc for vandelay or bib record';
14215         RETURN FALSE;
14216     END IF;
14217
14218     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
14219         UPDATE  vandelay.queued_bib_record
14220           SET   imported_as = eg_id,
14221                 import_time = NOW()
14222           WHERE id = import_id;
14223
14224         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
14225
14226         IF editor_string IS NOT NULL AND editor_string <> '' THEN
14227             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
14228
14229             IF editor_id IS NULL THEN
14230                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
14231             END IF;
14232
14233             IF editor_id IS NOT NULL THEN
14234                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
14235             END IF;
14236         END IF;
14237
14238         RETURN TRUE;
14239     END IF;
14240
14241     -- RAISE NOTICE 'update of biblio.record_entry failed';
14242
14243     RETURN FALSE;
14244
14245 END;
14246 $$ LANGUAGE PLPGSQL;
14247
14248 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14249 DECLARE
14250     eg_id           BIGINT;
14251     match_count     INT;
14252     match_attr      vandelay.bib_attr_definition%ROWTYPE;
14253 BEGIN
14254
14255     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
14256
14257     IF FOUND THEN
14258         -- RAISE NOTICE 'already imported, cannot auto-overlay'
14259         RETURN FALSE;
14260     END IF;
14261
14262     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
14263
14264     IF match_count <> 1 THEN
14265         -- RAISE NOTICE 'not an exact match';
14266         RETURN FALSE;
14267     END IF;
14268
14269     SELECT  d.* INTO match_attr
14270       FROM  vandelay.bib_attr_definition d
14271             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
14272             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
14273       WHERE m.queued_record = import_id;
14274
14275     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
14276         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
14277         RETURN FALSE;
14278     END IF;
14279
14280     SELECT  m.eg_record INTO eg_id
14281       FROM  vandelay.bib_match m
14282       WHERE m.queued_record = import_id
14283       LIMIT 1;
14284
14285     IF eg_id IS NULL THEN
14286         RETURN FALSE;
14287     END IF;
14288
14289     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
14290 END;
14291 $$ LANGUAGE PLPGSQL;
14292
14293 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14294 DECLARE
14295     queued_record   vandelay.queued_bib_record%ROWTYPE;
14296 BEGIN
14297
14298     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
14299
14300         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
14301             RETURN NEXT queued_record.id;
14302         END IF;
14303
14304     END LOOP;
14305
14306     RETURN;
14307
14308 END;
14309 $$ LANGUAGE PLPGSQL;
14310
14311 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14312     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
14313 $$ LANGUAGE SQL;
14314
14315 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14316 DECLARE
14317     merge_profile   vandelay.merge_profile%ROWTYPE;
14318     dyn_profile     vandelay.compile_profile%ROWTYPE;
14319     source_marc     TEXT;
14320     target_marc     TEXT;
14321     eg_marc         TEXT;
14322     v_marc          TEXT;
14323     replace_rule    TEXT;
14324     match_count     INT;
14325 BEGIN
14326
14327     SELECT  b.marc INTO eg_marc
14328       FROM  authority.record_entry b
14329             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
14330       LIMIT 1;
14331
14332     SELECT  q.marc INTO v_marc
14333       FROM  vandelay.queued_record q
14334             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
14335       LIMIT 1;
14336
14337     IF eg_marc IS NULL OR v_marc IS NULL THEN
14338         -- RAISE NOTICE 'no marc for vandelay or authority record';
14339         RETURN FALSE;
14340     END IF;
14341
14342     dyn_profile := vandelay.compile_profile( v_marc );
14343
14344     IF merge_profile_id IS NOT NULL THEN
14345         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14346         IF FOUND THEN
14347             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14348             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14349             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14350             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14351         END IF;
14352     END IF;
14353
14354     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14355         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14356         RETURN FALSE;
14357     END IF;
14358
14359     IF dyn_profile.replace_rule <> '' THEN
14360         source_marc = v_marc;
14361         target_marc = eg_marc;
14362         replace_rule = dyn_profile.replace_rule;
14363     ELSE
14364         source_marc = eg_marc;
14365         target_marc = v_marc;
14366         replace_rule = dyn_profile.preserve_rule;
14367     END IF;
14368
14369     UPDATE  authority.record_entry
14370       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14371       WHERE id = eg_id;
14372
14373     IF FOUND THEN
14374         UPDATE  vandelay.queued_authority_record
14375           SET   imported_as = eg_id,
14376                 import_time = NOW()
14377           WHERE id = import_id;
14378         RETURN TRUE;
14379     END IF;
14380
14381     -- RAISE NOTICE 'update of authority.record_entry failed';
14382
14383     RETURN FALSE;
14384
14385 END;
14386 $$ LANGUAGE PLPGSQL;
14387
14388 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14389 DECLARE
14390     eg_id           BIGINT;
14391     match_count     INT;
14392 BEGIN
14393     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14394
14395     IF match_count <> 1 THEN
14396         -- RAISE NOTICE 'not an exact match';
14397         RETURN FALSE;
14398     END IF;
14399
14400     SELECT  m.eg_record INTO eg_id
14401       FROM  vandelay.authority_match m
14402       WHERE m.queued_record = import_id
14403       LIMIT 1;
14404
14405     IF eg_id IS NULL THEN
14406         RETURN FALSE;
14407     END IF;
14408
14409     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14410 END;
14411 $$ LANGUAGE PLPGSQL;
14412
14413 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14414 DECLARE
14415     queued_record   vandelay.queued_authority_record%ROWTYPE;
14416 BEGIN
14417
14418     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14419
14420         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14421             RETURN NEXT queued_record.id;
14422         END IF;
14423
14424     END LOOP;
14425
14426     RETURN;
14427
14428 END;
14429 $$ LANGUAGE PLPGSQL;
14430
14431 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14432     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14433 $$ LANGUAGE SQL;
14434
14435 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14436 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14437 DECLARE
14438     eg_tcn          TEXT;
14439     eg_tcn_source   TEXT;
14440     output          vandelay.tcn_data%ROWTYPE;
14441 BEGIN
14442
14443     -- 001/003
14444     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14445     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14446
14447         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14448         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14449             eg_tcn_source := 'System Local';
14450         END IF;
14451
14452         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14453
14454         IF NOT FOUND THEN
14455             output.used := FALSE;
14456         ELSE
14457             output.used := TRUE;
14458         END IF;
14459
14460         output.tcn := eg_tcn;
14461         output.tcn_source := eg_tcn_source;
14462         RETURN NEXT output;
14463
14464     END IF;
14465
14466     -- 901 ab
14467     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14468     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14469
14470         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14471         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14472             eg_tcn_source := 'System Local';
14473         END IF;
14474
14475         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14476
14477         IF NOT FOUND THEN
14478             output.used := FALSE;
14479         ELSE
14480             output.used := TRUE;
14481         END IF;
14482
14483         output.tcn := eg_tcn;
14484         output.tcn_source := eg_tcn_source;
14485         RETURN NEXT output;
14486
14487     END IF;
14488
14489     -- 039 ab
14490     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14491     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14492
14493         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14494         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14495             eg_tcn_source := 'System Local';
14496         END IF;
14497
14498         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14499
14500         IF NOT FOUND THEN
14501             output.used := FALSE;
14502         ELSE
14503             output.used := TRUE;
14504         END IF;
14505
14506         output.tcn := eg_tcn;
14507         output.tcn_source := eg_tcn_source;
14508         RETURN NEXT output;
14509
14510     END IF;
14511
14512     -- 020 a
14513     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14514     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14515
14516         eg_tcn_source := 'ISBN';
14517
14518         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14519
14520         IF NOT FOUND THEN
14521             output.used := FALSE;
14522         ELSE
14523             output.used := TRUE;
14524         END IF;
14525
14526         output.tcn := eg_tcn;
14527         output.tcn_source := eg_tcn_source;
14528         RETURN NEXT output;
14529
14530     END IF;
14531
14532     -- 022 a
14533     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14534     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14535
14536         eg_tcn_source := 'ISSN';
14537
14538         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14539
14540         IF NOT FOUND THEN
14541             output.used := FALSE;
14542         ELSE
14543             output.used := TRUE;
14544         END IF;
14545
14546         output.tcn := eg_tcn;
14547         output.tcn_source := eg_tcn_source;
14548         RETURN NEXT output;
14549
14550     END IF;
14551
14552     -- 010 a
14553     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14554     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14555
14556         eg_tcn_source := 'LCCN';
14557
14558         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14559
14560         IF NOT FOUND THEN
14561             output.used := FALSE;
14562         ELSE
14563             output.used := TRUE;
14564         END IF;
14565
14566         output.tcn := eg_tcn;
14567         output.tcn_source := eg_tcn_source;
14568         RETURN NEXT output;
14569
14570     END IF;
14571
14572     -- 035 a
14573     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14574     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14575
14576         eg_tcn_source := 'System Legacy';
14577
14578         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14579
14580         IF NOT FOUND THEN
14581             output.used := FALSE;
14582         ELSE
14583             output.used := TRUE;
14584         END IF;
14585
14586         output.tcn := eg_tcn;
14587         output.tcn_source := eg_tcn_source;
14588         RETURN NEXT output;
14589
14590     END IF;
14591
14592     RETURN;
14593 END;
14594 $_$ LANGUAGE PLPGSQL;
14595
14596 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14597
14598 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);
14599
14600 UPDATE biblio.record_entry SET marc = '<record xmlns="http://www.loc.gov/MARC21/slim"/>' WHERE id = -1;
14601
14602 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14603 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14604 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14605 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14606 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14607
14608 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14609 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14610 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14611 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14612
14613 ALTER TABLE metabib.series_field_entry
14614         ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source)
14615                 REFERENCES biblio.record_entry (id)
14616                 ON DELETE CASCADE
14617                 DEFERRABLE INITIALLY DEFERRED;
14618
14619 ALTER TABLE metabib.series_field_entry
14620         ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field)
14621                 REFERENCES config.metabib_field (id)
14622                 ON DELETE CASCADE
14623                 DEFERRABLE INITIALLY DEFERRED;
14624
14625 CREATE TABLE acq.claim_policy_action (
14626         id              SERIAL       PRIMARY KEY,
14627         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14628                                  ON DELETE CASCADE
14629                                      DEFERRABLE INITIALLY DEFERRED,
14630         action_interval INTERVAL     NOT NULL,
14631         action          INT          NOT NULL REFERENCES acq.claim_event_type
14632                                      DEFERRABLE INITIALLY DEFERRED,
14633         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14634 );
14635
14636 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14637 DECLARE
14638     value       TEXT;
14639     atype       TEXT;
14640     prov        INT;
14641     pos         INT;
14642     adef        RECORD;
14643     xpath_string    TEXT;
14644 BEGIN
14645     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14646  
14647         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14648  
14649         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14650             IF (atype = 'lineitem_provider_attr_definition') THEN
14651                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14652                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14653             END IF;
14654  
14655             IF (atype = 'lineitem_provider_attr_definition') THEN
14656                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14657             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14658                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14659             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14660                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14661             END IF;
14662  
14663             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14664  
14665             pos := 1;
14666  
14667             LOOP
14668                 SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14669  
14670                 IF (value IS NOT NULL AND value <> '') THEN
14671                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14672                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14673                 ELSE
14674                     EXIT;
14675                 END IF;
14676  
14677                 pos := pos + 1;
14678             END LOOP;
14679  
14680         END IF;
14681  
14682     END LOOP;
14683  
14684     RETURN NULL;
14685 END;
14686 $function$ LANGUAGE PLPGSQL;
14687
14688 UPDATE config.metabib_field SET label = name;
14689 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14690
14691 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_field_class_fkey
14692          FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14693
14694 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14695
14696 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14697
14698 CREATE TABLE config.metabib_search_alias (
14699     alias       TEXT    PRIMARY KEY,
14700     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14701     field       INT     REFERENCES config.metabib_field (id)
14702 );
14703
14704 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14705 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14706 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14707 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14708 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14709 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14710 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14711 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14712
14713 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14714 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14715 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14716 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14717 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14718 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14719 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14720 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14721 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14722 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14723 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14724 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14725 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14726
14727 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14728 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14729 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14730 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14731 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14732 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14733 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14734 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14735
14736 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14737 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14738 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14739 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14740 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14741 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
14742
14743 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14744 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14745 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14746
14747 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14748 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;
14749 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;
14750 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;
14751 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;
14752
14753 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14754 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14755 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14756 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14757
14758 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14759 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14760 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14761 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14762 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14763 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14764 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14765 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14766 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14767 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14768 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14769 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14770 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14771 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14772
14773 CREATE TABLE asset.opac_visible_copies (
14774   id        BIGINT primary key, -- copy id
14775   record    BIGINT,
14776   circ_lib  INTEGER
14777 );
14778 COMMENT ON TABLE asset.opac_visible_copies IS $$
14779 Materialized view of copies that are visible in the OPAC, used by
14780 search.query_parser_fts() to speed up OPAC visibility checks on large
14781 databases.  Contents are maintained by a set of triggers.
14782 $$;
14783 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
14784
14785 CREATE OR REPLACE FUNCTION search.query_parser_fts (
14786
14787     param_search_ou INT,
14788     param_depth     INT,
14789     param_query     TEXT,
14790     param_statuses  INT[],
14791     param_locations INT[],
14792     param_offset    INT,
14793     param_check     INT,
14794     param_limit     INT,
14795     metarecord      BOOL,
14796     staff           BOOL
14797  
14798 ) RETURNS SETOF search.search_result AS $func$
14799 DECLARE
14800
14801     current_res         search.search_result%ROWTYPE;
14802     search_org_list     INT[];
14803
14804     check_limit         INT;
14805     core_limit          INT;
14806     core_offset         INT;
14807     tmp_int             INT;
14808
14809     core_result         RECORD;
14810     core_cursor         REFCURSOR;
14811     core_rel_query      TEXT;
14812
14813     total_count         INT := 0;
14814     check_count         INT := 0;
14815     deleted_count       INT := 0;
14816     visible_count       INT := 0;
14817     excluded_count      INT := 0;
14818
14819 BEGIN
14820
14821     check_limit := COALESCE( param_check, 1000 );
14822     core_limit  := COALESCE( param_limit, 25000 );
14823     core_offset := COALESCE( param_offset, 0 );
14824
14825     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
14826
14827     IF param_search_ou > 0 THEN
14828         IF param_depth IS NOT NULL THEN
14829             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
14830         ELSE
14831             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
14832         END IF;
14833     ELSIF param_search_ou < 0 THEN
14834         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
14835     ELSIF param_search_ou = 0 THEN
14836         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
14837     END IF;
14838
14839     OPEN core_cursor FOR EXECUTE param_query;
14840
14841     LOOP
14842
14843         FETCH core_cursor INTO core_result;
14844         EXIT WHEN NOT FOUND;
14845         EXIT WHEN total_count >= core_limit;
14846
14847         total_count := total_count + 1;
14848
14849         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
14850
14851         check_count := check_count + 1;
14852
14853         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14854         IF NOT FOUND THEN
14855             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
14856             deleted_count := deleted_count + 1;
14857             CONTINUE;
14858         END IF;
14859
14860         PERFORM 1
14861           FROM  biblio.record_entry b
14862                 JOIN config.bib_source s ON (b.source = s.id)
14863           WHERE s.transcendant
14864                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14865
14866         IF FOUND THEN
14867             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
14868             visible_count := visible_count + 1;
14869
14870             current_res.id = core_result.id;
14871             current_res.rel = core_result.rel;
14872
14873             tmp_int := 1;
14874             IF metarecord THEN
14875                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14876             END IF;
14877
14878             IF tmp_int = 1 THEN
14879                 current_res.record = core_result.records[1];
14880             ELSE
14881                 current_res.record = NULL;
14882             END IF;
14883
14884             RETURN NEXT current_res;
14885
14886             CONTINUE;
14887         END IF;
14888
14889         PERFORM 1
14890           FROM  asset.call_number cn
14891                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
14892                 JOIN asset.uri uri ON (map.uri = uri.id)
14893           WHERE NOT cn.deleted
14894                 AND cn.label = '##URI##'
14895                 AND uri.active
14896                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
14897                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14898                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14899           LIMIT 1;
14900
14901         IF FOUND THEN
14902             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
14903             visible_count := visible_count + 1;
14904
14905             current_res.id = core_result.id;
14906             current_res.rel = core_result.rel;
14907
14908             tmp_int := 1;
14909             IF metarecord THEN
14910                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14911             END IF;
14912
14913             IF tmp_int = 1 THEN
14914                 current_res.record = core_result.records[1];
14915             ELSE
14916                 current_res.record = NULL;
14917             END IF;
14918
14919             RETURN NEXT current_res;
14920
14921             CONTINUE;
14922         END IF;
14923
14924         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
14925
14926             PERFORM 1
14927               FROM  asset.call_number cn
14928                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14929               WHERE NOT cn.deleted
14930                     AND NOT cp.deleted
14931                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
14932                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14933                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14934               LIMIT 1;
14935
14936             IF NOT FOUND THEN
14937                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
14938                 excluded_count := excluded_count + 1;
14939                 CONTINUE;
14940             END IF;
14941
14942         END IF;
14943
14944         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
14945
14946             PERFORM 1
14947               FROM  asset.call_number cn
14948                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14949               WHERE NOT cn.deleted
14950                     AND NOT cp.deleted
14951                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
14952                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14953                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14954               LIMIT 1;
14955
14956             IF NOT FOUND THEN
14957                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
14958                 excluded_count := excluded_count + 1;
14959                 CONTINUE;
14960             END IF;
14961
14962         END IF;
14963
14964         IF staff IS NULL OR NOT staff THEN
14965
14966             PERFORM 1
14967               FROM  asset.opac_visible_copies
14968               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14969                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14970               LIMIT 1;
14971
14972             IF NOT FOUND THEN
14973                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14974                 excluded_count := excluded_count + 1;
14975                 CONTINUE;
14976             END IF;
14977
14978         ELSE
14979
14980             PERFORM 1
14981               FROM  asset.call_number cn
14982                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14983                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
14984               WHERE NOT cn.deleted
14985                     AND NOT cp.deleted
14986                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14987                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14988               LIMIT 1;
14989
14990             IF NOT FOUND THEN
14991
14992                 PERFORM 1
14993                   FROM  asset.call_number cn
14994                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14995                   LIMIT 1;
14996
14997                 IF FOUND THEN
14998                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14999                     excluded_count := excluded_count + 1;
15000                     CONTINUE;
15001                 END IF;
15002
15003             END IF;
15004
15005         END IF;
15006
15007         visible_count := visible_count + 1;
15008
15009         current_res.id = core_result.id;
15010         current_res.rel = core_result.rel;
15011
15012         tmp_int := 1;
15013         IF metarecord THEN
15014             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
15015         END IF;
15016
15017         IF tmp_int = 1 THEN
15018             current_res.record = core_result.records[1];
15019         ELSE
15020             current_res.record = NULL;
15021         END IF;
15022
15023         RETURN NEXT current_res;
15024
15025         IF visible_count % 1000 = 0 THEN
15026             -- RAISE NOTICE ' % visible so far ... ', visible_count;
15027         END IF;
15028
15029     END LOOP;
15030
15031     current_res.id = NULL;
15032     current_res.rel = NULL;
15033     current_res.record = NULL;
15034     current_res.total = total_count;
15035     current_res.checked = check_count;
15036     current_res.deleted = deleted_count;
15037     current_res.visible = visible_count;
15038     current_res.excluded = excluded_count;
15039
15040     CLOSE core_cursor;
15041
15042     RETURN NEXT current_res;
15043
15044 END;
15045 $func$ LANGUAGE PLPGSQL;
15046
15047 ALTER TABLE biblio.record_entry ADD COLUMN owner INT;
15048 ALTER TABLE biblio.record_entry
15049          ADD CONSTRAINT biblio_record_entry_owner_fkey FOREIGN KEY (owner)
15050          REFERENCES actor.org_unit (id)
15051          DEFERRABLE INITIALLY DEFERRED;
15052
15053 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
15054
15055 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
15056 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
15057
15058 DROP VIEW auditor.biblio_record_entry_lifecycle;
15059
15060 SELECT auditor.create_auditor_lifecycle( 'biblio', 'record_entry' );
15061
15062 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
15063         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
15064 $$ LANGUAGE SQL STRICT IMMUTABLE;
15065
15066 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
15067     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
15068 $$ LANGUAGE SQL STRICT IMMUTABLE;
15069
15070 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
15071     return lc(shift);
15072 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15073
15074 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
15075     return uc(shift);
15076 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15077
15078 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
15079     use Unicode::Normalize;
15080
15081     my $x = NFD(shift);
15082     $x =~ s/\pM+//go;
15083     return $x;
15084
15085 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15086
15087 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
15088     use Unicode::Normalize;
15089
15090     my $x = NFC(shift);
15091     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
15092     return $x;
15093
15094 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
15095
15096 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
15097 DECLARE
15098     setting RECORD;
15099     cur_org INT;
15100 BEGIN
15101     cur_org := org_id;
15102     LOOP
15103         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
15104         IF FOUND THEN
15105             RETURN NEXT setting;
15106         END IF;
15107         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
15108         EXIT WHEN cur_org IS NULL;
15109     END LOOP;
15110     RETURN;
15111 END;
15112 $$ LANGUAGE plpgsql STABLE;
15113
15114 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
15115 DECLARE
15116     counter INT;
15117     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
15118 BEGIN
15119
15120     SELECT  COUNT(*) INTO counter
15121       FROM  oils_xpath_table(
15122                 'id',
15123                 'marc',
15124                 'acq.lineitem',
15125                 '//*[@tag="' || tag || '"]',
15126                 'id=' || lineitem
15127             ) as t(i int,c text);
15128
15129     FOR i IN 1 .. counter LOOP
15130         FOR lida IN
15131             SELECT  *
15132               FROM  (   SELECT  id,i,t,v
15133                           FROM  oils_xpath_table(
15134                                     'id',
15135                                     'marc',
15136                                     'acq.lineitem',
15137                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
15138                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
15139                                     'id=' || lineitem
15140                                 ) as t(id int,t text,v text)
15141                     )x
15142         LOOP
15143             RETURN NEXT lida;
15144         END LOOP;
15145     END LOOP;
15146
15147     RETURN;
15148 END;
15149 $$ LANGUAGE PLPGSQL;
15150
15151 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
15152 DECLARE
15153     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
15154     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
15155     result      config.i18n_core%ROWTYPE;
15156     fallback    TEXT;
15157     keyfield    TEXT := keyclass || '.' || keycol;
15158 BEGIN
15159
15160     -- Try the full locale
15161     SELECT  * INTO result
15162       FROM  config.i18n_core
15163       WHERE fq_field = keyfield
15164             AND identity_value = keyvalue
15165             AND translation = locale;
15166
15167     -- Try just the language
15168     IF NOT FOUND THEN
15169         SELECT  * INTO result
15170           FROM  config.i18n_core
15171           WHERE fq_field = keyfield
15172                 AND identity_value = keyvalue
15173                 AND translation = language;
15174     END IF;
15175
15176     -- Fall back to the string we passed in in the first place
15177     IF NOT FOUND THEN
15178     EXECUTE
15179             'SELECT ' ||
15180                 keycol ||
15181             ' FROM ' || keytable ||
15182             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
15183                 INTO fallback;
15184         RETURN fallback;
15185     END IF;
15186
15187     RETURN result.string;
15188 END;
15189 $func$ LANGUAGE PLPGSQL STABLE;
15190
15191 SELECT auditor.create_auditor ( 'acq', 'invoice' );
15192
15193 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
15194
15195 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
15196
15197 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
15198     3, 1, 'delivered_but_lost',
15199     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
15200
15201 CREATE TABLE config.global_flag (
15202     label   TEXT    NOT NULL
15203 ) INHERITS (config.internal_flag);
15204 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
15205
15206 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
15207     VALUES (
15208         'cat.bib.use_id_for_tcn',
15209         oils_i18n_gettext(
15210             'cat.bib.use_id_for_tcn',
15211             'Cat: Use Internal ID for TCN Value',
15212             'cgf', 
15213             'label'
15214         )
15215     );
15216
15217 -- resolves performance issue noted by EG Indiana
15218
15219 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
15220
15221 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
15222
15223 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15224     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
15225 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15226     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15227 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15228     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
15229 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15230     (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 );
15231 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15232     (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 );
15233 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15234     (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 );
15235 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15236     (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 );
15237 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15238     (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 );
15239 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
15240     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
15241
15242 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15243  
15244
15245 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
15246
15247 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
15248 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
15249 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
15250 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
15251 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
15252 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
15253
15254 CREATE TABLE metabib.identifier_field_entry (
15255         id              BIGSERIAL       PRIMARY KEY,
15256         source          BIGINT          NOT NULL,
15257         field           INT             NOT NULL,
15258         value           TEXT            NOT NULL,
15259         index_vector    tsvector        NOT NULL
15260 );
15261 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15262         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
15263         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
15264
15265 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
15266 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
15267     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
15268 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
15269
15270 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
15271     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15272 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
15273     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
15274
15275 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
15276     use Business::ISBN;
15277     use strict;
15278     use warnings;
15279
15280     # For each ISBN found in a single string containing a set of ISBNs:
15281     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
15282     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
15283
15284     my $input = shift;
15285     my $output = '';
15286
15287     foreach my $word (split(/\s/, $input)) {
15288         my $isbn = Business::ISBN->new($word);
15289
15290         # First check the checksum; if it is not valid, fix it and add the original
15291         # bad-checksum ISBN to the output
15292         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
15293             $output .= $isbn->isbn() . " ";
15294             $isbn->fix_checksum();
15295         }
15296
15297         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
15298         # and add the normalized original ISBN to the output
15299         if ($isbn && $isbn->is_valid()) {
15300             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
15301             $output .= $isbn->isbn . " ";
15302
15303             # If we successfully converted the ISBN to its counterpart, add the
15304             # converted ISBN to the output as well
15305             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
15306         }
15307     }
15308     return $output if $output;
15309
15310     # If there were no valid ISBNs, just return the raw input
15311     return $input;
15312 $func$ LANGUAGE PLPERLU;
15313
15314 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
15315 /*
15316  * Copyright (C) 2010 Merrimack Valley Library Consortium
15317  * Jason Stephenson <jstephenson@mvlc.org>
15318  * Copyright (C) 2010 Laurentian University
15319  * Dan Scott <dscott@laurentian.ca>
15320  *
15321  * The translate_isbn1013 function takes an input ISBN and returns the
15322  * following in a single space-delimited string if the input ISBN is valid:
15323  *   - The normalized input ISBN (hyphens stripped)
15324  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
15325  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
15326  */
15327 $$;
15328
15329 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
15330 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
15331 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
15332 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
15333 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
15334 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
15335
15336 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15337         'ISBN 10/13 conversion',
15338         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
15339         'translate_isbn1013',
15340         0
15341 );
15342
15343 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15344         'Replace',
15345         'Replace all occurences of first parameter in the string with the second parameter.',
15346         'replace',
15347         2
15348 );
15349
15350 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15351     SELECT  m.id, i.id, 1
15352       FROM  config.metabib_field m,
15353             config.index_normalizer i
15354       WHERE i.func IN ('first_word')
15355             AND m.id IN (18);
15356
15357 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15358     SELECT  m.id, i.id, 2
15359       FROM  config.metabib_field m,
15360             config.index_normalizer i
15361       WHERE i.func IN ('translate_isbn1013')
15362             AND m.id IN (18);
15363
15364 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15365     SELECT  m.id, i.id, $$['-','']$$
15366       FROM  config.metabib_field m,
15367             config.index_normalizer i
15368       WHERE i.func IN ('replace')
15369             AND m.id IN (19);
15370
15371 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15372     SELECT  m.id, i.id, $$[' ','']$$
15373       FROM  config.metabib_field m,
15374             config.index_normalizer i
15375       WHERE i.func IN ('replace')
15376             AND m.id IN (19);
15377
15378 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15379
15380 UPDATE  config.metabib_field_index_norm_map
15381   SET   params = REPLACE(params,E'\'','"')
15382   WHERE params IS NOT NULL AND params <> '';
15383
15384 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15385
15386 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15387
15388 ALTER TABLE config.circ_modifier
15389         ADD COLUMN avg_wait_time INTERVAL;
15390
15391 --CREATE TABLE actor.usr_password_reset (
15392 --  id SERIAL PRIMARY KEY,
15393 --  uuid TEXT NOT NULL, 
15394 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15395 --  request_time TIMESTAMP NOT NULL DEFAULT NOW(), 
15396 --  has_been_reset BOOL NOT NULL DEFAULT false
15397 --);
15398 --COMMENT ON TABLE actor.usr_password_reset IS $$
15399 --/*
15400 -- * Copyright (C) 2010 Laurentian University
15401 -- * Dan Scott <dscott@laurentian.ca>
15402 -- *
15403 -- * Self-serve password reset requests
15404 -- *
15405 -- * ****
15406 -- *
15407 -- * This program is free software; you can redistribute it and/or
15408 -- * modify it under the terms of the GNU General Public License
15409 -- * as published by the Free Software Foundation; either version 2
15410 -- * of the License, or (at your option) any later version.
15411 -- *
15412 -- * This program is distributed in the hope that it will be useful,
15413 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15414 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15415 -- * GNU General Public License for more details.
15416 -- */
15417 --$$;
15418 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15419 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15420 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15421 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15422
15423 -- Use the identifier search class tsconfig
15424 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15425 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15426     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15427     FOR EACH ROW
15428     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15429
15430 INSERT INTO config.global_flag (name,label,enabled)
15431     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15432 INSERT INTO config.global_flag (name,label,enabled)
15433     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15434
15435 -- turn a JSON scalar into an SQL TEXT value
15436 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15437     use JSON::XS;                    
15438     my $json = shift();
15439     my $txt;
15440     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15441     return undef if ($@);
15442     return $txt
15443 $f$ LANGUAGE PLPERLU;
15444
15445 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15446 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15447 DECLARE
15448     c               action.circulation%ROWTYPE;
15449     view_age        INTERVAL;
15450     usr_view_age    actor.usr_setting%ROWTYPE;
15451     usr_view_start  actor.usr_setting%ROWTYPE;
15452 BEGIN
15453     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15454     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15455
15456     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15457         -- User opted in and supplied a retention age
15458         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15459             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15460         ELSE
15461             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15462         END IF;
15463     ELSIF usr_view_start.value IS NOT NULL THEN
15464         -- User opted in
15465         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15466     ELSE
15467         -- User did not opt in
15468         RETURN;
15469     END IF;
15470
15471     FOR c IN
15472         SELECT  *
15473           FROM  action.circulation
15474           WHERE usr = usr_id
15475                 AND parent_circ IS NULL
15476                 AND xact_start > NOW() - view_age
15477           ORDER BY xact_start
15478     LOOP
15479         RETURN NEXT c;
15480     END LOOP;
15481
15482     RETURN;
15483 END;
15484 $func$ LANGUAGE PLPGSQL;
15485
15486 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15487 DECLARE
15488     usr_keep_age    actor.usr_setting%ROWTYPE;
15489     usr_keep_start  actor.usr_setting%ROWTYPE;
15490     org_keep_age    INTERVAL;
15491     org_keep_count  INT;
15492
15493     keep_age        INTERVAL;
15494
15495     target_acp      RECORD;
15496     circ_chain_head action.circulation%ROWTYPE;
15497     circ_chain_tail action.circulation%ROWTYPE;
15498
15499     purge_position  INT;
15500     count_purged    INT;
15501 BEGIN
15502
15503     count_purged := 0;
15504
15505     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15506
15507     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15508     IF org_keep_count IS NULL THEN
15509         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15510     END IF;
15511
15512     -- First, find copies with more than keep_count non-renewal circs
15513     FOR target_acp IN
15514         SELECT  target_copy,
15515                 COUNT(*) AS total_real_circs
15516           FROM  action.circulation
15517           WHERE parent_circ IS NULL
15518                 AND xact_finish IS NOT NULL
15519           GROUP BY target_copy
15520           HAVING COUNT(*) > org_keep_count
15521     LOOP
15522         purge_position := 0;
15523         -- And, for those, select circs that are finished and older than keep_age
15524         FOR circ_chain_head IN
15525             SELECT  *
15526               FROM  action.circulation
15527               WHERE target_copy = target_acp.target_copy
15528                     AND parent_circ IS NULL
15529               ORDER BY xact_start
15530         LOOP
15531
15532             -- Stop once we've purged enough circs to hit org_keep_count
15533             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15534
15535             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15536             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15537
15538             -- Now get the user settings, if any, to block purging if the user wants to keep more circs
15539             usr_keep_age.value := NULL;
15540             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15541
15542             usr_keep_start.value := NULL;
15543             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start';
15544
15545             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15546                 IF oils_json_to_text(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ) THEN
15547                     keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15548                 ELSE
15549                     keep_age := oils_json_to_text(usr_keep_age.value)::INTERVAL;
15550                 END IF;
15551             ELSIF usr_keep_start.value IS NOT NULL THEN
15552                 keep_age := AGE(NOW(), oils_json_to_text(usr_keep_start.value)::TIMESTAMPTZ);
15553             ELSE
15554                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTERVAL );
15555             END IF;
15556
15557             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15558
15559             -- We've passed the purging tests, purge the circ chain starting at the end
15560             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15561             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15562                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15563                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15564             END LOOP;
15565
15566             count_purged := count_purged + 1;
15567             purge_position := purge_position + 1;
15568
15569         END LOOP;
15570     END LOOP;
15571 END;
15572 $func$ LANGUAGE PLPGSQL;
15573
15574 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15575 DECLARE
15576     h               action.hold_request%ROWTYPE;
15577     view_age        INTERVAL;
15578     view_count      INT;
15579     usr_view_count  actor.usr_setting%ROWTYPE;
15580     usr_view_age    actor.usr_setting%ROWTYPE;
15581     usr_view_start  actor.usr_setting%ROWTYPE;
15582 BEGIN
15583     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15584     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15585     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15586
15587     FOR h IN
15588         SELECT  *
15589           FROM  action.hold_request
15590           WHERE usr = usr_id
15591                 AND fulfillment_time IS NULL
15592                 AND cancel_time IS NULL
15593           ORDER BY request_time DESC
15594     LOOP
15595         RETURN NEXT h;
15596     END LOOP;
15597
15598     IF usr_view_start.value IS NULL THEN
15599         RETURN;
15600     END IF;
15601
15602     IF usr_view_age.value IS NOT NULL THEN
15603         -- User opted in and supplied a retention age
15604         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15605             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15606         ELSE
15607             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15608         END IF;
15609     ELSE
15610         -- User opted in
15611         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15612     END IF;
15613
15614     IF usr_view_count.value IS NOT NULL THEN
15615         view_count := oils_json_to_text(usr_view_count.value)::INT;
15616     ELSE
15617         view_count := 1000;
15618     END IF;
15619
15620     -- show some fulfilled/canceled holds
15621     FOR h IN
15622         SELECT  *
15623           FROM  action.hold_request
15624           WHERE usr = usr_id
15625                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15626                 AND request_time > NOW() - view_age
15627           ORDER BY request_time DESC
15628           LIMIT view_count
15629     LOOP
15630         RETURN NEXT h;
15631     END LOOP;
15632
15633     RETURN;
15634 END;
15635 $func$ LANGUAGE PLPGSQL;
15636
15637 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15638
15639 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15640
15641 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15642
15643 DROP TABLE IF EXISTS serial.issuance CASCADE;
15644
15645 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15646
15647 DROP TABLE IF EXISTS serial.subscription CASCADE;
15648
15649 CREATE TABLE asset.copy_template (
15650         id             SERIAL   PRIMARY KEY,
15651         owning_lib     INT      NOT NULL
15652                                 REFERENCES actor.org_unit (id)
15653                                 DEFERRABLE INITIALLY DEFERRED,
15654         creator        BIGINT   NOT NULL
15655                                 REFERENCES actor.usr (id)
15656                                 DEFERRABLE INITIALLY DEFERRED,
15657         editor         BIGINT   NOT NULL
15658                                 REFERENCES actor.usr (id)
15659                                 DEFERRABLE INITIALLY DEFERRED,
15660         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15661         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15662         name           TEXT     NOT NULL,
15663         -- columns above this point are attributes of the template itself
15664         -- columns after this point are attributes of the copy this template modifies/creates
15665         circ_lib       INT      REFERENCES actor.org_unit (id)
15666                                 DEFERRABLE INITIALLY DEFERRED,
15667         status         INT      REFERENCES config.copy_status (id)
15668                                 DEFERRABLE INITIALLY DEFERRED,
15669         location       INT      REFERENCES asset.copy_location (id)
15670                                 DEFERRABLE INITIALLY DEFERRED,
15671         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15672                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15673         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15674                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15675         age_protect    INT,
15676         circulate      BOOL,
15677         deposit        BOOL,
15678         ref            BOOL,
15679         holdable       BOOL,
15680         deposit_amount NUMERIC(6,2),
15681         price          NUMERIC(8,2),
15682         circ_modifier  TEXT,
15683         circ_as_type   TEXT,
15684         alert_message  TEXT,
15685         opac_visible   BOOL,
15686         floating       BOOL,
15687         mint_condition BOOL
15688 );
15689
15690 CREATE TABLE serial.subscription (
15691         id                     SERIAL       PRIMARY KEY,
15692         owning_lib             INT          NOT NULL DEFAULT 1
15693                                             REFERENCES actor.org_unit (id)
15694                                             ON DELETE SET NULL
15695                                             DEFERRABLE INITIALLY DEFERRED,
15696         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15697         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15698         record_entry           BIGINT       REFERENCES biblio.record_entry (id)
15699                                             ON DELETE SET NULL
15700                                             DEFERRABLE INITIALLY DEFERRED,
15701         expected_date_offset   INTERVAL
15702         -- acquisitions/business-side tables link to here
15703 );
15704 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
15705 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
15706
15707 --at least one distribution per org_unit holding issues
15708 CREATE TABLE serial.distribution (
15709         id                    SERIAL  PRIMARY KEY,
15710         record_entry          BIGINT  REFERENCES serial.record_entry (id)
15711                                       ON DELETE SET NULL
15712                                       DEFERRABLE INITIALLY DEFERRED,
15713         summary_method        TEXT    CONSTRAINT sdist_summary_method_check CHECK (
15714                                           summary_method IS NULL
15715                                           OR summary_method IN ( 'add_to_sre',
15716                                           'merge_with_sre', 'use_sre_only',
15717                                           'use_sdist_only')),
15718         subscription          INT     NOT NULL
15719                                       REFERENCES serial.subscription (id)
15720                                                                   ON DELETE CASCADE
15721                                                                   DEFERRABLE INITIALLY DEFERRED,
15722         holding_lib           INT     NOT NULL
15723                                       REFERENCES actor.org_unit (id)
15724                                                                   DEFERRABLE INITIALLY DEFERRED,
15725         label                 TEXT    NOT NULL,
15726         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
15727                                       DEFERRABLE INITIALLY DEFERRED,
15728         receive_unit_template INT     REFERENCES asset.copy_template (id)
15729                                       DEFERRABLE INITIALLY DEFERRED,
15730         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
15731                                       DEFERRABLE INITIALLY DEFERRED,
15732         bind_unit_template    INT     REFERENCES asset.copy_template (id)
15733                                       DEFERRABLE INITIALLY DEFERRED,
15734         unit_label_prefix     TEXT,
15735         unit_label_suffix     TEXT
15736 );
15737 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
15738 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
15739
15740 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
15741
15742 CREATE TABLE serial.stream (
15743         id              SERIAL  PRIMARY KEY,
15744         distribution    INT     NOT NULL
15745                                 REFERENCES serial.distribution (id)
15746                                 ON DELETE CASCADE
15747                                 DEFERRABLE INITIALLY DEFERRED,
15748         routing_label   TEXT
15749 );
15750 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
15751
15752 CREATE UNIQUE INDEX label_once_per_dist
15753         ON serial.stream (distribution, routing_label)
15754         WHERE routing_label IS NOT NULL;
15755
15756 CREATE TABLE serial.routing_list_user (
15757         id             SERIAL       PRIMARY KEY,
15758         stream         INT          NOT NULL
15759                                     REFERENCES serial.stream
15760                                     ON DELETE CASCADE
15761                                     DEFERRABLE INITIALLY DEFERRED,
15762         pos            INT          NOT NULL DEFAULT 1,
15763         reader         INT          REFERENCES actor.usr
15764                                     ON DELETE CASCADE
15765                                     DEFERRABLE INITIALLY DEFERRED,
15766         department     TEXT,
15767         note           TEXT,
15768         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
15769         CONSTRAINT reader_or_dept CHECK
15770         (
15771             -- Recipient is a person or a department, but not both
15772                 (reader IS NOT NULL AND department IS NULL) OR
15773                 (reader IS NULL AND department IS NOT NULL)
15774         )
15775 );
15776 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
15777 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
15778
15779 CREATE TABLE serial.caption_and_pattern (
15780         id           SERIAL       PRIMARY KEY,
15781         subscription INT          NOT NULL REFERENCES serial.subscription (id)
15782                                   ON DELETE CASCADE
15783                                   DEFERRABLE INITIALLY DEFERRED,
15784         type         TEXT         NOT NULL
15785                                   CONSTRAINT cap_type CHECK ( type in
15786                                   ( 'basic', 'supplement', 'index' )),
15787         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
15788         start_date   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
15789         end_date     TIMESTAMP WITH TIME ZONE,
15790         active       BOOL         NOT NULL DEFAULT FALSE,
15791         pattern_code TEXT         NOT NULL,       -- must contain JSON
15792         enum_1       TEXT,
15793         enum_2       TEXT,
15794         enum_3       TEXT,
15795         enum_4       TEXT,
15796         enum_5       TEXT,
15797         enum_6       TEXT,
15798         chron_1      TEXT,
15799         chron_2      TEXT,
15800         chron_3      TEXT,
15801         chron_4      TEXT,
15802         chron_5      TEXT
15803 );
15804 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
15805
15806 CREATE TABLE serial.issuance (
15807         id              SERIAL    PRIMARY KEY,
15808         creator         INT       NOT NULL
15809                                   REFERENCES actor.usr (id)
15810                                                           DEFERRABLE INITIALLY DEFERRED,
15811         editor          INT       NOT NULL
15812                                   REFERENCES actor.usr (id)
15813                                   DEFERRABLE INITIALLY DEFERRED,
15814         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15815         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15816         subscription    INT       NOT NULL
15817                                   REFERENCES serial.subscription (id)
15818                                   ON DELETE CASCADE
15819                                   DEFERRABLE INITIALLY DEFERRED,
15820         label           TEXT,
15821         date_published  TIMESTAMP WITH TIME ZONE,
15822         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
15823                               DEFERRABLE INITIALLY DEFERRED,
15824         holding_code    TEXT,
15825         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
15826                                   (
15827                                       holding_type IS NULL
15828                                       OR holding_type IN ('basic','supplement','index')
15829                                   ),
15830         holding_link_id INT
15831         -- TODO: add columns for separate enumeration/chronology values
15832 );
15833 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
15834 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
15835 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
15836
15837 CREATE TABLE serial.unit (
15838         label           TEXT,
15839         label_sort_key  TEXT,
15840         contents        TEXT    NOT NULL
15841 ) INHERITS (asset.copy);
15842 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
15843 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
15844 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
15845 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
15846 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
15847
15848 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
15849
15850 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
15851
15852 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15853
15854 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15855
15856 CREATE TABLE serial.item (
15857         id              SERIAL  PRIMARY KEY,
15858         creator         INT     NOT NULL
15859                                 REFERENCES actor.usr (id)
15860                                 DEFERRABLE INITIALLY DEFERRED,
15861         editor          INT     NOT NULL
15862                                 REFERENCES actor.usr (id)
15863                                 DEFERRABLE INITIALLY DEFERRED,
15864         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15865         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15866         issuance        INT     NOT NULL
15867                                 REFERENCES serial.issuance (id)
15868                                 ON DELETE CASCADE
15869                                 DEFERRABLE INITIALLY DEFERRED,
15870         stream          INT     NOT NULL
15871                                 REFERENCES serial.stream (id)
15872                                 ON DELETE CASCADE
15873                                 DEFERRABLE INITIALLY DEFERRED,
15874         unit            INT     REFERENCES serial.unit (id)
15875                                 ON DELETE SET NULL
15876                                 DEFERRABLE INITIALLY DEFERRED,
15877         uri             INT     REFERENCES asset.uri (id)
15878                                 ON DELETE SET NULL
15879                                 DEFERRABLE INITIALLY DEFERRED,
15880         date_expected   TIMESTAMP WITH TIME ZONE,
15881         date_received   TIMESTAMP WITH TIME ZONE,
15882         status          TEXT    CONSTRAINT valid_status CHECK (
15883                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
15884                                'Expected', 'Not Held', 'Not Published', 'Received'))
15885                             DEFAULT 'Expected',
15886         shadowed        BOOL    NOT NULL DEFAULT FALSE
15887 );
15888 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
15889 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
15890 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
15891 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
15892 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
15893 CREATE INDEX serial_item_status_idx ON serial.item (status);
15894
15895 CREATE TABLE serial.item_note (
15896         id          SERIAL  PRIMARY KEY,
15897         item        INT     NOT NULL
15898                             REFERENCES serial.item (id)
15899                             ON DELETE CASCADE
15900                             DEFERRABLE INITIALLY DEFERRED,
15901         creator     INT     NOT NULL
15902                             REFERENCES actor.usr (id)
15903                             DEFERRABLE INITIALLY DEFERRED,
15904         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15905         pub         BOOL    NOT NULL    DEFAULT FALSE,
15906         title       TEXT    NOT NULL,
15907         value       TEXT    NOT NULL
15908 );
15909 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
15910
15911 CREATE TABLE serial.basic_summary (
15912         id                  SERIAL  PRIMARY KEY,
15913         distribution        INT     NOT NULL
15914                                     REFERENCES serial.distribution (id)
15915                                     ON DELETE CASCADE
15916                                     DEFERRABLE INITIALLY DEFERRED,
15917         generated_coverage  TEXT    NOT NULL,
15918         textual_holdings    TEXT,
15919         show_generated      BOOL    NOT NULL DEFAULT TRUE
15920 );
15921 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
15922
15923 CREATE TABLE serial.supplement_summary (
15924         id                  SERIAL  PRIMARY KEY,
15925         distribution        INT     NOT NULL
15926                                     REFERENCES serial.distribution (id)
15927                                     ON DELETE CASCADE
15928                                     DEFERRABLE INITIALLY DEFERRED,
15929         generated_coverage  TEXT    NOT NULL,
15930         textual_holdings    TEXT,
15931         show_generated      BOOL    NOT NULL DEFAULT TRUE
15932 );
15933 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
15934
15935 CREATE TABLE serial.index_summary (
15936         id                  SERIAL  PRIMARY KEY,
15937         distribution        INT     NOT NULL
15938                                     REFERENCES serial.distribution (id)
15939                                     ON DELETE CASCADE
15940                                     DEFERRABLE INITIALLY DEFERRED,
15941         generated_coverage  TEXT    NOT NULL,
15942         textual_holdings    TEXT,
15943         show_generated      BOOL    NOT NULL DEFAULT TRUE
15944 );
15945 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
15946
15947 -- 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.
15948
15949 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
15950 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15951
15952 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
15953 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;
15954
15955 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
15956 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15957
15958 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
15959 RETURNS INTEGER AS $$
15960 BEGIN
15961         RETURN EXTRACT( EPOCH FROM interval_val );
15962 END;
15963 $$ LANGUAGE plpgsql;
15964
15965 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
15966 RETURNS INTEGER AS $$
15967 BEGIN
15968         RETURN config.interval_to_seconds( interval_string::INTERVAL );
15969 END;
15970 $$ LANGUAGE plpgsql;
15971
15972 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
15973     'temp',
15974     oils_i18n_gettext(
15975         'temp',
15976         'Temporary bucket which gets deleted after use.',
15977         'cbrebt',
15978         'label'
15979     )
15980 );
15981
15982 -- 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.
15983
15984 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
15985 BEGIN
15986
15987     IF xml_is_well_formed(NEW.marc) THEN
15988         RETURN NEW;
15989     ELSE
15990         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
15991     END IF;
15992     
15993 END;
15994 $func$ LANGUAGE PLPGSQL;
15995
15996 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();
15997
15998 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();
15999
16000 ALTER TABLE serial.record_entry
16001         ALTER COLUMN marc DROP NOT NULL;
16002
16003 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
16004 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
16005 <xsl:stylesheet
16006     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
16007     xmlns:marc="http://www.loc.gov/MARC21/slim"
16008     version="1.0">
16009 <!--
16010 Copyright (C) 2010  Equinox Software, Inc.
16011 Galen Charlton <gmc@esilibrary.cOM.
16012
16013 This program is free software; you can redistribute it and/or
16014 modify it under the terms of the GNU General Public License
16015 as published by the Free Software Foundation; either version 2
16016 of the License, or (at your option) any later version.
16017
16018 This program is distributed in the hope that it will be useful,
16019 but WITHOUT ANY WARRANTY; without even the implied warranty of
16020 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16021 GNU General Public License for more details.
16022
16023 marc21_expand_880.xsl - stylesheet used during indexing to
16024                         map alternative graphical representations
16025                         of MARC fields stored in 880 fields
16026                         to the corresponding tag name and value.
16027
16028 For example, if a MARC record for a Chinese book has
16029
16030 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16031 880.00 $6 245-01/$1 $a八十三年短篇小說選
16032
16033 this stylesheet will transform it to the equivalent of
16034
16035 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
16036 245.00 $6 245-01/$1 $a八十三年短篇小說選
16037
16038 -->
16039     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
16040
16041     <xsl:template match="@*|node()">
16042         <xsl:copy>
16043             <xsl:apply-templates select="@*|node()"/>
16044         </xsl:copy>
16045     </xsl:template>
16046
16047     <xsl:template match="//marc:datafield[@tag='880']">
16048         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
16049             <marc:datafield>
16050                 <xsl:attribute name="tag">
16051                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
16052                 </xsl:attribute>
16053                 <xsl:attribute name="ind1">
16054                     <xsl:value-of select="@ind1" />
16055                 </xsl:attribute>
16056                 <xsl:attribute name="ind2">
16057                     <xsl:value-of select="@ind2" />
16058                 </xsl:attribute>
16059                 <xsl:apply-templates />
16060             </marc:datafield>
16061         </xsl:if>
16062     </xsl:template>
16063     
16064 </xsl:stylesheet>$$);
16065
16066 -- Splitting the ingest trigger up into little bits
16067
16068 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
16069     flag INTEGER PRIMARY KEY
16070 ) ON COMMIT DROP;
16071 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
16072
16073 -- cause failure if either of the tables we want to drop have rows
16074 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
16075 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
16076
16077 DROP TABLE IF EXISTS asset.copy_transparency_map;
16078 DROP TABLE IF EXISTS asset.copy_transparency;
16079
16080 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
16081
16082 -- We won't necessarily use all of these, but they are here for completeness.
16083 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
16084 -- Values are the EDI code value + 1000
16085
16086 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
16087 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
16088 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
16089 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
16090 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
16091 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
16092 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
16093 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
16094 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
16095 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
16096 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
16097 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
16098 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
16099 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
16100 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
16101 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
16102 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
16103 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
16104 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
16105 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
16106 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
16107 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
16108 ('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).'),
16109 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
16110 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
16111 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
16112 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
16113 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
16114 ('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.'),
16115 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
16116 ('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.'),
16117 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
16118 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
16119 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
16120 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
16121 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
16122 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
16123 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
16124 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
16125 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
16126 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
16127 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
16128 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
16129 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
16130 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
16131 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
16132 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
16133 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
16134 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
16135 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
16136 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
16137 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
16138 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
16139 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
16140 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
16141 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
16142 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
16143 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
16144 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
16145 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
16146 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
16147 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
16148 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
16149 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
16150 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
16151 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
16152 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
16153 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
16154 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
16155 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
16156 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
16157 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
16158 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
16159 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
16160 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
16161 ('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).'),
16162 ('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).'),
16163 ('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).'),
16164 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
16165 ('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).'),
16166 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
16167 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
16168 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
16169 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
16170 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
16171 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
16172 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
16173 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
16174 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
16175 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
16176 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
16177 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
16178 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
16179 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
16180 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
16181 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
16182 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
16183 ('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.'),
16184 ('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.'),
16185 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
16186 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
16187 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
16188 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
16189 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
16190 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
16191 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
16192 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
16193 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
16194 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
16195 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
16196 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
16197 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
16198 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
16199 ('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.'),
16200 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
16201 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
16202
16203 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
16204     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
16205  
16206 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
16207  
16208 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16209         'Remove Parenthesized Substring',
16210         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
16211         'remove_paren_substring',
16212         0
16213 );
16214
16215 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
16216         'Trim Surrounding Space',
16217         'Trim leading and trailing spaces from extracted text.',
16218         'btrim',
16219         0
16220 );
16221
16222 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16223     SELECT  m.id,
16224             i.id,
16225             -2
16226       FROM  config.metabib_field m,
16227             config.index_normalizer i
16228       WHERE i.func IN ('remove_paren_substring')
16229             AND m.id IN (26);
16230
16231 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
16232     SELECT  m.id,
16233             i.id,
16234             -1
16235       FROM  config.metabib_field m,
16236             config.index_normalizer i
16237       WHERE i.func IN ('btrim')
16238             AND m.id IN (26);
16239
16240 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
16241 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
16242 DECLARE
16243     dyn_profile     vandelay.compile_profile%ROWTYPE;
16244     replace_rule    TEXT;
16245     tmp_marc        TEXT;
16246     trgt_marc        TEXT;
16247     tmpl_marc        TEXT;
16248     match_count     INT;
16249 BEGIN
16250
16251     IF target_marc IS NULL OR template_marc IS NULL THEN
16252         -- RAISE NOTICE 'no marc for target or template record';
16253         RETURN NULL;
16254     END IF;
16255
16256     dyn_profile := vandelay.compile_profile( template_marc );
16257
16258     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
16259         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
16260         RETURN NULL;
16261     END IF;
16262
16263     IF dyn_profile.replace_rule <> '' THEN
16264         trgt_marc = target_marc;
16265         tmpl_marc = template_marc;
16266         replace_rule = dyn_profile.replace_rule;
16267     ELSE
16268         tmp_marc = target_marc;
16269         trgt_marc = template_marc;
16270         tmpl_marc = tmp_marc;
16271         replace_rule = dyn_profile.preserve_rule;
16272     END IF;
16273
16274     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
16275
16276 END;
16277 $$ LANGUAGE PLPGSQL;
16278
16279 -- Function to generate an ephemeral overlay template from an authority record
16280 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
16281
16282     use MARC::Record;
16283     use MARC::File::XML (BinaryEncoding => 'UTF-8');
16284
16285     my $xml = shift;
16286     my $r = MARC::Record->new_from_xml( $xml );
16287
16288     return undef unless ($r);
16289
16290     my $id = shift() || $r->subfield( '901' => 'c' );
16291     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
16292     return undef unless ($id); # We need an ID!
16293
16294     my $tmpl = MARC::Record->new();
16295
16296     my @rule_fields;
16297     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
16298
16299         my $tag = $field->tag;
16300         my $i1 = $field->indicator(1);
16301         my $i2 = $field->indicator(2);
16302         my $sf = join '', map { $_->[0] } $field->subfields;
16303         my @data = map { @$_ } $field->subfields;
16304
16305         my @replace_them;
16306
16307         # Map the authority field to bib fields it can control.
16308         if ($tag >= 100 and $tag <= 111) {       # names
16309             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
16310         } elsif ($tag eq '130') {                # uniform title
16311             @replace_them = qw/130 240 440 730 830/;
16312         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
16313             @replace_them = ($tag + 500);
16314         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
16315             @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/;
16316         } else {
16317             next;
16318         }
16319
16320         # Dummy up the bib-side data
16321         $tmpl->append_fields(
16322             map {
16323                 MARC::Field->new( $_, $i1, $i2, @data )
16324             } @replace_them
16325         );
16326
16327         # Construct some 'replace' rules
16328         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
16329     }
16330
16331     # Insert the replace rules into the template
16332     $tmpl->append_fields(
16333         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
16334     );
16335
16336     $xml = $tmpl->as_xml_record;
16337     $xml =~ s/^<\?.+?\?>$//mo;
16338     $xml =~ s/\n//sgo;
16339     $xml =~ s/>\s+</></sgo;
16340
16341     return $xml;
16342
16343 $func$ LANGUAGE PLPERLU;
16344
16345 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
16346     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
16347 $func$ LANGUAGE SQL;
16348
16349 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
16350     SELECT authority.generate_overlay_template( $1, NULL );
16351 $func$ LANGUAGE SQL;
16352
16353 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
16354 DELETE FROM config.metabib_field WHERE id = 26;
16355
16356 -- Making this a global_flag (UI accessible) instead of an internal_flag
16357 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16358     VALUES (
16359         'ingest.disable_authority_linking',
16360         oils_i18n_gettext(
16361             'ingest.disable_authority_linking',
16362             'Authority Automation: Disable bib-authority link tracking',
16363             'cgf', 
16364             'label'
16365         )
16366     );
16367 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
16368 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
16369
16370 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16371     VALUES (
16372         'ingest.disable_authority_auto_update',
16373         oils_i18n_gettext(
16374             'ingest.disable_authority_auto_update',
16375             'Authority Automation: Disable automatic authority updating (requires link tracking)',
16376             'cgf', 
16377             'label'
16378         )
16379     );
16380
16381 -- Enable automated ingest of authority records; just insert the row into
16382 -- authority.record_entry and authority.full_rec will automatically be populated
16383
16384 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
16385     UPDATE  biblio.record_entry
16386       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
16387       WHERE id = $2;
16388     SELECT $1;
16389 $func$ LANGUAGE SQL;
16390
16391 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
16392     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
16393 $func$ LANGUAGE SQL;
16394
16395 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
16396
16397 use MARC::Record;
16398 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16399
16400 my $xml = shift;
16401 my $r = MARC::Record->new_from_xml( $xml );
16402
16403 return_next( { tag => 'LDR', value => $r->leader } );
16404
16405 for my $f ( $r->fields ) {
16406     if ($f->is_control_field) {
16407         return_next({ tag => $f->tag, value => $f->data });
16408     } else {
16409         for my $s ($f->subfields) {
16410             return_next({
16411                 tag      => $f->tag,
16412                 ind1     => $f->indicator(1),
16413                 ind2     => $f->indicator(2),
16414                 subfield => $s->[0],
16415                 value    => $s->[1]
16416             });
16417
16418         }
16419     }
16420 }
16421
16422 return undef;
16423
16424 $func$ LANGUAGE PLPERLU;
16425
16426 CREATE OR REPLACE FUNCTION authority.flatten_marc ( rid BIGINT ) RETURNS SETOF authority.full_rec AS $func$
16427 DECLARE
16428     auth    authority.record_entry%ROWTYPE;
16429     output    authority.full_rec%ROWTYPE;
16430     field    RECORD;
16431 BEGIN
16432     SELECT INTO auth * FROM authority.record_entry WHERE id = rid;
16433
16434     FOR field IN SELECT * FROM authority.flatten_marc( auth.marc ) LOOP
16435         output.record := rid;
16436         output.ind1 := field.ind1;
16437         output.ind2 := field.ind2;
16438         output.tag := field.tag;
16439         output.subfield := field.subfield;
16440         IF field.subfield IS NOT NULL THEN
16441             output.value := naco_normalize(field.value, field.subfield);
16442         ELSE
16443             output.value := field.value;
16444         END IF;
16445
16446         CONTINUE WHEN output.value IS NULL;
16447
16448         RETURN NEXT output;
16449     END LOOP;
16450 END;
16451 $func$ LANGUAGE PLPGSQL;
16452
16453 -- authority.rec_descriptor appears to be unused currently
16454 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
16455 BEGIN
16456     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
16457 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
16458 --        SELECT  auth_id, ;
16459
16460     RETURN;
16461 END;
16462 $func$ LANGUAGE PLPGSQL;
16463
16464 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16465 BEGIN
16466     DELETE FROM authority.full_rec WHERE record = auth_id;
16467     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16468         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16469
16470     RETURN;
16471 END;
16472 $func$ LANGUAGE PLPGSQL;
16473
16474 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16475 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16476 BEGIN
16477
16478     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16479         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16480           -- Should remove matching $0 from controlled fields at the same time?
16481         RETURN NEW; -- and we're done
16482     END IF;
16483
16484     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16485         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16486
16487         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16488             RETURN NEW;
16489         END IF;
16490     END IF;
16491
16492     -- Flatten and insert the afr data
16493     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16494     IF NOT FOUND THEN
16495         PERFORM authority.reingest_authority_full_rec(NEW.id);
16496 -- authority.rec_descriptor is not currently used
16497 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16498 --        IF NOT FOUND THEN
16499 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16500 --        END IF;
16501     END IF;
16502
16503     RETURN NEW;
16504 END;
16505 $func$ LANGUAGE PLPGSQL;
16506
16507 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 ();
16508
16509 -- Some records manage to get XML namespace declarations into each element,
16510 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16511 -- This broke the old maintain_901(), so we'll make the regex more robust
16512
16513 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16514 BEGIN
16515     -- Remove any existing 901 fields before we insert the authoritative one
16516     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16517     IF TG_TABLE_SCHEMA = 'biblio' THEN
16518         NEW.marc := REGEXP_REPLACE(
16519             NEW.marc,
16520             E'(</(?:[^:]*?:)?record>)',
16521             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16522                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16523                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16524                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16525                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16526                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16527                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16528              E'</datafield>\\1'
16529         );
16530     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16531         NEW.marc := REGEXP_REPLACE(
16532             NEW.marc,
16533             E'(</(?:[^:]*?:)?record>)',
16534             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16535                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16536                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16537              E'</datafield>\\1'
16538         );
16539     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16540         NEW.marc := REGEXP_REPLACE(
16541             NEW.marc,
16542             E'(</(?:[^:]*?:)?record>)',
16543             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16544                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16545                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16546                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16547                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16548              E'</datafield>\\1'
16549         );
16550     ELSE
16551         NEW.marc := REGEXP_REPLACE(
16552             NEW.marc,
16553             E'(</(?:[^:]*?:)?record>)',
16554             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16555                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16556                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16557              E'</datafield>\\1'
16558         );
16559     END IF;
16560
16561     RETURN NEW;
16562 END;
16563 $func$ LANGUAGE PLPGSQL;
16564
16565 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16566 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16567 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16568  
16569 -- In booking, elbow room defines:
16570 --  a) how far in the future you must make a reservation on a given item if
16571 --      that item will have to transit somewhere to fulfill the reservation.
16572 --  b) how soon a reservation must be starting for the reserved item to
16573 --      be op-captured by the checkin interface.
16574
16575 -- We don't want to clobber any default_elbow room at any level:
16576
16577 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16578 DECLARE
16579     existing    actor.org_unit_setting%ROWTYPE;
16580 BEGIN
16581     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16582     IF NOT FOUND THEN
16583         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16584             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16585             'circ.booking_reservation.default_elbow_room',
16586             '"1 day"'
16587         );
16588         RETURN 1;
16589     END IF;
16590     RETURN 0;
16591 END;
16592 $$ LANGUAGE plpgsql;
16593
16594 SELECT pg_temp.default_elbow();
16595
16596 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16597
16598 -- returns the distinct set of target copy IDs from a user's visible circulation history
16599 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16600     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16601 $$ LANGUAGE SQL;
16602
16603 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16604 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16605 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16606 ALTER TABLE action.hold_copy_map DROP CONSTRAINT hold_copy_map_target_copy_fkey;
16607
16608 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16609
16610 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16611 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16612
16613 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16614     VALUES (
16615         'cat.maintain_control_numbers',
16616         oils_i18n_gettext(
16617             'cat.maintain_control_numbers',
16618             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16619             'cgf', 
16620             'label'
16621         )
16622     );
16623
16624 INSERT INTO config.global_flag (name, label, enabled)
16625     VALUES (
16626         'circ.holds.empty_issuance_ok',
16627         oils_i18n_gettext(
16628             'circ.holds.empty_issuance_ok',
16629             'Holds: Allow holds on empty issuances',
16630             'cgf',
16631             'label'
16632         ),
16633         TRUE
16634     );
16635
16636 INSERT INTO config.global_flag (name, label, enabled)
16637     VALUES (
16638         'circ.holds.usr_not_requestor',
16639         oils_i18n_gettext(
16640             'circ.holds.usr_not_requestor',
16641             'Holds: When testing hold matrix matchpoints, use the profile group of the receiving user instead of that of the requestor (affects staff-placed holds)',
16642             'cgf',
16643             'label'
16644         ),
16645         TRUE
16646     );
16647
16648 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16649 use strict;
16650 use MARC::Record;
16651 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16652 use Encode;
16653 use Unicode::Normalize;
16654
16655 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16656 my $schema = $_TD->{table_schema};
16657 my $rec_id = $_TD->{new}{id};
16658
16659 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16660 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16661 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16662     return;
16663 }
16664
16665 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16666 my $ou_cni = 'EVRGRN';
16667
16668 my $owner;
16669 if ($schema eq 'serial') {
16670     $owner = $_TD->{new}{owning_lib};
16671 } else {
16672     # are.owner and bre.owner can be null, so fall back to the consortial setting
16673     $owner = $_TD->{new}{owner} || 1;
16674 }
16675
16676 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16677 if ($ous_rv->{processed}) {
16678     $ou_cni = $ous_rv->{rows}[0]->{value};
16679     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16680 } else {
16681     # Fall back to the shortname of the OU if there was no OU setting
16682     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16683     if ($ous_rv->{processed}) {
16684         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16685     }
16686 }
16687
16688 my ($create, $munge) = (0, 0);
16689 my ($orig_001, $orig_003) = ('', '');
16690
16691 # Incoming MARC records may have multiple 001s or 003s, despite the spec
16692 my @control_ids = $record->field('003');
16693 my @scns = $record->field('035');
16694
16695 foreach my $id_field ('001', '003') {
16696     my $spec_value;
16697     my @controls = $record->field($id_field);
16698
16699     if ($id_field eq '001') {
16700         $spec_value = $rec_id;
16701     } else {
16702         $spec_value = $ou_cni;
16703     }
16704
16705     # Create the 001/003 if none exist
16706     if (scalar(@controls) == 0) {
16707         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
16708         $create = 1;
16709     } elsif (scalar(@controls) > 1) {
16710         # Do we already have the right 001/003 value in the existing set?
16711         unless (grep $_->data() eq $spec_value, @controls) {
16712             $munge = 1;
16713         }
16714
16715         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
16716         foreach my $control (@controls) {
16717             unless ($control->data() eq $spec_value) {
16718                 $record->delete_field($control);
16719             }
16720         }
16721     } else {
16722         # Only one field; check to see if we need to munge it
16723         unless (grep $_->data() eq $spec_value, @controls) {
16724             $munge = 1;
16725         }
16726     }
16727 }
16728
16729 # Now, if we need to munge the 001, we will first push the existing 001/003 into the 035
16730 if ($munge) {
16731     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
16732
16733     # Do not create duplicate 035 fields
16734     unless (grep $_->subfield('a') eq $scn, @scns) {
16735         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
16736     }
16737 }
16738
16739 # Set the 001/003 and update the MARC
16740 if ($create or $munge) {
16741     $record->field('001')->data($rec_id);
16742     $record->field('003')->data($ou_cni);
16743
16744     my $xml = $record->as_xml_record();
16745     $xml =~ s/\n//sgo;
16746     $xml =~ s/^<\?xml.+\?\s*>//go;
16747     $xml =~ s/>\s+</></go;
16748     $xml =~ s/\p{Cc}//go;
16749
16750     # Embed a version of OpenILS::Application::AppUtils->entityize()
16751     # to avoid having to set PERL5LIB for PostgreSQL as well
16752
16753     # If we are going to convert non-ASCII characters to XML entities,
16754     # we had better be dealing with a UTF8 string to begin with
16755     $xml = decode_utf8($xml);
16756
16757     $xml = NFC($xml);
16758
16759     # Convert raw ampersands to entities
16760     $xml =~ s/&(?!\S+;)/&amp;/gso;
16761
16762     # Convert Unicode characters to entities
16763     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
16764
16765     $xml =~ s/[\x00-\x1f]//go;
16766     $_TD->{new}{marc} = $xml;
16767
16768     return "MODIFY";
16769 }
16770
16771 return;
16772 $func$ LANGUAGE PLPERLU;
16773
16774 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16775 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16776 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16777
16778 INSERT INTO metabib.facet_entry (source, field, value)
16779     SELECT source, field, value FROM (
16780         SELECT * FROM metabib.author_field_entry
16781             UNION ALL
16782         SELECT * FROM metabib.keyword_field_entry
16783             UNION ALL
16784         SELECT * FROM metabib.identifier_field_entry
16785             UNION ALL
16786         SELECT * FROM metabib.title_field_entry
16787             UNION ALL
16788         SELECT * FROM metabib.subject_field_entry
16789             UNION ALL
16790         SELECT * FROM metabib.series_field_entry
16791         )x
16792     WHERE x.index_vector = '';
16793         
16794 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
16795 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
16796 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
16797 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
16798 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
16799 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
16800
16801 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
16802 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
16803 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
16804
16805 -- copy OPAC visibility materialized view
16806 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
16807
16808     TRUNCATE TABLE asset.opac_visible_copies;
16809
16810     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16811     SELECT  cp.id, cp.circ_lib, cn.record
16812     FROM  asset.copy cp
16813         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16814         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16815         JOIN asset.copy_location cl ON (cp.location = cl.id)
16816         JOIN config.copy_status cs ON (cp.status = cs.id)
16817         JOIN biblio.record_entry b ON (cn.record = b.id)
16818     WHERE NOT cp.deleted
16819         AND NOT cn.deleted
16820         AND NOT b.deleted
16821         AND cs.opac_visible
16822         AND cl.opac_visible
16823         AND cp.opac_visible
16824         AND a.opac_visible;
16825
16826 $$ LANGUAGE SQL;
16827 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
16828 Rebuild the copy OPAC visibility cache.  Useful during migrations.
16829 $$;
16830
16831 -- and actually populate the table
16832 SELECT asset.refresh_opac_visible_copies_mat_view();
16833
16834 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
16835 DECLARE
16836     add_query       TEXT;
16837     remove_query    TEXT;
16838     do_add          BOOLEAN := false;
16839     do_remove       BOOLEAN := false;
16840 BEGIN
16841     add_query := $$
16842             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16843                 SELECT  cp.id, cp.circ_lib, cn.record
16844                   FROM  asset.copy cp
16845                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16846                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16847                         JOIN asset.copy_location cl ON (cp.location = cl.id)
16848                         JOIN config.copy_status cs ON (cp.status = cs.id)
16849                         JOIN biblio.record_entry b ON (cn.record = b.id)
16850                   WHERE NOT cp.deleted
16851                         AND NOT cn.deleted
16852                         AND NOT b.deleted
16853                         AND cs.opac_visible
16854                         AND cl.opac_visible
16855                         AND cp.opac_visible
16856                         AND a.opac_visible
16857     $$;
16858  
16859     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
16860
16861     IF TG_OP = 'INSERT' THEN
16862
16863         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16864             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16865             EXECUTE add_query;
16866         END IF;
16867
16868         RETURN NEW;
16869
16870     END IF;
16871
16872     -- handle items first, since with circulation activity
16873     -- their statuses change frequently
16874     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16875
16876         IF OLD.location    <> NEW.location OR
16877            OLD.call_number <> NEW.call_number OR
16878            OLD.status      <> NEW.status OR
16879            OLD.circ_lib    <> NEW.circ_lib THEN
16880             -- any of these could change visibility, but
16881             -- we'll save some queries and not try to calculate
16882             -- the change directly
16883             do_remove := true;
16884             do_add := true;
16885         ELSE
16886
16887             IF OLD.deleted <> NEW.deleted THEN
16888                 IF NEW.deleted THEN
16889                     do_remove := true;
16890                 ELSE
16891                     do_add := true;
16892                 END IF;
16893             END IF;
16894
16895             IF OLD.opac_visible <> NEW.opac_visible THEN
16896                 IF OLD.opac_visible THEN
16897                     do_remove := true;
16898                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
16899                                         -- is also marked opac_visible
16900                     do_add := true;
16901                 END IF;
16902             END IF;
16903
16904         END IF;
16905
16906         IF do_remove THEN
16907             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
16908         END IF;
16909         IF do_add THEN
16910             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16911             EXECUTE add_query;
16912         END IF;
16913
16914         RETURN NEW;
16915
16916     END IF;
16917
16918     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
16919  
16920         IF OLD.deleted AND NEW.deleted THEN -- do nothing
16921
16922             RETURN NEW;
16923  
16924         ELSIF NEW.deleted THEN -- remove rows
16925  
16926             IF TG_TABLE_NAME = 'call_number' THEN
16927                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
16928             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16929                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
16930             END IF;
16931  
16932             RETURN NEW;
16933  
16934         ELSIF OLD.deleted THEN -- add rows
16935  
16936             IF TG_TABLE_NAME IN ('copy','unit') THEN
16937                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16938             ELSIF TG_TABLE_NAME = 'call_number' THEN
16939                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16940             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16941                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
16942             END IF;
16943  
16944             EXECUTE add_query;
16945             RETURN NEW;
16946  
16947         END IF;
16948  
16949     END IF;
16950
16951     IF TG_TABLE_NAME = 'call_number' THEN
16952
16953         IF OLD.record <> NEW.record THEN
16954             -- call number is linked to different bib
16955             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
16956             EXECUTE remove_query;
16957             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16958             EXECUTE add_query;
16959         END IF;
16960
16961         RETURN NEW;
16962
16963     END IF;
16964
16965     IF TG_TABLE_NAME IN ('record_entry') THEN
16966         RETURN NEW; -- don't have 'opac_visible'
16967     END IF;
16968
16969     -- actor.org_unit, asset.copy_location, asset.copy_status
16970     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
16971
16972         RETURN NEW;
16973
16974     ELSIF NEW.opac_visible THEN -- add rows
16975
16976         IF TG_TABLE_NAME = 'org_unit' THEN
16977             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
16978         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16979             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
16980         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16981             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
16982         END IF;
16983  
16984         EXECUTE add_query;
16985  
16986     ELSE -- delete rows
16987
16988         IF TG_TABLE_NAME = 'org_unit' THEN
16989             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
16990         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16991             remove_query := remove_query || 'location = ' || NEW.id || ');';
16992         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16993             remove_query := remove_query || 'status = ' || NEW.id || ');';
16994         END IF;
16995  
16996         EXECUTE remove_query;
16997  
16998     END IF;
16999  
17000     RETURN NEW;
17001 END;
17002 $func$ LANGUAGE PLPGSQL;
17003 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
17004 Trigger function to update the copy OPAC visiblity cache.
17005 $$;
17006 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();
17007 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17008 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();
17009 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();
17010 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
17011 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();
17012 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();
17013
17014 -- must create this rule explicitly; it is not inherited from asset.copy
17015 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;
17016
17017 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);
17018
17019 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
17020 DECLARE
17021     moved_objects INT := 0;
17022     bib_id        INT := 0;
17023     bib_rec       biblio.record_entry%ROWTYPE;
17024     auth_link     authority.bib_linking%ROWTYPE;
17025 BEGIN
17026
17027     -- 1. Make source_record MARC a copy of the target_record to get auto-sync in linked bib records
17028     UPDATE authority.record_entry
17029       SET marc = (
17030         SELECT marc
17031           FROM authority.record_entry
17032           WHERE id = target_record
17033       )
17034       WHERE id = source_record;
17035
17036     -- 2. Update all bib records with the ID from target_record in their $0
17037     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre 
17038       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
17039       WHERE abl.authority = target_record LOOP
17040
17041         UPDATE biblio.record_entry
17042           SET marc = REGEXP_REPLACE(marc, 
17043             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
17044             E'\\1' || target_record || '<', 'g')
17045           WHERE id = bib_rec.id;
17046
17047           moved_objects := moved_objects + 1;
17048     END LOOP;
17049
17050     -- 3. "Delete" source_record
17051     DELETE FROM authority.record_entry
17052       WHERE id = source_record;
17053
17054     RETURN moved_objects;
17055 END;
17056 $func$ LANGUAGE plpgsql;
17057
17058 -- serial.record_entry already had an owner column spelled "owning_lib"
17059 -- Adjust the table and affected functions accordingly
17060
17061 ALTER TABLE serial.record_entry DROP COLUMN owner;
17062
17063 CREATE TABLE actor.usr_saved_search (
17064     id              SERIAL          PRIMARY KEY,
17065         owner           INT             NOT NULL REFERENCES actor.usr (id)
17066                                         ON DELETE CASCADE
17067                                         DEFERRABLE INITIALLY DEFERRED,
17068         name            TEXT            NOT NULL,
17069         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
17070         query_text      TEXT            NOT NULL,
17071         query_type      TEXT            NOT NULL
17072                                         CONSTRAINT valid_query_text CHECK (
17073                                         query_type IN ( 'URL' )) DEFAULT 'URL',
17074                                         -- we may add other types someday
17075         target          TEXT            NOT NULL
17076                                         CONSTRAINT valid_target CHECK (
17077                                         target IN ( 'record', 'metarecord', 'callnumber' )),
17078         CONSTRAINT name_once_per_user UNIQUE (owner, name)
17079 );
17080
17081 -- Apply Dan Wells' changes to the serial schema, from the
17082 -- seials-integration branch
17083
17084 CREATE TABLE serial.subscription_note (
17085         id           SERIAL PRIMARY KEY,
17086         subscription INT    NOT NULL
17087                             REFERENCES serial.subscription (id)
17088                             ON DELETE CASCADE
17089                             DEFERRABLE INITIALLY DEFERRED,
17090         creator      INT    NOT NULL
17091                             REFERENCES actor.usr (id)
17092                             DEFERRABLE INITIALLY DEFERRED,
17093         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17094         pub          BOOL   NOT NULL DEFAULT FALSE,
17095         title        TEXT   NOT NULL,
17096         value        TEXT   NOT NULL
17097 );
17098 CREATE INDEX serial_subscription_note_sub_idx ON serial.subscription_note (subscription);
17099
17100 CREATE TABLE serial.distribution_note (
17101         id           SERIAL PRIMARY KEY,
17102         distribution INT    NOT NULL
17103                             REFERENCES serial.distribution (id)
17104                             ON DELETE CASCADE
17105                             DEFERRABLE INITIALLY DEFERRED,
17106         creator      INT    NOT NULL
17107                             REFERENCES actor.usr (id)
17108                             DEFERRABLE INITIALLY DEFERRED,
17109         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
17110         pub          BOOL   NOT NULL DEFAULT FALSE,
17111         title        TEXT   NOT NULL,
17112         value        TEXT   NOT NULL
17113 );
17114 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
17115
17116 ------- Begin surgery on serial.unit
17117
17118 ALTER TABLE serial.unit
17119         DROP COLUMN label;
17120
17121 ALTER TABLE serial.unit
17122         RENAME COLUMN label_sort_key TO sort_key;
17123
17124 ALTER TABLE serial.unit
17125         RENAME COLUMN contents TO detailed_contents;
17126
17127 ALTER TABLE serial.unit
17128         ADD COLUMN summary_contents TEXT;
17129
17130 UPDATE serial.unit
17131 SET summary_contents = detailed_contents;
17132
17133 ALTER TABLE serial.unit
17134         ALTER column summary_contents SET NOT NULL;
17135
17136 ------- End surgery on serial.unit
17137
17138 -- 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' );
17139
17140 -- Now rebuild the constraints dropped via cascade.
17141 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
17142 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
17143 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
17144
17145 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
17146
17147 DELETE FROM config.metabib_field_index_norm_map
17148     WHERE norm IN (
17149         SELECT id 
17150             FROM config.index_normalizer
17151             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
17152     )
17153     AND field = 18
17154 ;
17155
17156 -- We won't necessarily use all of these, but they are here for completeness.
17157 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
17158 -- Values are the EDI code value + 1200
17159
17160 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
17161 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
17162 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
17163 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
17164 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
17165 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
17166 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
17167 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
17168 (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.'),
17169 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
17170 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
17171 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
17172 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
17173 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
17174 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
17175 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
17176 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
17177 (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.'),
17178 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
17179 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
17180 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
17181 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
17182 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
17183 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
17184 (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.'),
17185 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
17186 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
17187 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
17188 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
17189 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
17190 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
17191 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
17192 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
17193 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
17194 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
17195 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
17196 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
17197 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
17198 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
17199 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
17200 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
17201 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
17202 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
17203 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
17204 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
17205 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
17206 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
17207 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
17208 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
17209 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
17210 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
17211 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
17212 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
17213 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
17214 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
17215 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
17216 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
17217 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
17218 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
17219 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
17220 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
17221 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
17222 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
17223 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
17224 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
17225 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
17226 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
17227 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
17228 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
17229 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
17230 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
17231 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
17232 (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.'),
17233 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
17234 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
17235 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
17236 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
17237 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
17238 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
17239 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
17240 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
17241 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
17242 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
17243 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
17244 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
17245 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
17246 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
17247 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
17248 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
17249 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
17250 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
17251 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
17252 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
17253 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
17254 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
17255 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
17256 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
17257 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
17258 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
17259 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
17260 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
17261 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
17262 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
17263 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
17264 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
17265 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
17266 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
17267 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
17268 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
17269 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
17270 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
17271 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
17272 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
17273 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
17274 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
17275 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
17276 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
17277 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
17278 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
17279 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
17280 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
17281 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
17282 (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.'),
17283 (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.'),
17284 (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.'),
17285 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
17286 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
17287 (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.'),
17288 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
17289 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
17290 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
17291 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
17292 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
17293 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
17294 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
17295 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
17296 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
17297 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
17298 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
17299 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
17300 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
17301 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
17302 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
17303 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
17304 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
17305 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
17306 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
17307 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
17308 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
17309 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
17310 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
17311 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
17312 (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.'),
17313 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
17314 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
17315 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
17316 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
17317 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
17318 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
17319 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
17320 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
17321 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
17322 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
17323 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
17324 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
17325 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
17326 (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.'),
17327 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
17328 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
17329 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
17330 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
17331 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
17332 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
17333 (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.'),
17334 (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.'),
17335 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
17336 (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.'),
17337 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
17338 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
17339 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
17340 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
17341 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
17342 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
17343 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
17344 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
17345 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
17346 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
17347 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
17348 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
17349 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
17350 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
17351 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
17352 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
17353 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
17354 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
17355 (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.'),
17356 (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.'),
17357 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
17358 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
17359 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
17360 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
17361 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
17362 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
17363 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
17364 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
17365 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
17366 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
17367 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
17368 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
17369 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
17370 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
17371 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
17372 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
17373 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
17374 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
17375 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
17376 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
17377 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
17378 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
17379 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
17380 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
17381 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
17382 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
17383 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
17384 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
17385 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
17386 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
17387 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
17388 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
17389 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
17390 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
17391 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
17392 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
17393 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
17394 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
17395 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
17396 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
17397 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
17398 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
17399 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
17400 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
17401 (1, 't', 1442, 'Number of months', 'The number of months.'),
17402 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
17403 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
17404 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
17405 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
17406 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
17407 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
17408 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
17409 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
17410 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
17411 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
17412 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
17413 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
17414 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
17415 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
17416 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
17417 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
17418 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
17419 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
17420 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
17421 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
17422 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
17423 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
17424 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
17425 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
17426 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
17427 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
17428 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
17429 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
17430 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
17431 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
17432 (1, 't', 1473, 'Agents', 'The number of agents.'),
17433 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
17434 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
17435 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
17436 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
17437 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
17438 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
17439 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
17440 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
17441 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
17442 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
17443 (1, 't', 1484, 'Departments', 'The number of departments.'),
17444 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
17445 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
17446 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
17447 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
17448 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
17449 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
17450 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
17451 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
17452 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
17453 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
17454 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
17455 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
17456 (1, 't', 1497, 'Executives', 'The number of executives.'),
17457 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
17458 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
17459 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
17460 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
17461 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
17462 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
17463 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
17464 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
17465 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
17466 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
17467 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
17468 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
17469 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
17470 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
17471 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17472 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17473 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17474 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17475 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17476 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17477 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17478 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17479 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17480 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17481 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17482 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17483 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17484 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17485 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17486 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17487 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17488 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17489 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17490 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17491 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17492 (1, 't', 1533, 'Seats',        'The number of seats.'),
17493 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17494 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17495 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17496 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17497 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17498 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17499 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17500 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17501 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17502 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17503 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17504 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17505 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17506 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17507 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17508 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17509 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17510 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17511 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17512 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17513 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17514 (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.'),
17515 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17516 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17517 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17518 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17519 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17520 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17521 (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.'),
17522 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17523 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17524 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17525 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17526 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17527 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17528 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17529 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17530 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17531 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17532 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17533 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17534 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17535 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17536 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17537 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17538 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17539 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17540 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17541 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17542 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17543 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17544 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17545 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17546 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17547 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17548 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17549 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17550 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17551 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17552 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17553 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17554 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17555 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17556 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17557 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17558 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17559 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17560 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17561 (1, 't', 1602, 'Patients',         'Number of patients.'),
17562 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17563 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17564 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17565 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17566 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17567 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17568 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17569 (1, 't', 1610, 'Operators',        'Number of operators.'),
17570 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17571 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17572 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17573 (1, 't', 1614, 'Machines',         'Number of machines.'),
17574 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17575 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17576 (1, 't', 1617, 'Directors',        'Number of directors.'),
17577 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17578 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17579 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17580 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17581 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17582 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17583 (1, 't', 1624, 'Beds', 'Number of beds.'),
17584 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17585 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17586 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17587 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17588 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17589 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17590 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17591 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17592 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17593 (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.'),
17594 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17595 (1, 't', 1636, 'Professor', 'The number of professors.'),
17596 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17597 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17598 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17599 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17600 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17601 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17602 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17603 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17604 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17605 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17606 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17607 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17608 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17609 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17610 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17611 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17612 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17613 (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.'),
17614 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17615 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17616 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17617 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17618 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17619 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17620 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17621 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17622 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17623 (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.'),
17624 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17625 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17626 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17627 (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.'),
17628 (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.'),
17629 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17630 (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.'),
17631 (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.'),
17632 (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.'),
17633 (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.'),
17634 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17635 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17636 (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.'),
17637 (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.'),
17638 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17639 (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.'),
17640 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17641 (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.'),
17642 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17643 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17644 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17645 (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).'),
17646 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17647 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17648 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17649 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17650 ;
17651 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17652
17653 CREATE TABLE acq.serial_claim (
17654     id     SERIAL           PRIMARY KEY,
17655     type   INT              NOT NULL REFERENCES acq.claim_type
17656                                      DEFERRABLE INITIALLY DEFERRED,
17657     item    BIGINT          NOT NULL REFERENCES serial.item
17658                                      DEFERRABLE INITIALLY DEFERRED
17659 );
17660
17661 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17662
17663 CREATE TABLE acq.serial_claim_event (
17664     id             BIGSERIAL        PRIMARY KEY,
17665     type           INT              NOT NULL REFERENCES acq.claim_event_type
17666                                              DEFERRABLE INITIALLY DEFERRED,
17667     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17668                                              DEFERRABLE INITIALLY DEFERRED,
17669     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17670     creator        INT              NOT NULL REFERENCES actor.usr
17671                                              DEFERRABLE INITIALLY DEFERRED,
17672     note           TEXT
17673 );
17674
17675 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
17676
17677 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
17678
17679 -- now what about the auditor.*_lifecycle views??
17680
17681 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17682     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
17683 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17684     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
17685 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
17686 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
17687
17688 CREATE TABLE asset.call_number_class (
17689     id             bigserial     PRIMARY KEY,
17690     name           TEXT          NOT NULL,
17691     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
17692     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17693 );
17694
17695 COMMENT ON TABLE asset.call_number_class IS $$
17696 Defines the call number normalization database functions in the "normalizer"
17697 column and the tag/subfield combinations to use to lookup the call number in
17698 the "field" column for a given classification scheme. Tag/subfield combinations
17699 are delimited by commas.
17700 $$;
17701
17702 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
17703     ('Generic', 'asset.label_normalizer_generic'),
17704     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
17705     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
17706 ;
17707
17708 -- Generic fields
17709 UPDATE asset.call_number_class
17710     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17711     WHERE id = 1
17712 ;
17713
17714 -- Dewey fields
17715 UPDATE asset.call_number_class
17716     SET field = '080ab,082ab'
17717     WHERE id = 2
17718 ;
17719
17720 -- LC fields
17721 UPDATE asset.call_number_class
17722     SET field = '050ab,055ab'
17723     WHERE id = 3
17724 ;
17725  
17726 ALTER TABLE asset.call_number
17727         ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL
17728                 REFERENCES asset.call_number_class(id)
17729                 DEFERRABLE INITIALLY DEFERRED;
17730
17731 ALTER TABLE asset.call_number
17732         ADD COLUMN label_sortkey TEXT;
17733
17734 CREATE INDEX asset_call_number_label_sortkey
17735         ON asset.call_number(label_sortkey);
17736
17737 ALTER TABLE auditor.asset_call_number_history
17738         ADD COLUMN label_class BIGINT;
17739
17740 ALTER TABLE auditor.asset_call_number_history
17741         ADD COLUMN label_sortkey TEXT;
17742
17743 -- Pick up the new columns in dependent views
17744
17745 DROP VIEW auditor.asset_call_number_lifecycle;
17746
17747 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17748
17749 DROP VIEW auditor.asset_call_number_lifecycle;
17750
17751 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17752
17753 DROP VIEW IF EXISTS stats.fleshed_call_number;
17754
17755 CREATE VIEW stats.fleshed_call_number AS
17756         SELECT  cn.*,
17757             CAST(cn.create_date AS DATE) AS create_date_day,
17758         CAST(cn.edit_date AS DATE) AS edit_date_day,
17759         DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
17760         DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
17761             rd.item_lang,
17762                 rd.item_type,
17763                 rd.item_form
17764         FROM    asset.call_number cn
17765                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
17766
17767 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
17768 DECLARE
17769     sortkey        TEXT := '';
17770 BEGIN
17771     sortkey := NEW.label_sortkey;
17772
17773     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
17774        quote_literal( NEW.label ) || ')'
17775        FROM asset.call_number_class acnc
17776        WHERE acnc.id = NEW.label_class
17777        INTO sortkey;
17778
17779     NEW.label_sortkey = sortkey;
17780
17781     RETURN NEW;
17782 END;
17783 $func$ LANGUAGE PLPGSQL;
17784
17785 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
17786     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
17787     # thus could probably be considered a derived work, although nothing was
17788     # directly copied - but to err on the safe side of providing attribution:
17789     # Copyright (C) 2007 LibLime
17790     # Licensed under the GPL v2 or later
17791
17792     use strict;
17793     use warnings;
17794
17795     # Converts the callnumber to uppercase
17796     # Strips spaces from start and end of the call number
17797     # Converts anything other than letters, digits, and periods into underscores
17798     # Collapses multiple underscores into a single underscore
17799     my $callnum = uc(shift);
17800     $callnum =~ s/^\s//g;
17801     $callnum =~ s/\s$//g;
17802     $callnum =~ s/[^A-Z0-9_.]/_/g;
17803     $callnum =~ s/_{2,}/_/g;
17804
17805     return $callnum;
17806 $func$ LANGUAGE PLPERLU;
17807
17808 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
17809     # Derived from the Koha C4::ClassSortRoutine::Dewey module
17810     # Copyright (C) 2007 LibLime
17811     # Licensed under the GPL v2 or later
17812
17813     use strict;
17814     use warnings;
17815
17816     my $init = uc(shift);
17817     $init =~ s/^\s+//;
17818     $init =~ s/\s+$//;
17819     $init =~ s!/!!g;
17820     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
17821     my @tokens = split /\.|\s+/, $init;
17822     my $digit_group_count = 0;
17823     for (my $i = 0; $i <= $#tokens; $i++) {
17824         if ($tokens[$i] =~ /^\d+$/) {
17825             $digit_group_count++;
17826             if (2 == $digit_group_count) {
17827                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
17828                 $tokens[$i] =~ tr/ /0/;
17829             }
17830         }
17831     }
17832     my $key = join("_", @tokens);
17833     $key =~ s/[^\p{IsAlnum}_]//g;
17834
17835     return $key;
17836
17837 $func$ LANGUAGE PLPERLU;
17838
17839 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
17840     use strict;
17841     use warnings;
17842
17843     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
17844     # The author hopes to upload it to CPAN some day, which would make our lives easier
17845     use Library::CallNumber::LC;
17846
17847     my $callnum = Library::CallNumber::LC->new(shift);
17848     return $callnum->normalize();
17849
17850 $func$ LANGUAGE PLPERLU;
17851
17852 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$
17853 DECLARE
17854     ans RECORD;
17855     trans INT;
17856 BEGIN
17857     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;
17858
17859     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
17860         RETURN QUERY
17861         SELECT  ans.depth,
17862                 ans.id,
17863                 COUNT( av.id ),
17864                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17865                 COUNT( av.id ),
17866                 trans
17867           FROM
17868                 actor.org_unit_descendants(ans.id) d
17869                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17870                 JOIN asset.copy cp ON (cp.id = av.id)
17871           GROUP BY 1,2,6;
17872
17873         IF NOT FOUND THEN
17874             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17875         END IF;
17876
17877     END LOOP;
17878
17879     RETURN;
17880 END;
17881 $f$ LANGUAGE PLPGSQL;
17882
17883 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$
17884 DECLARE
17885     ans RECORD;
17886     trans INT;
17887 BEGIN
17888     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;
17889
17890     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17891         RETURN QUERY
17892         SELECT  -1,
17893                 ans.id,
17894                 COUNT( av.id ),
17895                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17896                 COUNT( av.id ),
17897                 trans
17898           FROM
17899                 actor.org_unit_descendants(ans.id) d
17900                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17901                 JOIN asset.copy cp ON (cp.id = av.id)
17902           GROUP BY 1,2,6;
17903
17904         IF NOT FOUND THEN
17905             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17906         END IF;
17907
17908     END LOOP;
17909
17910     RETURN;
17911 END;
17912 $f$ LANGUAGE PLPGSQL;
17913
17914 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$
17915 DECLARE
17916     ans RECORD;
17917     trans INT;
17918 BEGIN
17919     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;
17920
17921     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
17922         RETURN QUERY
17923         SELECT  ans.depth,
17924                 ans.id,
17925                 COUNT( cp.id ),
17926                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17927                 COUNT( cp.id ),
17928                 trans
17929           FROM
17930                 actor.org_unit_descendants(ans.id) d
17931                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17932                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17933           GROUP BY 1,2,6;
17934
17935         IF NOT FOUND THEN
17936             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17937         END IF;
17938
17939     END LOOP;
17940
17941     RETURN;
17942 END;
17943 $f$ LANGUAGE PLPGSQL;
17944
17945 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$
17946 DECLARE
17947     ans RECORD;
17948     trans INT;
17949 BEGIN
17950     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;
17951
17952     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17953         RETURN QUERY
17954         SELECT  -1,
17955                 ans.id,
17956                 COUNT( cp.id ),
17957                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17958                 COUNT( cp.id ),
17959                 trans
17960           FROM
17961                 actor.org_unit_descendants(ans.id) d
17962                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17963                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17964           GROUP BY 1,2,6;
17965
17966         IF NOT FOUND THEN
17967             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17968         END IF;
17969
17970     END LOOP;
17971
17972     RETURN;
17973 END;
17974 $f$ LANGUAGE PLPGSQL;
17975
17976 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$
17977 BEGIN
17978     IF staff IS TRUE THEN
17979         IF place > 0 THEN
17980             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
17981         ELSE
17982             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
17983         END IF;
17984     ELSE
17985         IF place > 0 THEN
17986             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
17987         ELSE
17988             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
17989         END IF;
17990     END IF;
17991
17992     RETURN;
17993 END;
17994 $f$ LANGUAGE PLPGSQL;
17995
17996 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$
17997 DECLARE
17998     ans RECORD;
17999     trans INT;
18000 BEGIN
18001     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;
18002
18003     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
18004         RETURN QUERY
18005         SELECT  ans.depth,
18006                 ans.id,
18007                 COUNT( av.id ),
18008                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18009                 COUNT( av.id ),
18010                 trans
18011           FROM
18012                 actor.org_unit_descendants(ans.id) d
18013                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18014                 JOIN asset.copy cp ON (cp.id = av.id)
18015                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18016           GROUP BY 1,2,6;
18017
18018         IF NOT FOUND THEN
18019             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18020         END IF;
18021
18022     END LOOP;
18023
18024     RETURN;
18025 END;
18026 $f$ LANGUAGE PLPGSQL;
18027
18028 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$
18029 DECLARE
18030     ans RECORD;
18031     trans INT;
18032 BEGIN
18033     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;
18034
18035     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18036         RETURN QUERY
18037         SELECT  -1,
18038                 ans.id,
18039                 COUNT( av.id ),
18040                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18041                 COUNT( av.id ),
18042                 trans
18043           FROM
18044                 actor.org_unit_descendants(ans.id) d
18045                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
18046                 JOIN asset.copy cp ON (cp.id = av.id)
18047                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
18048           GROUP BY 1,2,6;
18049
18050         IF NOT FOUND THEN
18051             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18052         END IF;
18053
18054     END LOOP;
18055
18056     RETURN;
18057 END;
18058 $f$ LANGUAGE PLPGSQL;
18059
18060 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$
18061 DECLARE
18062     ans RECORD;
18063     trans INT;
18064 BEGIN
18065     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;
18066
18067     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
18068         RETURN QUERY
18069         SELECT  ans.depth,
18070                 ans.id,
18071                 COUNT( cp.id ),
18072                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18073                 COUNT( cp.id ),
18074                 trans
18075           FROM
18076                 actor.org_unit_descendants(ans.id) d
18077                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18078                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18079                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18080           GROUP BY 1,2,6;
18081
18082         IF NOT FOUND THEN
18083             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18084         END IF;
18085
18086     END LOOP;
18087
18088     RETURN;
18089 END;
18090 $f$ LANGUAGE PLPGSQL;
18091
18092 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$
18093 DECLARE
18094     ans RECORD;
18095     trans INT;
18096 BEGIN
18097     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;
18098
18099     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
18100         RETURN QUERY
18101         SELECT  -1,
18102                 ans.id,
18103                 COUNT( cp.id ),
18104                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
18105                 COUNT( cp.id ),
18106                 trans
18107           FROM
18108                 actor.org_unit_descendants(ans.id) d
18109                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
18110                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
18111                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
18112           GROUP BY 1,2,6;
18113
18114         IF NOT FOUND THEN
18115             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
18116         END IF;
18117
18118     END LOOP;
18119
18120     RETURN;
18121 END;
18122 $f$ LANGUAGE PLPGSQL;
18123
18124 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$
18125 BEGIN
18126     IF staff IS TRUE THEN
18127         IF place > 0 THEN
18128             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
18129         ELSE
18130             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
18131         END IF;
18132     ELSE
18133         IF place > 0 THEN
18134             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
18135         ELSE
18136             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
18137         END IF;
18138     END IF;
18139
18140     RETURN;
18141 END;
18142 $f$ LANGUAGE PLPGSQL;
18143
18144 -- No transaction is required
18145
18146 -- Triggers on the vandelay.queued_*_record tables delete entries from
18147 -- the associated vandelay.queued_*_record_attr tables based on the record's
18148 -- ID; create an index on that column to avoid sequential scans for each
18149 -- queued record that is deleted
18150 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
18151 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
18152
18153 -- Avoid sequential scans for queue retrieval operations by providing an
18154 -- index on the queue column
18155 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
18156 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
18157
18158 -- Start picking up call number label prefixes and suffixes
18159 -- from asset.copy_location
18160 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
18161 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
18162
18163 DROP VIEW auditor.asset_copy_lifecycle;
18164
18165 SELECT auditor.create_auditor_lifecycle( 'asset', 'copy' );
18166
18167 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
18168
18169 -- Let's not break existing reports
18170 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
18171 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
18172
18173 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
18174 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
18175 SELECT  r.id,
18176     r.fingerprint,
18177     r.quality,
18178     r.tcn_source,
18179     r.tcn_value,
18180     FIRST(title.value) AS title,
18181     FIRST(author.value) AS author,
18182     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
18183     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
18184     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18185     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
18186   FROM  biblio.record_entry r
18187     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18188     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
18189     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18190     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18191     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18192     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18193   GROUP BY 1,2,3,4,5;
18194
18195 -- Correct the ISSN array definition for reporter.simple_record
18196
18197 CREATE OR REPLACE VIEW reporter.simple_record AS
18198 SELECT  r.id,
18199         s.metarecord,
18200         r.fingerprint,
18201         r.quality,
18202         r.tcn_source,
18203         r.tcn_value,
18204         title.value AS title,
18205         uniform_title.value AS uniform_title,
18206         author.value AS author,
18207         publisher.value AS publisher,
18208         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
18209         series_title.value AS series_title,
18210         series_statement.value AS series_statement,
18211         summary.value AS summary,
18212         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
18213         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
18214         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
18215         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
18216         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
18217         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
18218         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
18219         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
18220   FROM  biblio.record_entry r
18221         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
18222         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
18223         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
18224         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
18225         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
18226         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
18227         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
18228         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
18229         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')
18230         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
18231         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
18232   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
18233
18234 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
18235     DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
18236 $$ LANGUAGE SQL;
18237
18238 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
18239 BEGIN
18240     IF TG_OP = 'DELETE' THEN
18241         PERFORM reporter.simple_rec_delete(NEW.id);
18242     ELSE
18243         PERFORM reporter.simple_rec_update(NEW.id);
18244     END IF;
18245
18246     RETURN NEW;
18247 END;
18248 $func$ LANGUAGE PLPGSQL;
18249
18250 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
18251
18252 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
18253
18254 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
18255
18256 UPDATE config.org_unit_setting_type
18257     SET view_perm = (SELECT id FROM permission.perm_list
18258         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
18259     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
18260
18261 UPDATE config.org_unit_setting_type
18262     SET update_perm = (SELECT id FROM permission.perm_list
18263         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
18264     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
18265
18266 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
18267     VALUES (
18268         'opac.fully_compressed_serial_holdings',
18269         'OPAC: Use fully compressed serial holdings',
18270         'Show fully compressed serial holdings for all libraries at and below
18271         the current context unit',
18272         'bool'
18273     );
18274
18275 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
18276     use strict;
18277     use warnings;
18278
18279     use utf8;
18280     use MARC::Record;
18281     use MARC::File::XML (BinaryEncoding => 'UTF8');
18282     use UUID::Tiny ':std';
18283
18284     my $xml = shift() or return undef;
18285
18286     my $r;
18287
18288     # Prevent errors in XML parsing from blowing out ungracefully
18289     eval {
18290         $r = MARC::Record->new_from_xml( $xml );
18291         1;
18292     } or do {
18293        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18294     };
18295
18296     if (!$r) {
18297        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
18298     }
18299
18300     # From http://www.loc.gov/standards/sourcelist/subject.html
18301     my $thes_code_map = {
18302         a => 'lcsh',
18303         b => 'lcshac',
18304         c => 'mesh',
18305         d => 'nal',
18306         k => 'cash',
18307         n => 'notapplicable',
18308         r => 'aat',
18309         s => 'sears',
18310         v => 'rvm',
18311     };
18312
18313     # Default to "No attempt to code" if the leader is horribly broken
18314     my $fixed_field = $r->field('008');
18315     my $thes_char = '|';
18316     if ($fixed_field) {
18317         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
18318     }
18319
18320     my $thes_code = 'UNDEFINED';
18321
18322     if ($thes_char eq 'z') {
18323         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
18324         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
18325     } elsif ($thes_code_map->{$thes_char}) {
18326         $thes_code = $thes_code_map->{$thes_char};
18327     }
18328
18329     my $auth_txt = '';
18330     my $head = $r->field('1..');
18331     if ($head) {
18332         # Concatenate all of these subfields together, prefixed by their code
18333         # to prevent collisions along the lines of "Fiction, North Carolina"
18334         foreach my $sf ($head->subfields()) {
18335             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
18336         }
18337     }
18338
18339     # Perhaps better to parameterize the spi and pass as a parameter
18340     $auth_txt =~ s/'//go;
18341
18342     if ($auth_txt) {
18343         my $result = spi_exec_query("SELECT public.naco_normalize('$auth_txt') AS norm_text");
18344         my $norm_txt = $result->{rows}[0]->{norm_text};
18345         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
18346     }
18347
18348     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
18349 $func$ LANGUAGE 'plperlu' IMMUTABLE;
18350
18351 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
18352 /**
18353 * Extract the authority heading, thesaurus, and NACO-normalized values
18354 * from an authority record. The primary purpose is to build a unique
18355 * index to defend against duplicated authority records from the same
18356 * thesaurus.
18357 */
18358 $$;
18359
18360 DROP INDEX authority.authority_record_unique_tcn;
18361 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
18362 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
18363
18364 ALTER TABLE acq.provider_contact
18365         ALTER COLUMN name SET NOT NULL;
18366
18367 ALTER TABLE actor.stat_cat
18368         ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
18369
18370 -- Recreate some foreign keys that were somehow dropped, probably
18371 -- by some kind of cascade from an inherited table:
18372
18373 ALTER TABLE action.reservation_transit_copy
18374         ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy)
18375                 REFERENCES booking.resource(id)
18376                 ON DELETE CASCADE
18377                 DEFERRABLE INITIALLY DEFERRED,
18378         ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation)
18379                 REFERENCES booking.reservation(id)
18380                 ON DELETE SET NULL
18381                 DEFERRABLE INITIALLY DEFERRED;
18382
18383 CREATE INDEX user_bucket_item_target_user_idx
18384         ON container.user_bucket_item ( target_user );
18385
18386 CREATE INDEX m_c_t_collector_idx
18387         ON money.collections_tracker ( collector );
18388
18389 CREATE INDEX aud_actor_usr_address_hist_id_idx
18390         ON auditor.actor_usr_address_history ( id );
18391
18392 CREATE INDEX aud_actor_usr_hist_id_idx
18393         ON auditor.actor_usr_history ( id );
18394
18395 CREATE INDEX aud_asset_cn_hist_creator_idx
18396         ON auditor.asset_call_number_history ( creator );
18397
18398 CREATE INDEX aud_asset_cn_hist_editor_idx
18399         ON auditor.asset_call_number_history ( editor );
18400
18401 CREATE INDEX aud_asset_cp_hist_creator_idx
18402         ON auditor.asset_copy_history ( creator );
18403
18404 CREATE INDEX aud_asset_cp_hist_editor_idx
18405         ON auditor.asset_copy_history ( editor );
18406
18407 CREATE INDEX aud_bib_rec_entry_hist_creator_idx
18408         ON auditor.biblio_record_entry_history ( creator );
18409
18410 CREATE INDEX aud_bib_rec_entry_hist_editor_idx
18411         ON auditor.biblio_record_entry_history ( editor );
18412
18413 CREATE TABLE action.hold_request_note (
18414
18415     id     BIGSERIAL PRIMARY KEY,
18416     hold   BIGINT    NOT NULL REFERENCES action.hold_request (id)
18417                               ON DELETE CASCADE
18418                               DEFERRABLE INITIALLY DEFERRED,
18419     title  TEXT      NOT NULL,
18420     body   TEXT      NOT NULL,
18421     slip   BOOL      NOT NULL DEFAULT FALSE,
18422     pub    BOOL      NOT NULL DEFAULT FALSE,
18423     staff  BOOL      NOT NULL DEFAULT FALSE  -- created by staff
18424
18425 );
18426 CREATE INDEX ahrn_hold_idx ON action.hold_request_note (hold);
18427
18428 -- Tweak a constraint to add a CASCADE
18429
18430 ALTER TABLE action.hold_notification DROP CONSTRAINT hold_notification_hold_fkey;
18431
18432 ALTER TABLE action.hold_notification
18433         ADD CONSTRAINT hold_notification_hold_fkey
18434                 FOREIGN KEY (hold) REFERENCES action.hold_request (id)
18435                 ON DELETE CASCADE
18436                 DEFERRABLE INITIALLY DEFERRED;
18437
18438 CREATE TRIGGER asset_label_sortkey_trigger
18439     BEFORE UPDATE OR INSERT ON asset.call_number
18440     FOR EACH ROW EXECUTE PROCEDURE asset.label_normalizer();
18441
18442 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
18443 RETURNS VOID AS $$
18444 --
18445 -- Delete expired circulation bucket items for all users that have
18446 -- a setting for patron.max_reading_list_interval.
18447 --
18448 DECLARE
18449     today        TIMESTAMP WITH TIME ZONE;
18450     threshold    TIMESTAMP WITH TIME ZONE;
18451         usr_setting  RECORD;
18452 BEGIN
18453         SELECT date_trunc( 'day', now() ) INTO today;
18454         --
18455         FOR usr_setting in
18456                 SELECT
18457                         usr,
18458                         value
18459                 FROM
18460                         actor.usr_setting
18461                 WHERE
18462                         name = 'patron.max_reading_list_interval'
18463         LOOP
18464                 --
18465                 -- Make sure the setting is a valid interval
18466                 --
18467                 BEGIN
18468                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
18469                 EXCEPTION
18470                         WHEN OTHERS THEN
18471                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
18472                                         usr_setting.usr, usr_setting.value;
18473                                 CONTINUE;
18474                 END;
18475                 --
18476                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
18477                 --
18478         DELETE FROM container.copy_bucket_item
18479         WHERE
18480                 bucket IN
18481                 (
18482                     SELECT
18483                         id
18484                     FROM
18485                         container.copy_bucket
18486                     WHERE
18487                         owner = usr_setting.usr
18488                         AND btype = 'circ_history'
18489                 )
18490                 AND create_time < threshold;
18491         END LOOP;
18492         --
18493 END;
18494 $$ LANGUAGE plpgsql;
18495
18496 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
18497 /*
18498  * Delete expired circulation bucket items for all users that have
18499  * a setting for patron.max_reading_list_interval.
18500 */
18501 $$;
18502
18503 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
18504          ac_usr IN INTEGER
18505 ) RETURNS VOID AS $$
18506 --
18507 -- Delete old circulation bucket items for a specified user.
18508 -- "Old" means older than the interval specified by a
18509 -- user-level setting, if it is so specified.
18510 --
18511 DECLARE
18512     threshold TIMESTAMP WITH TIME ZONE;
18513 BEGIN
18514         -- Sanity check
18515         IF ac_usr IS NULL THEN
18516                 RETURN;
18517         END IF;
18518         -- Determine the threshold date that defines "old".  Subtract the
18519         -- interval from the system date, then truncate to midnight.
18520         SELECT
18521                 date_trunc( 
18522                         'day',
18523                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
18524                 )
18525         INTO
18526                 threshold
18527         FROM
18528                 actor.usr_setting
18529         WHERE
18530                 usr = ac_usr
18531                 AND name = 'patron.max_reading_list_interval';
18532         --
18533         IF threshold is null THEN
18534                 -- No interval defined; don't delete anything
18535                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
18536                 return;
18537         END IF;
18538         --
18539         -- RAISE NOTICE 'Date threshold: %', threshold;
18540         --
18541         -- Threshold found; do the delete
18542         delete from container.copy_bucket_item
18543         where
18544                 bucket in
18545                 (
18546                         select
18547                                 id
18548                         from
18549                                 container.copy_bucket
18550                         where
18551                                 owner = ac_usr
18552                                 and btype = 'circ_history'
18553                 )
18554                 and create_time < threshold;
18555         --
18556         RETURN;
18557 END;
18558 $$ LANGUAGE plpgsql;
18559
18560 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
18561 /*
18562  * Delete old circulation bucket items for a specified user.
18563  * "Old" means older than the interval specified by a
18564  * user-level setting, if it is so specified.
18565 */
18566 $$;
18567
18568 CREATE OR REPLACE VIEW reporter.hold_request_record AS
18569 SELECT  id,
18570     target,
18571     hold_type,
18572     CASE
18573         WHEN hold_type = 'T'
18574             THEN target
18575         WHEN hold_type = 'I'
18576             THEN (SELECT ssub.record_entry FROM serial.subscription ssub JOIN serial.issuance si ON (si.subscription = ssub.id) WHERE si.id = ahr.target)
18577         WHEN hold_type = 'V'
18578             THEN (SELECT cn.record FROM asset.call_number cn WHERE cn.id = ahr.target)
18579         WHEN hold_type IN ('C','R','F')
18580             THEN (SELECT cn.record FROM asset.call_number cn JOIN asset.copy cp ON (cn.id = cp.call_number) WHERE cp.id = ahr.target)
18581         WHEN hold_type = 'M'
18582             THEN (SELECT mr.master_record FROM metabib.metarecord mr WHERE mr.id = ahr.target)
18583     END AS bib_record
18584   FROM  action.hold_request ahr;
18585
18586 UPDATE  metabib.rec_descriptor
18587   SET   date1=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date1, ''), E'\\D', '0', 'g')::INT,0)::TEXT,4,'0'),
18588         date2=LPAD(NULLIF(REGEXP_REPLACE(NULLIF(date2, ''), E'\\D', '9', 'g')::INT,9999)::TEXT,4,'0');
18589
18590 -- Change some ints to bigints:
18591
18592 ALTER TABLE container.biblio_record_entry_bucket_item
18593         ALTER COLUMN target_biblio_record_entry SET DATA TYPE bigint;
18594
18595 ALTER TABLE vandelay.queued_bib_record
18596         ALTER COLUMN imported_as SET DATA TYPE bigint;
18597
18598 ALTER TABLE action.hold_copy_map
18599         ALTER COLUMN id SET DATA TYPE bigint;
18600
18601 -- Make due times get pushed to 23:59:59 on insert OR update
18602 DROP TRIGGER push_due_date_tgr ON action.circulation;
18603 CREATE TRIGGER push_due_date_tgr BEFORE INSERT OR UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.push_circ_due_time();
18604
18605 COMMIT;
18606
18607 -- Some operations go outside of the transaction, because they may
18608 -- legitimately fail.
18609
18610 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
18611 \qecho doesn't exist; ignore those errors if they occur.
18612
18613 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
18614
18615 ALTER TABLE auditor.action_hold_request_history
18616 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
18617
18618 ALTER TABLE auditor.action_hold_request_history
18619 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
18620
18621 \qecho Outside of the transaction: adding indexes that may or may not exist.
18622 \qecho If any of these CREATE INDEX statements fails because the index already
18623 \qecho exists, ignore the failure.
18624
18625 CREATE INDEX acq_picklist_owner_idx   ON acq.picklist ( owner );
18626 CREATE INDEX acq_picklist_creator_idx ON acq.picklist ( creator );
18627 CREATE INDEX acq_picklist_editor_idx  ON acq.picklist ( editor );
18628 CREATE INDEX acq_po_note_creator_idx  ON acq.po_note ( creator );
18629 CREATE INDEX acq_po_note_editor_idx   ON acq.po_note ( editor );
18630 CREATE INDEX fund_alloc_allocator_idx ON acq.fund_allocation ( allocator );
18631 CREATE INDEX li_creator_idx   ON acq.lineitem ( creator );
18632 CREATE INDEX li_editor_idx    ON acq.lineitem ( editor );
18633 CREATE INDEX li_selector_idx  ON acq.lineitem ( selector );
18634 CREATE INDEX li_note_creator_idx  ON acq.lineitem_note ( creator );
18635 CREATE INDEX li_note_editor_idx   ON acq.lineitem_note ( editor );
18636 CREATE INDEX li_usr_attr_def_usr_idx  ON acq.lineitem_usr_attr_definition ( usr );
18637 CREATE INDEX po_editor_idx   ON acq.purchase_order ( editor );
18638 CREATE INDEX po_creator_idx  ON acq.purchase_order ( creator );
18639 CREATE INDEX acq_po_org_name_order_date_idx ON acq.purchase_order( ordering_agency, name, order_date );
18640 CREATE INDEX action_in_house_use_staff_idx  ON action.in_house_use ( staff );
18641 CREATE INDEX action_non_cat_circ_patron_idx ON action.non_cataloged_circulation ( patron );
18642 CREATE INDEX action_non_cat_circ_staff_idx  ON action.non_cataloged_circulation ( staff );
18643 CREATE INDEX action_survey_response_usr_idx ON action.survey_response ( usr );
18644 CREATE INDEX ahn_notify_staff_idx           ON action.hold_notification ( notify_staff );
18645 CREATE INDEX circ_all_usr_idx               ON action.circulation ( usr );
18646 CREATE INDEX circ_circ_staff_idx            ON action.circulation ( circ_staff );
18647 CREATE INDEX circ_checkin_staff_idx         ON action.circulation ( checkin_staff );
18648 CREATE INDEX hold_request_fulfillment_staff_idx ON action.hold_request ( fulfillment_staff );
18649 CREATE INDEX hold_request_requestor_idx     ON action.hold_request ( requestor );
18650 CREATE INDEX non_cat_in_house_use_staff_idx ON action.non_cat_in_house_use ( staff );
18651 CREATE INDEX actor_usr_note_creator_idx     ON actor.usr_note ( creator );
18652 CREATE INDEX actor_usr_standing_penalty_staff_idx ON actor.usr_standing_penalty ( staff );
18653 CREATE INDEX usr_org_unit_opt_in_staff_idx  ON actor.usr_org_unit_opt_in ( staff );
18654 CREATE INDEX asset_call_number_note_creator_idx ON asset.call_number_note ( creator );
18655 CREATE INDEX asset_copy_note_creator_idx    ON asset.copy_note ( creator );
18656 CREATE INDEX cp_creator_idx                 ON asset.copy ( creator );
18657 CREATE INDEX cp_editor_idx                  ON asset.copy ( editor );
18658
18659 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
18660
18661 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
18662
18663 \qecho If the following CREATE INDEX fails, It will be necessary to do some
18664 \qecho data cleanup as described in the comments.
18665
18666 CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
18667     ON authority.record_entry (authority.normalize_heading(marc))
18668         WHERE deleted IS FALSE or deleted = FALSE;
18669
18670 -- If the unique index fails, uncomment the following to create
18671 -- a regular index that will help find the duplicates in a hurry:
18672 --CREATE INDEX by_heading_and_thesaurus
18673 --    ON authority.record_entry (authority.normalize_heading(marc))
18674 --    WHERE deleted IS FALSE or deleted = FALSE
18675 --;
18676
18677 -- Then find the duplicates like so to get an idea of how much
18678 -- pain you're looking at to clean things up:
18679 --SELECT id, authority.normalize_heading(marc)
18680 --    FROM authority.record_entry
18681 --    WHERE authority.normalize_heading(marc) IN (
18682 --        SELECT authority.normalize_heading(marc)
18683 --        FROM authority.record_entry
18684 --        GROUP BY authority.normalize_heading(marc)
18685 --        HAVING COUNT(*) > 1
18686 --    )
18687 --;
18688
18689 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
18690 -- statement succeeds, drop the temporary index to avoid unnecessary
18691 -- duplication:
18692 -- DROP INDEX authority.by_heading_and_thesaurus;
18693
18694 \qecho Upgrade script completed.