]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
Make acq.provider_contact.name NOT NULL.
[Evergreen.git] / Open-ILS / src / sql / Pg / 1.6.1-2.0-upgrade-db.sql
1 BEGIN;
2
3 -- Highest-numbered individual upgrade script
4 -- incorporated herein:
5
6 INSERT INTO config.upgrade_log (version) VALUES ('0403');
7
8 -- Begin by upgrading permission.perm_list.  This is fairly complicated.
9
10 -- Add ON UPDATE CASCADE to some foreign keys so that, when we renumber the
11 -- permissions, the dependents will follow and stay in sync:
12
13 ALTER TABLE permission.grp_perm_map DROP CONSTRAINT grp_perm_map_perm_fkey;
14 ALTER TABLE permission.grp_perm_map ADD CONSTRAINT grp_perm_map_perm_fkey FOREIGN KEY (perm)
15     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
16
17 ALTER TABLE permission.usr_perm_map DROP CONSTRAINT usr_perm_map_perm_fkey;
18 ALTER TABLE permission.usr_perm_map ADD CONSTRAINT usr_perm_map_perm_fkey FOREIGN KEY (perm)
19     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
20
21 ALTER TABLE permission.usr_object_perm_map DROP CONSTRAINT usr_object_perm_map_perm_fkey;
22 ALTER TABLE permission.usr_object_perm_map ADD CONSTRAINT usr_object_perm_map_perm_fkey FOREIGN KEY (perm)
23     REFERENCES permission.perm_list (id) ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED;
24
25 UPDATE permission.perm_list
26     SET code = 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow'
27     WHERE code = 'UPDATE_ORG_UNIT_SETTING.global.credit.allow';
28
29 -- The following UPDATES were originally in an individual upgrade script, but should
30 -- no longer be necessary now that the foreign key has an ON UPDATE CASCADE clause.
31 -- We retain the UPDATES here, commented out, as historical relics.
32
33 -- UPDATE permission.grp_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
34 -- UPDATE permission.usr_perm_map SET perm = perm + 1000 WHERE perm NOT IN ( SELECT id FROM permission.perm_list );
35
36 -- Spelling correction
37 UPDATE permission.perm_list SET code = 'ADMIN_RECURRING_FINE_RULE' WHERE code = 'ADMIN_RECURING_FINE_RULE';
38
39 -- Now we engage in a Great Renumbering of the permissions in permission.perm_list,
40 -- in order to clean up accumulated cruft.
41
42 -- The first step is to establish some triggers so that, when we change the id of a permission,
43 -- the associated translations are updated accordingly.
44
45 CREATE OR REPLACE FUNCTION oils_i18n_update_apply(old_ident TEXT, new_ident TEXT, hint TEXT) RETURNS VOID AS $_$
46 BEGIN
47
48     EXECUTE $$
49         UPDATE  config.i18n_core
50           SET   identity_value = $$ || quote_literal( new_ident ) || $$ 
51           WHERE fq_field LIKE '$$ || hint || $$.%' 
52                 AND identity_value = $$ || quote_literal( old_ident ) || $$;$$;
53
54     RETURN;
55
56 END;
57 $_$ LANGUAGE PLPGSQL;
58
59 CREATE OR REPLACE FUNCTION oils_i18n_id_tracking(/* hint */) RETURNS TRIGGER AS $_$
60 BEGIN
61     PERFORM oils_i18n_update_apply( OLD.id::TEXT, NEW.id::TEXT, TG_ARGV[0]::TEXT );
62     RETURN NEW;
63 END;
64 $_$ LANGUAGE PLPGSQL;
65
66 CREATE OR REPLACE FUNCTION oils_i18n_code_tracking(/* hint */) RETURNS TRIGGER AS $_$
67 BEGIN
68     PERFORM oils_i18n_update_apply( OLD.code::TEXT, NEW.code::TEXT, TG_ARGV[0]::TEXT );
69     RETURN NEW;
70 END;
71 $_$ LANGUAGE PLPGSQL;
72
73
74 CREATE TRIGGER maintain_perm_i18n_tgr
75     AFTER UPDATE ON permission.perm_list
76     FOR EACH ROW EXECUTE PROCEDURE oils_i18n_id_tracking('ppl');
77
78 -- Next, create a new table as a convenience for sloshing data back and forth,
79 -- and for recording which permission went where.  It looks just like
80 -- permission.perm_list, but with two extra columns: one for the old id, and one to
81 -- distinguish between predefined permissions and non-predefined permissions.
82
83 -- This table is, in effect, a temporary table, because we can drop it once the
84 -- upgrade is complete.  It is not technically temporary as far as PostgreSQL is
85 -- concerned, because we don't want it to disappear at the end of the session.
86 -- We keep it around so that we have a map showing the old id and the new id for
87 -- each permission.  However there is no IDL entry for it, nor is it defined
88 -- in the base sql files.
89
90 CREATE TABLE permission.temp_perm (
91         id          INT        PRIMARY KEY,
92         code        TEXT       UNIQUE,
93         description TEXT,
94         old_id      INT,
95         predefined  BOOL       NOT NULL DEFAULT TRUE
96 );
97
98 -- Populate the temp table with a definitive set of predefined permissions,
99 -- hard-coding the ids.
100
101 -- The first set of permissions is derived from the database, as loaded in a
102 -- loaded 1.6.1 database, plus a few changes previously applied in this upgrade
103 -- script.  The second set is derived from the IDL -- permissions that are referenced
104 -- in <permacrud> elements but not defined in the database.
105
106 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( -1, 'EVERYTHING',
107      '' );
108 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 1, 'OPAC_LOGIN',
109      'Allow a user to log in to the OPAC' );
110 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 2, 'STAFF_LOGIN',
111      'Allow a user to log in to the staff client' );
112 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 3, 'MR_HOLDS',
113      'Allow a user to create a metarecord holds' );
114 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 4, 'TITLE_HOLDS',
115      'Allow a user to place a hold at the title level' );
116 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 5, 'VOLUME_HOLDS',
117      'Allow a user to place a volume level hold' );
118 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 6, 'COPY_HOLDS',
119      'Allow a user to place a hold on a specific copy' );
120 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 7, 'REQUEST_HOLDS',
121      'Allow a user to create holds for another user (if true, we still check to make sure they have permission to make the type of hold they are requesting, for example, COPY_HOLDS)' );
122 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 8, 'REQUEST_HOLDS_OVERRIDE',
123      '* no longer applicable' );
124 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 9, 'VIEW_HOLD',
125      'Allow a user to view another user''s holds' );
126 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 10, 'DELETE_HOLDS',
127      '* no longer applicable' );
128 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 11, 'UPDATE_HOLD',
129      'Allow a user to update another user''s hold' );
130 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 12, 'RENEW_CIRC',
131      'Allow a user to renew items' );
132 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 13, 'VIEW_USER_FINES_SUMMARY',
133      'Allow a user to view bill details' );
134 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 14, 'VIEW_USER_TRANSACTIONS',
135      'Allow a user to see another user''s grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION' );
136 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 15, 'UPDATE_MARC',
137      'Allow a user to edit a MARC record' );
138 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 16, 'CREATE_MARC',
139      'Allow a user to create new MARC records' );
140 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 17, 'IMPORT_MARC',
141      'Allow a user to import a MARC record via the Z39.50 interface' );
142 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 18, 'CREATE_VOLUME',
143      'Allow a user to create a volume' );
144 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 19, 'UPDATE_VOLUME',
145      'Allow a user to edit volumes - needed for merging records. This is a duplicate of VOLUME_UPDATE; user must have both permissions at appropriate level to merge records.' );
146 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 20, 'DELETE_VOLUME',
147      'Allow a user to delete a volume' );
148 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 21, 'CREATE_COPY',
149      'Allow a user to create a new copy object' );
150 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 22, 'UPDATE_COPY',
151      'Allow a user to edit a copy' );
152 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 23, 'DELETE_COPY',
153      'Allow a user to delete a copy' );
154 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 24, 'RENEW_HOLD_OVERRIDE',
155      'Allow a user to continue to renew an item even if it is required for a hold' );
156 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 25, 'CREATE_USER',
157      'Allow a user to create another user' );
158 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 26, 'UPDATE_USER',
159      'Allow a user to edit a user''s record' );
160 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 27, 'DELETE_USER',
161      'Allow a user to mark a user as deleted' );
162 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 28, 'VIEW_USER',
163      'Allow a user to view another user''s Patron Record' );
164 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 29, 'COPY_CHECKIN',
165      'Allow a user to check in a copy' );
166 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 30, 'CREATE_TRANSIT',
167      'Allow a user to place an item in transit' );
168 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 31, 'VIEW_PERMISSION',
169      'Allow a user to view user permissions within the user permissions editor' );
170 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 32, 'CHECKIN_BYPASS_HOLD_FULFILL',
171      '* no longer applicable' );
172 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 33, 'CREATE_PAYMENT',
173      'Allow a user to record payments in the Billing Interface' );
174 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 34, 'SET_CIRC_LOST',
175      'Allow a user to mark an item as ''lost''' );
176 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 35, 'SET_CIRC_MISSING',
177      'Allow a user to mark an item as ''missing''' );
178 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 36, 'SET_CIRC_CLAIMS_RETURNED',
179      'Allow a user to mark an item as ''claims returned''' );
180 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 37, 'CREATE_TRANSACTION',
181      'Allow a user to create a new billable transaction' );
182 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 38, 'VIEW_TRANSACTION',
183      'Allow a user may view another user''s transactions' );
184 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 39, 'CREATE_BILL',
185      'Allow a user to create a new bill on a transaction' );
186 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 40, 'VIEW_CONTAINER',
187      'Allow a user to view another user''s containers (buckets)' );
188 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 41, 'CREATE_CONTAINER',
189      'Allow a user to create a new container for another user' );
190 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 42, 'UPDATE_ORG_UNIT',
191      'Allow a user to change the settings for an organization unit' );
192 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 43, 'VIEW_CIRCULATIONS',
193      'Allow a user to see what another user has checked out' );
194 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 44, 'DELETE_CONTAINER',
195      'Allow a user to delete another user''s container' );
196 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 45, 'CREATE_CONTAINER_ITEM',
197      'Allow a user to create a container item for another user' );
198 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 46, 'CREATE_USER_GROUP_LINK',
199      'Allow a user to add other users to permission groups' );
200 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 47, 'REMOVE_USER_GROUP_LINK',
201      'Allow a user to remove other users from permission groups' );
202 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 48, 'VIEW_PERM_GROUPS',
203      'Allow a user to view other users'' permission groups' );
204 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 49, 'VIEW_PERMIT_CHECKOUT',
205      'Allow a user to determine whether another user can check out an item' );
206 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 50, 'UPDATE_BATCH_COPY',
207      'Allow a user to edit copies in batch' );
208 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 51, 'CREATE_PATRON_STAT_CAT',
209      'User may create a new patron statistical category' );
210 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 52, 'CREATE_COPY_STAT_CAT',
211      'User may create a copy statistical category' );
212 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 53, 'CREATE_PATRON_STAT_CAT_ENTRY',
213      'User may create an entry in a patron statistical category' );
214 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 54, 'CREATE_COPY_STAT_CAT_ENTRY',
215      'User may create an entry in a copy statistical category' );
216 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 55, 'UPDATE_PATRON_STAT_CAT',
217      'User may update a patron statistical category' );
218 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 56, 'UPDATE_COPY_STAT_CAT',
219      'User may update a copy statistical category' );
220 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 57, 'UPDATE_PATRON_STAT_CAT_ENTRY',
221      'User may update an entry in a patron statistical category' );
222 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 58, 'UPDATE_COPY_STAT_CAT_ENTRY',
223      'User may update an entry in a copy statistical category' );
224 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 59, 'CREATE_PATRON_STAT_CAT_ENTRY_MAP',
225      'User may link another user to an entry in a statistical category' );
226 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 60, 'CREATE_COPY_STAT_CAT_ENTRY_MAP',
227      'User may link a copy to an entry in a statistical category' );
228 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 61, 'DELETE_PATRON_STAT_CAT',
229      'User may delete a patron statistical category' );
230 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 62, 'DELETE_COPY_STAT_CAT',
231      'User may delete a copy statistical category' );
232 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 63, 'DELETE_PATRON_STAT_CAT_ENTRY',
233      'User may delete an entry from a patron statistical category' );
234 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 64, 'DELETE_COPY_STAT_CAT_ENTRY',
235      'User may delete an entry from a copy statistical category' );
236 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 65, 'DELETE_PATRON_STAT_CAT_ENTRY_MAP',
237      'User may delete a patron statistical category entry map' );
238 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 66, 'DELETE_COPY_STAT_CAT_ENTRY_MAP',
239      'User may delete a copy statistical category entry map' );
240 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 67, 'CREATE_NON_CAT_TYPE',
241      'Allow a user to create a new non-cataloged item type' );
242 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 68, 'UPDATE_NON_CAT_TYPE',
243      'Allow a user to update a non-cataloged item type' );
244 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 69, 'CREATE_IN_HOUSE_USE',
245      'Allow a user to create a new in-house-use ' );
246 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 70, 'COPY_CHECKOUT',
247      'Allow a user to check out a copy' );
248 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 71, 'CREATE_COPY_LOCATION',
249      'Allow a user to create a new copy location' );
250 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 72, 'UPDATE_COPY_LOCATION',
251      'Allow a user to update a copy location' );
252 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 73, 'DELETE_COPY_LOCATION',
253      'Allow a user to delete a copy location' );
254 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 74, 'CREATE_COPY_TRANSIT',
255      'Allow a user to create a transit_copy object for transiting a copy' );
256 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 75, 'COPY_TRANSIT_RECEIVE',
257      'Allow a user to close out a transit on a copy' );
258 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 76, 'VIEW_HOLD_PERMIT',
259      'Allow a user to see if another user has permission to place a hold on a given copy' );
260 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 77, 'VIEW_COPY_CHECKOUT_HISTORY',
261      'Allow a user to view which users have checked out a given copy' );
262 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 78, 'REMOTE_Z3950_QUERY',
263      'Allow a user to perform Z39.50 queries against remote servers' );
264 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 79, 'REGISTER_WORKSTATION',
265      'Allow a user to register a new workstation' );
266 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 80, 'VIEW_COPY_NOTES',
267      'Allow a user to view all notes attached to a copy' );
268 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 81, 'VIEW_VOLUME_NOTES',
269      'Allow a user to view all notes attached to a volume' );
270 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 82, 'VIEW_TITLE_NOTES',
271      'Allow a user to view all notes attached to a title' );
272 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 83, 'CREATE_COPY_NOTE',
273      'Allow a user to create a new copy note' );
274 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 84, 'CREATE_VOLUME_NOTE',
275      'Allow a user to create a new volume note' );
276 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 85, 'CREATE_TITLE_NOTE',
277      'Allow a user to create a new title note' );
278 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 86, 'DELETE_COPY_NOTE',
279      'Allow a user to delete another user''s copy notes' );
280 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 87, 'DELETE_VOLUME_NOTE',
281      'Allow a user to delete another user''s volume note' );
282 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 88, 'DELETE_TITLE_NOTE',
283      'Allow a user to delete another user''s title note' );
284 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 89, 'UPDATE_CONTAINER',
285      'Allow a user to update another user''s container' );
286 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 90, 'CREATE_MY_CONTAINER',
287      'Allow a user to create a container for themselves' );
288 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 91, 'VIEW_HOLD_NOTIFICATION',
289      'Allow a user to view notifications attached to a hold' );
290 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 92, 'CREATE_HOLD_NOTIFICATION',
291      'Allow a user to create new hold notifications' );
292 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 93, 'UPDATE_ORG_SETTING',
293      'Allow a user to update an organization unit setting' );
294 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 94, 'OFFLINE_UPLOAD',
295      'Allow a user to upload an offline script' );
296 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 95, 'OFFLINE_VIEW',
297      'Allow a user to view uploaded offline script information' );
298 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 96, 'OFFLINE_EXECUTE',
299      'Allow a user to execute an offline script batch' );
300 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 97, 'CIRC_OVERRIDE_DUE_DATE',
301      'Allow a user to change the due date on an item to any date' );
302 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 98, 'CIRC_PERMIT_OVERRIDE',
303      'Allow a user to bypass the circulation permit call for check out' );
304 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 99, 'COPY_IS_REFERENCE.override',
305      'Allow a user to override the copy_is_reference event' );
306 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 100, 'VOID_BILLING',
307      'Allow a user to void a bill' );
308 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 101, 'CIRC_CLAIMS_RETURNED.override',
309      'Allow a user to check in or check out an item that has a status of ''claims returned''' );
310 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 102, 'COPY_BAD_STATUS.override',
311      'Allow a user to check out an item in a non-circulatable status' );
312 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 103, 'COPY_ALERT_MESSAGE.override',
313      'Allow a user to check in/out an item that has an alert message' );
314 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 104, 'COPY_STATUS_LOST.override',
315      'Allow a user to remove the lost status from a copy' );
316 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 105, 'COPY_STATUS_MISSING.override',
317      'Allow a user to change the missing status on a copy' );
318 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 106, 'ABORT_TRANSIT',
319      'Allow a user to abort a copy transit if the user is at the transit destination or source' );
320 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 107, 'ABORT_REMOTE_TRANSIT',
321      'Allow a user to abort a copy transit if the user is not at the transit source or dest' );
322 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 108, 'VIEW_ZIP_DATA',
323      'Allow a user to query the ZIP code data method' );
324 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 109, 'CANCEL_HOLDS',
325      'Allow a user to cancel holds' );
326 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 110, 'CREATE_DUPLICATE_HOLDS',
327      'Allow a user to create duplicate holds (two or more holds on the same title)' );
328 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 111, 'actor.org_unit.closed_date.delete',
329      'Allow a user to remove a closed date interval for a given location' );
330 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 112, 'actor.org_unit.closed_date.update',
331      'Allow a user to update a closed date interval for a given location' );
332 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 113, 'actor.org_unit.closed_date.create',
333      'Allow a user to create a new closed date for a location' );
334 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 114, 'DELETE_NON_CAT_TYPE',
335      'Allow a user to delete a non cataloged type' );
336 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 115, 'money.collections_tracker.create',
337      'Allow a user to put someone into collections' );
338 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 116, 'money.collections_tracker.delete',
339      'Allow a user to remove someone from collections' );
340 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 117, 'BAR_PATRON',
341      'Allow a user to bar a patron' );
342 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 118, 'UNBAR_PATRON',
343      'Allow a user to un-bar a patron' );
344 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 119, 'DELETE_WORKSTATION',
345      'Allow a user to remove an existing workstation so a new one can replace it' );
346 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 120, 'group_application.user',
347      'Allow a user to add/remove users to/from the "User" group' );
348 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 121, 'group_application.user.patron',
349      'Allow a user to add/remove users to/from the "Patron" group' );
350 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 122, 'group_application.user.staff',
351      'Allow a user to add/remove users to/from the "Staff" group' );
352 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 123, 'group_application.user.staff.circ',
353      'Allow a user to add/remove users to/from the "Circulator" group' );
354 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 124, 'group_application.user.staff.cat',
355      'Allow a user to add/remove users to/from the "Cataloger" group' );
356 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 125, 'group_application.user.staff.admin.global_admin',
357      'Allow a user to add/remove users to/from the "GlobalAdmin" group' );
358 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 126, 'group_application.user.staff.admin.local_admin',
359      'Allow a user to add/remove users to/from the "LocalAdmin" group' );
360 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 127, 'group_application.user.staff.admin.lib_manager',
361      'Allow a user to add/remove users to/from the "LibraryManager" group' );
362 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 128, 'group_application.user.staff.cat.cat1',
363      'Allow a user to add/remove users to/from the "Cat1" group' );
364 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 129, 'group_application.user.staff.supercat',
365      'Allow a user to add/remove users to/from the "Supercat" group' );
366 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 130, 'group_application.user.sip_client',
367      'Allow a user to add/remove users to/from the "SIP-Client" group' );
368 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 131, 'group_application.user.vendor',
369      'Allow a user to add/remove users to/from the "Vendor" group' );
370 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 132, 'ITEM_AGE_PROTECTED.override',
371      'Allow a user to place a hold on an age-protected item' );
372 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 133, 'MAX_RENEWALS_REACHED.override',
373      'Allow a user to renew an item past the maximum renewal count' );
374 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 134, 'PATRON_EXCEEDS_CHECKOUT_COUNT.override',
375      'Allow staff to override checkout count failure' );
376 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 135, 'PATRON_EXCEEDS_OVERDUE_COUNT.override',
377      'Allow staff to override overdue count failure' );
378 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 136, 'PATRON_EXCEEDS_FINES.override',
379      'Allow staff to override fine amount checkout failure' );
380 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 137, 'CIRC_EXCEEDS_COPY_RANGE.override',
381      'Allow staff to override circulation copy range failure' );
382 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 138, 'ITEM_ON_HOLDS_SHELF.override',
383      'Allow staff to override item on holds shelf failure' );
384 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 139, 'COPY_NOT_AVAILABLE.override',
385      'Allow staff to force checkout of Missing/Lost type items' );
386 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 140, 'HOLD_EXISTS.override',
387      'Allow a user to place multiple holds on a single title' );
388 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 141, 'RUN_REPORTS',
389      'Allow a user to run reports' );
390 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 142, 'SHARE_REPORT_FOLDER',
391      'Allow a user to share report his own folders' );
392 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 143, 'VIEW_REPORT_OUTPUT',
393      'Allow a user to view report output' );
394 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 144, 'COPY_CIRC_NOT_ALLOWED.override',
395      'Allow a user to checkout an item that is marked as non-circ' );
396 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 145, 'DELETE_CONTAINER_ITEM',
397      'Allow a user to delete an item out of another user''s container' );
398 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 146, 'ASSIGN_WORK_ORG_UNIT',
399      'Allow a staff member to define where another staff member has their permissions' );
400 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 147, 'CREATE_FUNDING_SOURCE',
401      'Allow a user to create a new funding source' );
402 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 148, 'DELETE_FUNDING_SOURCE',
403      'Allow a user to delete a funding source' );
404 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 149, 'VIEW_FUNDING_SOURCE',
405      'Allow a user to view a funding source' );
406 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 150, 'UPDATE_FUNDING_SOURCE',
407      'Allow a user to update a funding source' );
408 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 151, 'CREATE_FUND',
409      'Allow a user to create a new fund' );
410 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 152, 'DELETE_FUND',
411      'Allow a user to delete a fund' );
412 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 153, 'VIEW_FUND',
413      'Allow a user to view a fund' );
414 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 154, 'UPDATE_FUND',
415      'Allow a user to update a fund' );
416 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 155, 'CREATE_FUND_ALLOCATION',
417      'Allow a user to create a new fund allocation' );
418 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 156, 'DELETE_FUND_ALLOCATION',
419      'Allow a user to delete a fund allocation' );
420 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 157, 'VIEW_FUND_ALLOCATION',
421      'Allow a user to view a fund allocation' );
422 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 158, 'UPDATE_FUND_ALLOCATION',
423      'Allow a user to update a fund allocation' );
424 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 159, 'GENERAL_ACQ',
425      'Lowest level permission required to access the ACQ interface' );
426 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 160, 'CREATE_PROVIDER',
427      'Allow a user to create a new provider' );
428 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 161, 'DELETE_PROVIDER',
429      'Allow a user to delate a provider' );
430 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 162, 'VIEW_PROVIDER',
431      'Allow a user to view a provider' );
432 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 163, 'UPDATE_PROVIDER',
433      'Allow a user to update a provider' );
434 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 164, 'ADMIN_FUNDING_SOURCE',
435      'Allow a user to create/view/update/delete a funding source' );
436 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 165, 'ADMIN_FUND',
437      '(Deprecated) Allow a user to create/view/update/delete a fund' );
438 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 166, 'MANAGE_FUNDING_SOURCE',
439      'Allow a user to view/credit/debit a funding source' );
440 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 167, 'MANAGE_FUND',
441      'Allow a user to view/credit/debit a fund' );
442 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 168, 'CREATE_PICKLIST',
443      'Allows a user to create a picklist' );
444 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 169, 'ADMIN_PROVIDER',
445      'Allow a user to create/view/update/delete a provider' );
446 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 170, 'MANAGE_PROVIDER',
447      'Allow a user to view and purchase from a provider' );
448 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 171, 'VIEW_PICKLIST',
449      'Allow a user to view another users picklist' );
450 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 172, 'DELETE_RECORD',
451      'Allow a staff member to directly remove a bibliographic record' );
452 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 173, 'ADMIN_CURRENCY_TYPE',
453      'Allow a user to create/view/update/delete a currency_type' );
454 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 174, 'MARK_BAD_DEBT',
455      'Allow a user to mark a transaction as bad (unrecoverable) debt' );
456 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 175, 'VIEW_BILLING_TYPE',
457      'Allow a user to view billing types' );
458 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 176, 'MARK_ITEM_AVAILABLE',
459      'Allow a user to mark an item status as ''available''' );
460 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 177, 'MARK_ITEM_CHECKED_OUT',
461      'Allow a user to mark an item status as ''checked out''' );
462 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 178, 'MARK_ITEM_BINDERY',
463      'Allow a user to mark an item status as ''bindery''' );
464 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 179, 'MARK_ITEM_LOST',
465      'Allow a user to mark an item status as ''lost''' );
466 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 180, 'MARK_ITEM_MISSING',
467      'Allow a user to mark an item status as ''missing''' );
468 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 181, 'MARK_ITEM_IN_PROCESS',
469      'Allow a user to mark an item status as ''in process''' );
470 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 182, 'MARK_ITEM_IN_TRANSIT',
471      'Allow a user to mark an item status as ''in transit''' );
472 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 183, 'MARK_ITEM_RESHELVING',
473      'Allow a user to mark an item status as ''reshelving''' );
474 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 184, 'MARK_ITEM_ON_HOLDS_SHELF',
475      'Allow a user to mark an item status as ''on holds shelf''' );
476 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 185, 'MARK_ITEM_ON_ORDER',
477      'Allow a user to mark an item status as ''on order''' );
478 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 186, 'MARK_ITEM_ILL',
479      'Allow a user to mark an item status as ''inter-library loan''' );
480 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 187, 'group_application.user.staff.acq',
481      'Allows a user to add/remove/edit users in the "ACQ" group' );
482 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 188, 'CREATE_PURCHASE_ORDER',
483      'Allows a user to create a purchase order' );
484 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 189, 'VIEW_PURCHASE_ORDER',
485      'Allows a user to view a purchase order' );
486 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 190, 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
487      'Allows a user to import a bib record from the acq staging area (on-order record) into the ILS bib data set' );
488 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 191, 'RECEIVE_PURCHASE_ORDER',
489      'Allows a user to mark a purchase order, lineitem, or individual copy as received' );
490 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 192, 'VIEW_ORG_SETTINGS',
491      'Allows a user to view all org settings at the specified level' );
492 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 193, 'CREATE_MFHD_RECORD',
493      'Allows a user to create a new MFHD record' );
494 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 194, 'UPDATE_MFHD_RECORD',
495      'Allows a user to update an MFHD record' );
496 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 195, 'DELETE_MFHD_RECORD',
497      'Allows a user to delete an MFHD record' );
498 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 196, 'ADMIN_ACQ_FUND',
499      'Allow a user to create/view/update/delete a fund' );
500 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 197, 'group_application.user.staff.acq_admin',
501      'Allows a user to add/remove/edit users in the "Acquisitions Administrators" group' );
502 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 198, 'SET_CIRC_CLAIMS_RETURNED.override',
503      'Allows staff to override the max claims returned value for a patron' );
504 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 199, 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
505      'Allows staff to manually change a patron''s claims returned count' );
506 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 200, 'UPDATE_BILL_NOTE',
507      'Allows staff to edit the note for a bill on a transaction' );
508 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 201, 'UPDATE_PAYMENT_NOTE',
509      'Allows staff to edit the note for a payment on a transaction' );
510 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
511      'Allows staff to manually change a patron''s claims never checkout out count' );
512 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 203, 'ADMIN_COPY_LOCATION_ORDER',
513      'Allow a user to create/view/update/delete a copy location order' );
514 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 204, 'ASSIGN_GROUP_PERM',
515      '' );
516 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 205, 'CREATE_AUDIENCE',
517      '' );
518 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 206, 'CREATE_BIB_LEVEL',
519      '' );
520 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 207, 'CREATE_CIRC_DURATION',
521      '' );
522 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 208, 'CREATE_CIRC_MOD',
523      '' );
524 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 209, 'CREATE_COPY_STATUS',
525      '' );
526 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 210, 'CREATE_HOURS_OF_OPERATION',
527      '' );
528 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 211, 'CREATE_ITEM_FORM',
529      '' );
530 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 212, 'CREATE_ITEM_TYPE',
531      '' );
532 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 213, 'CREATE_LANGUAGE',
533      '' );
534 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 214, 'CREATE_LASSO',
535      '' );
536 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 215, 'CREATE_LASSO_MAP',
537      '' );
538 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 216, 'CREATE_LIT_FORM',
539      '' );
540 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 217, 'CREATE_METABIB_FIELD',
541      '' );
542 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 218, 'CREATE_NET_ACCESS_LEVEL',
543      '' );
544 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 219, 'CREATE_ORG_ADDRESS',
545      '' );
546 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 220, 'CREATE_ORG_TYPE',
547      '' );
548 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 221, 'CREATE_ORG_UNIT',
549      '' );
550 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 222, 'CREATE_ORG_UNIT_CLOSING',
551      '' );
552 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 223, 'CREATE_PERM',
553      '' );
554 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 224, 'CREATE_RELEVANCE_ADJUSTMENT',
555      '' );
556 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 225, 'CREATE_SURVEY',
557      '' );
558 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 226, 'CREATE_VR_FORMAT',
559      '' );
560 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 227, 'CREATE_XML_TRANSFORM',
561      '' );
562 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 228, 'DELETE_AUDIENCE',
563      '' );
564 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 229, 'DELETE_BIB_LEVEL',
565      '' );
566 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 230, 'DELETE_CIRC_DURATION',
567      '' );
568 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 231, 'DELETE_CIRC_MOD',
569      '' );
570 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 232, 'DELETE_COPY_STATUS',
571      '' );
572 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 233, 'DELETE_HOURS_OF_OPERATION',
573      '' );
574 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 234, 'DELETE_ITEM_FORM',
575      '' );
576 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 235, 'DELETE_ITEM_TYPE',
577      '' );
578 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 236, 'DELETE_LANGUAGE',
579      '' );
580 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 237, 'DELETE_LASSO',
581      '' );
582 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 238, 'DELETE_LASSO_MAP',
583      '' );
584 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 239, 'DELETE_LIT_FORM',
585      '' );
586 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 240, 'DELETE_METABIB_FIELD',
587      '' );
588 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 241, 'DELETE_NET_ACCESS_LEVEL',
589      '' );
590 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 242, 'DELETE_ORG_ADDRESS',
591      '' );
592 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 243, 'DELETE_ORG_TYPE',
593      '' );
594 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 244, 'DELETE_ORG_UNIT',
595      '' );
596 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 245, 'DELETE_ORG_UNIT_CLOSING',
597      '' );
598 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 246, 'DELETE_PERM',
599      '' );
600 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 247, 'DELETE_RELEVANCE_ADJUSTMENT',
601      '' );
602 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 248, 'DELETE_SURVEY',
603      '' );
604 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 249, 'DELETE_TRANSIT',
605      '' );
606 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 250, 'DELETE_VR_FORMAT',
607      '' );
608 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 251, 'DELETE_XML_TRANSFORM',
609      '' );
610 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 252, 'REMOVE_GROUP_PERM',
611      '' );
612 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 253, 'TRANSIT_COPY',
613      '' );
614 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 254, 'UPDATE_AUDIENCE',
615      '' );
616 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 255, 'UPDATE_BIB_LEVEL',
617      '' );
618 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 256, 'UPDATE_CIRC_DURATION',
619      '' );
620 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 257, 'UPDATE_CIRC_MOD',
621      '' );
622 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 258, 'UPDATE_COPY_NOTE',
623      '' );
624 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 259, 'UPDATE_COPY_STATUS',
625      '' );
626 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 260, 'UPDATE_GROUP_PERM',
627      '' );
628 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 261, 'UPDATE_HOURS_OF_OPERATION',
629      '' );
630 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 262, 'UPDATE_ITEM_FORM',
631      '' );
632 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 263, 'UPDATE_ITEM_TYPE',
633      '' );
634 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 264, 'UPDATE_LANGUAGE',
635      '' );
636 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 265, 'UPDATE_LASSO',
637      '' );
638 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 266, 'UPDATE_LASSO_MAP',
639      '' );
640 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 267, 'UPDATE_LIT_FORM',
641      '' );
642 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 268, 'UPDATE_METABIB_FIELD',
643      '' );
644 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 269, 'UPDATE_NET_ACCESS_LEVEL',
645      '' );
646 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 270, 'UPDATE_ORG_ADDRESS',
647      '' );
648 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 271, 'UPDATE_ORG_TYPE',
649      '' );
650 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 272, 'UPDATE_ORG_UNIT_CLOSING',
651      '' );
652 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 273, 'UPDATE_PERM',
653      '' );
654 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 274, 'UPDATE_RELEVANCE_ADJUSTMENT',
655      '' );
656 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 275, 'UPDATE_SURVEY',
657      '' );
658 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 276, 'UPDATE_TRANSIT',
659      '' );
660 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 277, 'UPDATE_VOLUME_NOTE',
661      '' );
662 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 278, 'UPDATE_VR_FORMAT',
663      '' );
664 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 279, 'UPDATE_XML_TRANSFORM',
665      '' );
666 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 280, 'MERGE_BIB_RECORDS',
667      '' );
668 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 281, 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
669      '' );
670 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 282, 'CREATE_ACQ_FUNDING_SOURCE',
671      '' );
672 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 283, 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
673      '' );
674 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 284, 'CREATE_AUTHORITY_IMPORT_QUEUE',
675      '' );
676 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 285, 'CREATE_AUTHORITY_RECORD_NOTE',
677      '' );
678 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 286, 'CREATE_BIB_IMPORT_FIELD_DEF',
679      '' );
680 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 287, 'CREATE_BIB_IMPORT_QUEUE',
681      '' );
682 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 288, 'CREATE_LOCALE',
683      '' );
684 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 289, 'CREATE_MARC_CODE',
685      '' );
686 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 290, 'CREATE_TRANSLATION',
687      '' );
688 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 291, 'DELETE_ACQ_FUNDING_SOURCE',
689      '' );
690 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 292, 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
691      '' );
692 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 293, 'DELETE_AUTHORITY_IMPORT_QUEUE',
693      '' );
694 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 294, 'DELETE_AUTHORITY_RECORD_NOTE',
695      '' );
696 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 295, 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF',
697      '' );
698 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 296, 'DELETE_BIB_IMPORT_QUEUE',
699      '' );
700 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 297, 'DELETE_LOCALE',
701      '' );
702 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 298, 'DELETE_MARC_CODE',
703      '' );
704 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 299, 'DELETE_TRANSLATION',
705      '' );
706 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 300, 'UPDATE_ACQ_FUNDING_SOURCE',
707      '' );
708 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 301, 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
709      '' );
710 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 302, 'UPDATE_AUTHORITY_IMPORT_QUEUE',
711      '' );
712 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 303, 'UPDATE_AUTHORITY_RECORD_NOTE',
713      '' );
714 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 304, 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF',
715      '' );
716 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 305, 'UPDATE_BIB_IMPORT_QUEUE',
717      '' );
718 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 306, 'UPDATE_LOCALE',
719      '' );
720 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 307, 'UPDATE_MARC_CODE',
721      '' );
722 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 308, 'UPDATE_TRANSLATION',
723      '' );
724 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 309, 'VIEW_ACQ_FUNDING_SOURCE',
725      '' );
726 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 310, 'VIEW_AUTHORITY_RECORD_NOTES',
727      '' );
728 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 311, 'CREATE_IMPORT_ITEM',
729      '' );
730 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 312, 'CREATE_IMPORT_ITEM_ATTR_DEF',
731      '' );
732 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 313, 'CREATE_IMPORT_TRASH_FIELD',
733      '' );
734 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 314, 'DELETE_IMPORT_ITEM',
735      '' );
736 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 315, 'DELETE_IMPORT_ITEM_ATTR_DEF',
737      '' );
738 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 316, 'DELETE_IMPORT_TRASH_FIELD',
739      '' );
740 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 317, 'UPDATE_IMPORT_ITEM',
741      '' );
742 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 318, 'UPDATE_IMPORT_ITEM_ATTR_DEF',
743      '' );
744 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 319, 'UPDATE_IMPORT_TRASH_FIELD',
745      '' );
746 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 320, 'UPDATE_ORG_UNIT_SETTING_ALL',
747      '' );
748 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 321, 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee',
749      '' );
750 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 322, 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price',
751      '' );
752 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 323, 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout',
753      '' );
754 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 324, 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout',
755      '' );
756 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 325, 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails',
757      '' );
758 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 326, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval',
759      '' );
760 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 327, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval',
761      '' );
762 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 328, 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow',
763      '' );
764 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 329, 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost',
765      '' );
766 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 330, 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft',
767      '' );
768 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 331, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard',
769      '' );
770 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 332, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft',
771      '' );
772 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 333, 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex',
773      '' );
774 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 334, 'UPDATE_ORG_UNIT_SETTING.global.password_regex',
775      '' );
776 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 335, 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max',
777      '' );
778 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 336, 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval',
779      '' );
780 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 337, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout',
781      '' );
782 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 338, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event',
783      '' );
784 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 339, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password',
785      '' );
786 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 340, 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold',
787      '' );
788 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 341, 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty',
789      '' );
790 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 342, 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty',
791      '' );
792 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 343, 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone',
793      '' );
794 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 344, 'HOLD_ITEM_CHECKED_OUT.override',
795      'Allows a user to place a hold on an item that they already have checked out' );
796 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 345, 'ADMIN_ACQ_CANCEL_CAUSE',
797      'Allow a user to create/update/delete reasons for order cancellations' );
798 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 346, 'ACQ_XFER_MANUAL_DFUND_AMOUNT',
799      'Allow a user to transfer different amounts of money out of one fund and into another' );
800 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 347, 'OVERRIDE_HOLD_HAS_LOCAL_COPY',
801      'Allow a user to override the circ.holds.hold_has_copy_at.block setting' );
802 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 348, 'UPDATE_PICKUP_LIB_FROM_TRANSIT',
803      'Allow a user to change the pickup and transit destination for a captured hold item already in transit' );
804 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 349, 'COPY_NEEDED_FOR_HOLD.override',
805      'Allow a user to force renewal of an item that could fulfill a hold request' );
806 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 350, 'MERGE_AUTH_RECORDS',
807      'Allow a user to merge authority records together' );
808 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 351, 'ALLOW_ALT_TCN',
809      'Allows staff to import a record using an alternate TCN to avoid conflicts' );
810 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 352, 'ADMIN_TRIGGER_EVENT_DEF',
811      'Allow a user to administer trigger event definitions' );
812 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 353, 'ADMIN_TRIGGER_CLEANUP',
813      'Allow a user to create, delete, and update trigger cleanup entries' );
814 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 354, 'CREATE_TRIGGER_CLEANUP',
815      'Allow a user to create trigger cleanup entries' );
816 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 355, 'DELETE_TRIGGER_CLEANUP',
817      'Allow a user to delete trigger cleanup entries' );
818 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 356, 'UPDATE_TRIGGER_CLEANUP',
819      'Allow a user to update trigger cleanup entries' );
820 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 357, 'CREATE_TRIGGER_EVENT_DEF',
821      'Allow a user to create trigger event definitions' );
822 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 358, 'DELETE_TRIGGER_EVENT_DEF',
823      'Allow a user to delete trigger event definitions' );
824 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 359, 'UPDATE_TRIGGER_EVENT_DEF',
825      'Allow a user to update trigger event definitions' );
826 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 360, 'VIEW_TRIGGER_EVENT_DEF',
827      'Allow a user to view trigger event definitions' );
828 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 361, 'ADMIN_TRIGGER_HOOK',
829      'Allow a user to create, update, and delete trigger hooks' );
830 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 362, 'CREATE_TRIGGER_HOOK',
831      'Allow a user to create trigger hooks' );
832 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 363, 'DELETE_TRIGGER_HOOK',
833      'Allow a user to delete trigger hooks' );
834 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 364, 'UPDATE_TRIGGER_HOOK',
835      'Allow a user to update trigger hooks' );
836 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 365, 'ADMIN_TRIGGER_REACTOR',
837      'Allow a user to create, update, and delete trigger reactors' );
838 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 366, 'CREATE_TRIGGER_REACTOR',
839      'Allow a user to create trigger reactors' );
840 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 367, 'DELETE_TRIGGER_REACTOR',
841      'Allow a user to delete trigger reactors' );
842 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 368, 'UPDATE_TRIGGER_REACTOR',
843      'Allow a user to update trigger reactors' );
844 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 369, 'ADMIN_TRIGGER_TEMPLATE_OUTPUT',
845      'Allow a user to delete trigger template output' );
846 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 370, 'DELETE_TRIGGER_TEMPLATE_OUTPUT',
847      'Allow a user to delete trigger template output' );
848 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 371, 'ADMIN_TRIGGER_VALIDATOR',
849      'Allow a user to create, update, and delete trigger validators' );
850 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 372, 'CREATE_TRIGGER_VALIDATOR',
851      'Allow a user to create trigger validators' );
852 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 373, 'DELETE_TRIGGER_VALIDATOR',
853      'Allow a user to delete trigger validators' );
854 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 374, 'UPDATE_TRIGGER_VALIDATOR',
855      'Allow a user to update trigger validators' );
856 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 375, 'HOLD_LOCAL_AVAIL_OVERRIDE',
857      'Allow a user to place a hold despite the availability of a local copy' );
858 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 376, 'ADMIN_BOOKING_RESOURCE',
859      'Enables the user to create/update/delete booking resources' );
860 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 377, 'ADMIN_BOOKING_RESOURCE_TYPE',
861      'Enables the user to create/update/delete booking resource types' );
862 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 378, 'ADMIN_BOOKING_RESOURCE_ATTR',
863      'Enables the user to create/update/delete booking resource attributes' );
864 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 379, 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
865      'Enables the user to create/update/delete booking resource attribute maps' );
866 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 380, 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
867      'Enables the user to create/update/delete booking resource attribute values' );
868 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 381, 'ADMIN_BOOKING_RESERVATION',
869      'Enables the user to create/update/delete booking reservations' );
870 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 382, 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP',
871      'Enables the user to create/update/delete booking reservation attribute value maps' );
872 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 383, 'RETRIEVE_RESERVATION_PULL_LIST',
873      'Allows a user to retrieve a booking reservation pull list' );
874 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 384, 'CAPTURE_RESERVATION',
875      'Allows a user to capture booking reservations' );
876 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 385, 'UPDATE_RECORD',
877      '' );
878 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 386, 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds',
879      '' );
880 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 387, 'MERGE_USERS',
881      'Allows user records to be merged' );
882 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 388, 'ISSUANCE_HOLDS',
883      'Allow a user to place holds on serials issuances' );
884 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 389, 'VIEW_CREDIT_CARD_PROCESSING',
885      'View org unit settings related to credit card processing' );
886 INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 390, 'ADMIN_CREDIT_CARD_PROCESSING',
887      'Update org unit settings related to credit card processing' );
888
889 -- Now for the permissions from the IDL.  We don't have descriptions for them.
890
891 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 391, 'ADMIN_ACQ_CLAIM' );
892 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 392, 'ADMIN_ACQ_CLAIM_EVENT_TYPE' );
893 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 393, 'ADMIN_ACQ_CLAIM_TYPE' );
894 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 394, 'ADMIN_ACQ_DISTRIB_FORMULA' );
895 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 395, 'ADMIN_ACQ_FISCAL_YEAR' );
896 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 396, 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT' );
897 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 397, 'ADMIN_ACQ_FUND_TAG' );
898 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 398, 'ADMIN_ACQ_LINEITEM_ALERT_TEXT' );
899 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 399, 'ADMIN_AGE_PROTECT_RULE' );
900 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 400, 'ADMIN_ASSET_COPY_TEMPLATE' );
901 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 401, 'ADMIN_BOOKING_RESERVATION_ATTR_MAP' );
902 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 402, 'ADMIN_CIRC_MATRIX_MATCHPOINT' );
903 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 403, 'ADMIN_CIRC_MOD' );
904 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 404, 'ADMIN_CLAIM_POLICY' );
905 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 405, 'ADMIN_CONFIG_REMOTE_ACCOUNT' );
906 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 406, 'ADMIN_FIELD_DOC' );
907 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 407, 'ADMIN_GLOBAL_FLAG' );
908 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 408, 'ADMIN_GROUP_PENALTY_THRESHOLD' );
909 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 409, 'ADMIN_HOLD_CANCEL_CAUSE' );
910 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 410, 'ADMIN_HOLD_MATRIX_MATCHPOINT' );
911 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 411, 'ADMIN_IDENT_TYPE' );
912 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 412, 'ADMIN_IMPORT_ITEM_ATTR_DEF' );
913 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 413, 'ADMIN_INDEX_NORMALIZER' );
914 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 414, 'ADMIN_INVOICE' );
915 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 415, 'ADMIN_INVOICE_METHOD' );
916 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 416, 'ADMIN_INVOICE_PAYMENT_METHOD' );
917 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 417, 'ADMIN_LINEITEM_MARC_ATTR_DEF' );
918 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 418, 'ADMIN_MARC_CODE' );
919 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 419, 'ADMIN_MAX_FINE_RULE' );
920 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 420, 'ADMIN_MERGE_PROFILE' );
921 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 421, 'ADMIN_ORG_UNIT_SETTING_TYPE' );
922 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 422, 'ADMIN_RECURRING_FINE_RULE' );
923 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 423, 'ADMIN_SERIAL_SUBSCRIPTION' );
924 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 424, 'ADMIN_STANDING_PENALTY' );
925 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 425, 'ADMIN_SURVEY' );
926 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 426, 'ADMIN_USER_REQUEST_TYPE' );
927 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 427, 'ADMIN_USER_SETTING_GROUP' );
928 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 428, 'ADMIN_USER_SETTING_TYPE' );
929 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 429, 'ADMIN_Z3950_SOURCE' );
930 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 430, 'CREATE_BIB_BTYPE' );
931 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 431, 'CREATE_BIBLIO_FINGERPRINT' );
932 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 432, 'CREATE_BIB_SOURCE' );
933 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 433, 'CREATE_BILLING_TYPE' );
934 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 434, 'CREATE_CN_BTYPE' );
935 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 435, 'CREATE_COPY_BTYPE' );
936 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 436, 'CREATE_INVOICE' );
937 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 437, 'CREATE_INVOICE_ITEM_TYPE' );
938 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 438, 'CREATE_INVOICE_METHOD' );
939 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 439, 'CREATE_MERGE_PROFILE' );
940 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 440, 'CREATE_METABIB_CLASS' );
941 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 441, 'CREATE_METABIB_SEARCH_ALIAS' );
942 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 442, 'CREATE_USER_BTYPE' );
943 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 443, 'DELETE_BIB_BTYPE' );
944 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 444, 'DELETE_BIBLIO_FINGERPRINT' );
945 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 445, 'DELETE_BIB_SOURCE' );
946 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 446, 'DELETE_BILLING_TYPE' );
947 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 447, 'DELETE_CN_BTYPE' );
948 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 448, 'DELETE_COPY_BTYPE' );
949 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 449, 'DELETE_INVOICE_ITEM_TYPE' );
950 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 450, 'DELETE_INVOICE_METHOD' );
951 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 451, 'DELETE_MERGE_PROFILE' );
952 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 452, 'DELETE_METABIB_CLASS' );
953 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 453, 'DELETE_METABIB_SEARCH_ALIAS' );
954 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 454, 'DELETE_USER_BTYPE' );
955 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 455, 'MANAGE_CLAIM' );
956 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 456, 'UPDATE_BIB_BTYPE' );
957 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 457, 'UPDATE_BIBLIO_FINGERPRINT' );
958 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 458, 'UPDATE_BIB_SOURCE' );
959 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 459, 'UPDATE_BILLING_TYPE' );
960 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 460, 'UPDATE_CN_BTYPE' );
961 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 461, 'UPDATE_COPY_BTYPE' );
962 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 462, 'UPDATE_INVOICE_ITEM_TYPE' );
963 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 463, 'UPDATE_INVOICE_METHOD' );
964 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 464, 'UPDATE_MERGE_PROFILE' );
965 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 465, 'UPDATE_METABIB_CLASS' );
966 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 466, 'UPDATE_METABIB_SEARCH_ALIAS' );
967 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 467, 'UPDATE_USER_BTYPE' );
968 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 468, 'user_request.create' );
969 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 469, 'user_request.delete' );
970 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 470, 'user_request.update' );
971 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 471, 'user_request.view' );
972 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 472, 'VIEW_ACQ_FUND_ALLOCATION_PERCENT' );
973 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 473, 'VIEW_CIRC_MATRIX_MATCHPOINT' );
974 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 474, 'VIEW_CLAIM' );
975 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 475, 'VIEW_GROUP_PENALTY_THRESHOLD' );
976 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 476, 'VIEW_HOLD_MATRIX_MATCHPOINT' );
977 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 477, 'VIEW_INVOICE' );
978 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 478, 'VIEW_MERGE_PROFILE' );
979 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 479, 'VIEW_SERIAL_SUBSCRIPTION' );
980 INSERT INTO permission.temp_perm ( id, code ) VALUES ( 480, 'VIEW_STANDING_PENALTY' );
981
982 -- For every permission in the temp_perm table that has a matching
983 -- permission in the real table: record the original id.
984
985 UPDATE permission.temp_perm AS tp
986 SET old_id =
987         (
988                 SELECT id
989                 FROM permission.perm_list AS ppl
990                 WHERE ppl.code = tp.code
991         )
992 WHERE code IN ( SELECT code FROM permission.perm_list );
993
994 -- Start juggling ids.
995
996 -- If any permissions have negative ids (with the special exception of -1),
997 -- we need to move them into the positive range in order to avoid duplicate
998 -- key problems (since we are going to use the negative range as a temporary
999 -- staging area).
1000
1001 -- First, move any predefined permissions that have negative ids (again with
1002 -- the special exception of -1).  Temporarily give them positive ids based on
1003 -- the sequence.
1004
1005 UPDATE permission.perm_list
1006 SET id = NEXTVAL('permission.perm_list_id_seq'::regclass)
1007 WHERE id < -1
1008   AND code IN (SELECT code FROM permission.temp_perm);
1009
1010 -- Identify any non-predefined permissions whose ids are either negative
1011 -- or within the range (0-1000) reserved for predefined permissions.
1012 -- Assign them ids above 1000, based on the sequence.  Record the new
1013 -- ids in the temp_perm table.
1014
1015 INSERT INTO permission.temp_perm ( id, code, description, old_id, predefined )
1016 (
1017         SELECT NEXTVAL('permission.perm_list_id_seq'::regclass),
1018                 code, description, id, false
1019         FROM permission.perm_list
1020         WHERE  ( id < -1 OR id BETWEEN 0 AND 1000 )
1021         AND code NOT IN (SELECT code FROM permission.temp_perm)
1022 );
1023
1024 -- Now update the ids of those non-predefined permissions, using the
1025 -- values assigned in the previous step.
1026
1027 UPDATE permission.perm_list AS ppl
1028 SET id = (
1029                 SELECT id
1030                 FROM permission.temp_perm AS tp
1031                 WHERE tp.code = ppl.code
1032         )
1033 WHERE id IN ( SELECT old_id FROM permission.temp_perm WHERE NOT predefined );
1034
1035 -- Now the negative ids have been eliminated, except for -1.  Move all the
1036 -- predefined permissions temporarily into the negative range.
1037
1038 UPDATE permission.perm_list
1039 SET id = -1 - id
1040 WHERE id <> -1
1041 AND code IN ( SELECT code from permission.temp_perm WHERE predefined );
1042
1043 -- Apply the final ids to the existing predefined permissions.
1044
1045 UPDATE permission.perm_list AS ppl
1046 SET id =
1047         (
1048                 SELECT id
1049                 FROM permission.temp_perm AS tp
1050                 WHERE tp.code = ppl.code
1051         )
1052 WHERE
1053         id <> -1
1054         AND ppl.code IN
1055         (
1056                 SELECT code from permission.temp_perm
1057                 WHERE predefined
1058                 AND old_id IS NOT NULL
1059         );
1060
1061 -- If there are any predefined permissions that don't exist yet in
1062 -- permission.perm_list, insert them now.
1063
1064 INSERT INTO permission.perm_list ( id, code, description )
1065 (
1066         SELECT id, code, description
1067         FROM permission.temp_perm
1068         WHERE old_id IS NULL
1069 );
1070
1071 -- Reset the sequence to the lowest feasible value.  This may or may not
1072 -- accomplish anything, but it will do no harm.
1073
1074 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, GREATEST( 
1075         (SELECT MAX(id) FROM permission.perm_list), 1000 ));
1076
1077 -- If any permission lacks a description, use the code as a description.
1078 -- It's better than nothing.
1079
1080 UPDATE permission.perm_list
1081 SET description = code
1082 WHERE description IS NULL
1083    OR description = '';
1084
1085 -- Thus endeth the Great Renumbering.
1086
1087 -- Having massaged the permissions, massage the way they are assigned, by inserting
1088 -- rows into permission.grp_perm_map.  Some of these permissions may have already
1089 -- been assigned, so we insert the rows only if they aren't already there.
1090
1091 -- for backwards compat, give everyone the permission
1092 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1093     SELECT 1, id, 0, false FROM permission.perm_list AS perm
1094         WHERE code = 'HOLD_ITEM_CHECKED_OUT.override'
1095                 AND NOT EXISTS (
1096                         SELECT 1
1097                         FROM permission.grp_perm_map AS map
1098                         WHERE
1099                                 grp = 1
1100                                 AND map.perm = perm.id
1101                 );
1102
1103 -- Add trigger administration permissions to the Local System Administrator group.
1104 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1105     SELECT 10, id, 1, false FROM permission.perm_list AS perm
1106     WHERE (
1107                 perm.code LIKE 'ADMIN_TRIGGER%'
1108         OR perm.code LIKE 'CREATE_TRIGGER%'
1109         OR perm.code LIKE 'DELETE_TRIGGER%'
1110         OR perm.code LIKE 'UPDATE_TRIGGER%'
1111         ) AND NOT EXISTS (
1112                 SELECT 1
1113                 FROM permission.grp_perm_map AS map
1114                 WHERE
1115                         grp = 10
1116                         AND map.perm = perm.id
1117         );
1118
1119 -- View trigger permissions are required at a consortial level for initial setup
1120 -- (as before, only if the row doesn't already exist)
1121 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1122     SELECT 10, id, 0, false FROM permission.perm_list AS perm
1123         WHERE code LIKE 'VIEW_TRIGGER%'
1124                 AND NOT EXISTS (
1125                         SELECT 1
1126                         FROM permission.grp_perm_map AS map
1127                         WHERE
1128                                 grp = 10
1129                                 AND map.perm = perm.id
1130                 );
1131
1132 -- Permission for merging auth records may already be defined,
1133 -- so add it only if it isn't there.
1134 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
1135     SELECT 4, id, 1, false FROM permission.perm_list AS perm
1136         WHERE code = 'MERGE_AUTH_RECORDS'
1137                 AND NOT EXISTS (
1138                         SELECT 1
1139                         FROM permission.grp_perm_map AS map
1140                         WHERE
1141                                 grp = 4
1142                                 AND map.perm = perm.id
1143                 );
1144
1145 -- Create a reference table as parent to both
1146 -- config.org_unit_setting_type and config_usr_setting_type
1147
1148 CREATE TABLE config.settings_group (
1149     name    TEXT PRIMARY KEY,
1150     label   TEXT UNIQUE NOT NULL -- I18N
1151 );
1152
1153 -- org_unit setting types
1154 CREATE TABLE config.org_unit_setting_type (
1155     name            TEXT    PRIMARY KEY,
1156     label           TEXT    UNIQUE NOT NULL,
1157     grp             TEXT    REFERENCES config.settings_group (name),
1158     description     TEXT,
1159     datatype        TEXT    NOT NULL DEFAULT 'string',
1160     fm_class        TEXT,
1161     view_perm       INT,
1162     update_perm     INT,
1163     --
1164     -- define valid datatypes
1165     --
1166     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1167     ( 'bool', 'integer', 'float', 'currency', 'interval',
1168       'date', 'string', 'object', 'array', 'link' ) ),
1169     --
1170     -- fm_class is meaningful only for 'link' datatype
1171     --
1172     CONSTRAINT coust_no_empty_link CHECK
1173     ( ( datatype =  'link' AND fm_class IS NOT NULL ) OR
1174       ( datatype <> 'link' AND fm_class IS NULL ) ),
1175         CONSTRAINT view_perm_fkey FOREIGN KEY (view_perm) REFERENCES permission.perm_list (id)
1176                 ON UPDATE CASCADE
1177                 ON DELETE RESTRICT
1178                 DEFERRABLE INITIALLY DEFERRED,
1179         CONSTRAINT update_perm_fkey FOREIGN KEY (update_perm) REFERENCES permission.perm_list (id)
1180                 ON UPDATE CASCADE
1181                 DEFERRABLE INITIALLY DEFERRED
1182 );
1183
1184 CREATE TABLE config.usr_setting_type (
1185
1186     name TEXT PRIMARY KEY,
1187     opac_visible BOOL NOT NULL DEFAULT FALSE,
1188     label TEXT UNIQUE NOT NULL,
1189     description TEXT,
1190     grp             TEXT    REFERENCES config.settings_group (name),
1191     datatype TEXT NOT NULL DEFAULT 'string',
1192     fm_class TEXT,
1193
1194     --
1195     -- define valid datatypes
1196     --
1197     CONSTRAINT coust_valid_datatype CHECK ( datatype IN
1198     ( 'bool', 'integer', 'float', 'currency', 'interval',
1199         'date', 'string', 'object', 'array', 'link' ) ),
1200
1201     --
1202     -- fm_class is meaningful only for 'link' datatype
1203     --
1204     CONSTRAINT coust_no_empty_link CHECK
1205     ( ( datatype = 'link' AND fm_class IS NOT NULL ) OR
1206         ( datatype <> 'link' AND fm_class IS NULL ) )
1207
1208 );
1209
1210 --------------------------------------
1211 -- Seed data for org_unit_setting_type
1212 --------------------------------------
1213
1214 INSERT into config.org_unit_setting_type
1215 ( name, label, description, datatype ) VALUES
1216
1217 ( 'auth.opac_timeout',
1218   'OPAC Inactivity Timeout (in seconds)',
1219   null,
1220   'integer' ),
1221
1222 ( 'auth.staff_timeout',
1223   'Staff Login Inactivity Timeout (in seconds)',
1224   null,
1225   'integer' ),
1226
1227 ( 'circ.lost_materials_processing_fee',
1228   'Lost Materials Processing Fee',
1229   null,
1230   'currency' ),
1231
1232 ( 'cat.default_item_price',
1233   'Default Item Price',
1234   null,
1235   'currency' ),
1236
1237 ( 'org.bounced_emails',
1238   'Sending email address for patron notices',
1239   null,
1240   'string' ),
1241
1242 ( 'circ.hold_expire_alert_interval',
1243   'Holds: Expire Alert Interval',
1244   'Amount of time before a hold expires at which point the patron should be alerted',
1245   'interval' ),
1246
1247 ( 'circ.hold_expire_interval',
1248   'Holds: Expire Interval',
1249   'Amount of time after a hold is placed before the hold expires.  Example "100 days"',
1250   'interval' ),
1251
1252 ( 'credit.payments.allow',
1253   'Allow Credit Card Payments',
1254   'If enabled, patrons will be able to pay fines accrued at this location via credit card',
1255   'bool' ),
1256
1257 ( 'global.default_locale',
1258   'Global Default Locale',
1259   null,
1260   'string' ),
1261
1262 ( 'circ.void_overdue_on_lost',
1263   'Void overdue fines when items are marked lost',
1264   null,
1265   'bool' ),
1266
1267 ( 'circ.hold_stalling.soft',
1268   'Holds: Soft stalling interval',
1269   'How long to wait before allowing remote items to be opportunisticaly captured for a hold.  Example "5 days"',
1270   'interval' ),
1271
1272 ( 'circ.hold_stalling_hard',
1273   'Holds: Hard stalling interval',
1274   '',
1275   'interval' ),
1276
1277 ( 'circ.hold_boundary.hard',
1278   'Holds: Hard boundary',
1279   null,
1280   'integer' ),
1281
1282 ( 'circ.hold_boundary.soft',
1283   'Holds: Soft boundary',
1284   null,
1285   'integer' ),
1286
1287 ( 'opac.barcode_regex',
1288   'Patron barcode format',
1289   'Regular expression defining the patron barcode format',
1290   'string' ),
1291
1292 ( 'global.password_regex',
1293   'Password format',
1294   'Regular expression defining the password format',
1295   'string' ),
1296
1297 ( 'circ.item_checkout_history.max',
1298   'Maximum previous checkouts displayed',
1299   'This is maximum number of previous circulations the staff client will display when investigating item details',
1300   'integer' ),
1301
1302 ( 'circ.reshelving_complete.interval',
1303   'Change reshelving status interval',
1304   'Amount of time to wait before changing an item from "reshelving" status to "available".  Examples "1 day", "6 hours"',
1305   'interval' ),
1306
1307 ( 'circ.holds.default_estimated_wait_interval',
1308   'Holds: Default Estimated Wait',
1309   'When predicting the amount of time a patron will be waiting for a hold to be fulfilled, this is the default estimated length of time to assume an item will be checked out.',
1310   'interval' ),
1311
1312 ( 'circ.holds.min_estimated_wait_interval',
1313   'Holds: Minimum Estimated Wait',
1314   'When predicting the amount of time a patron will be waiting for a hold to be fulfilled, this is the minimum estimated length of time to assume an item will be checked out.',
1315   'interval' ),
1316
1317 ( 'circ.selfcheck.patron_login_timeout',
1318   'Selfcheck: Patron Login Timeout (in seconds)',
1319   'Number of seconds of inactivity before the patron is logged out of the selfcheck interfacer',
1320   'integer' ),
1321
1322 ( 'circ.selfcheck.alert.popup',
1323   'Selfcheck: Pop-up alert for errors',
1324   'If true, checkout/renewal errors will cause a pop-up window in addition to the on-screen message',
1325   'bool' ),
1326
1327 ( 'circ.selfcheck.require_patron_password',
1328   'Selfcheck: Require patron password',
1329   'If true, patrons will be required to enter their password in addition to their username/barcode to log into the selfcheck interface',
1330   'bool' ),
1331
1332 ( 'global.juvenile_age_threshold',
1333   'Juvenile Age Threshold',
1334   'The age at which a user is no long considered a juvenile.  For example, "18 years".',
1335   'interval' ),
1336
1337 ( 'cat.bib.keep_on_empty',
1338   'Retain empty bib records',
1339   'Retain a bib record even when all attached copies are deleted',
1340   'bool' ),
1341
1342 ( 'cat.bib.alert_on_empty',
1343   'Alert on empty bib records',
1344   'Alert staff when the last copy for a record is being deleted',
1345   'bool' ),
1346
1347 ( 'patron.password.use_phone',
1348   'Patron: password from phone #',
1349   'Use the last 4 digits of the patrons phone number as the default password when creating new users',
1350   'bool' ),
1351
1352 ( 'circ.charge_on_damaged',
1353   'Charge item price when marked damaged',
1354   'Charge item price when marked damaged',
1355   'bool' ),
1356
1357 ( 'circ.charge_lost_on_zero',
1358   'Charge lost on zero',
1359   '',
1360   'bool' ),
1361
1362 ( 'circ.damaged_item_processing_fee',
1363   'Charge processing fee for damaged items',
1364   'Charge processing fee for damaged items',
1365   'currency' ),
1366
1367 ( 'circ.void_lost_on_checkin',
1368   'Circ: Void lost item billing when returned',
1369   'Void lost item billing when returned',
1370   'bool' ),
1371
1372 ( 'circ.max_accept_return_of_lost',
1373   'Circ: Void lost max interval',
1374   'Items that have been lost this long will not result in voided billings when returned.  E.g. ''6 months''',
1375   'interval' ),
1376
1377 ( 'circ.void_lost_proc_fee_on_checkin',
1378   'Circ: Void processing fee on lost item return',
1379   'Void processing fee when lost item returned',
1380   'bool' ),
1381
1382 ( 'circ.restore_overdue_on_lost_return',
1383   'Circ: Restore overdues on lost item return',
1384   'Restore overdue fines on lost item return',
1385   'bool' ),
1386
1387 ( 'circ.lost_immediately_available',
1388   'Circ: Lost items usable on checkin',
1389   'Lost items are usable on checkin instead of going ''home'' first',
1390   'bool' ),
1391
1392 ( 'circ.holds_fifo',
1393   'Holds: FIFO',
1394   'Force holds to a more strict First-In, First-Out capture',
1395   'bool' ),
1396
1397 ( 'opac.allow_pending_address',
1398   'OPAC: Allow pending addresses',
1399   'If enabled, patrons can create and edit existing addresses.  Addresses are kept in a pending state until staff approves the changes',
1400   'bool' ),
1401
1402 ( 'ui.circ.show_billing_tab_on_bills',
1403   'Show billing tab first when bills are present',
1404   'If enabled and a patron has outstanding bills and the alert page is not required, show the billing tab by default, instead of the checkout tab, when a patron is loaded',
1405   'bool' ),
1406
1407 ( 'ui.general.idle_timeout',
1408     'GUI: Idle timeout',
1409     'If you want staff client windows to be minimized after a certain amount of system idle time, set this to the number of seconds of idle time that you want to allow before minimizing (requires staff client restart).',
1410     'integer' ),
1411
1412 ( 'ui.circ.in_house_use.entry_cap',
1413   'GUI: Record In-House Use: Maximum # of uses allowed per entry.',
1414   'The # of uses entry in the Record In-House Use interface may not exceed the value of this setting.',
1415   'integer' ),
1416
1417 ( 'ui.circ.in_house_use.entry_warn',
1418   'GUI: Record In-House Use: # of uses threshold for Are You Sure? dialog.',
1419   'In the Record In-House Use interface, a submission attempt will warn if the # of uses field exceeds the value of this setting.',
1420   'integer' ),
1421
1422 ( 'acq.default_circ_modifier',
1423   'Default circulation modifier',
1424   null,
1425   'string' ),
1426
1427 ( 'acq.tmp_barcode_prefix',
1428   'Temporary barcode prefix',
1429   null,
1430   'string' ),
1431
1432 ( 'acq.tmp_callnumber_prefix',
1433   'Temporary call number prefix',
1434   null,
1435   'string' ),
1436
1437 ( 'ui.circ.patron_summary.horizontal',
1438   'Patron circulation summary is horizontal',
1439   null,
1440   'bool' ),
1441
1442 ( 'ui.staff.require_initials',
1443   oils_i18n_gettext('ui.staff.require_initials', 'GUI: Require staff initials for entry/edit of item/patron/penalty notes/messages.', 'coust', 'label'),
1444   oils_i18n_gettext('ui.staff.require_initials', 'Appends staff initials and edit date into note content.', 'coust', 'description'),
1445   'bool' ),
1446
1447 ( 'ui.general.button_bar',
1448   'Button bar',
1449   null,
1450   'bool' ),
1451
1452 ( 'circ.hold_shelf_status_delay',
1453   'Hold Shelf Status Delay',
1454   'The purpose is to provide an interval of time after an item goes into the on-holds-shelf status before it appears to patrons that it is actually on the holds shelf.  This gives staff time to process the item before it shows as ready-for-pickup.',
1455   'interval' ),
1456
1457 ( 'circ.patron_invalid_address_apply_penalty',
1458   'Invalid patron address penalty',
1459   'When set, if a patron address is set to invalid, a penalty is applied.',
1460   'bool' ),
1461
1462 ( 'circ.checkout_fills_related_hold',
1463   'Checkout Fills Related Hold',
1464   'When a patron checks out an item and they have no holds that directly target the item, the system will attempt to find a hold for the patron that could be fulfilled by the checked out item and fulfills it',
1465   'bool'),
1466
1467 ( 'circ.selfcheck.auto_override_checkout_events',
1468   'Selfcheck override events list',
1469   'List of checkout/renewal events that the selfcheck interface should automatically override instead instead of alerting and stopping the transaction',
1470   'array' ),
1471
1472 ( 'circ.staff_client.do_not_auto_attempt_print',
1473   'Disable Automatic Print Attempt Type List',
1474   'Disable automatic print attempts from staff client interfaces for the receipt types in this list.  Possible values: "Checkout", "Bill Pay", "Hold Slip", "Transit Slip", and "Hold/Transit Slip".  This is different from the Auto-Print checkbox in the pertinent interfaces in that it disables automatic print attempts altogether, rather than encouraging silent printing by suppressing the print dialog.  The Auto-Print checkbox in these interfaces have no effect on the behavior for this setting.  In the case of the Hold, Transit, and Hold/Transit slips, this also suppresses the alert dialogs that precede the print dialog (the ones that offer Print and Do Not Print as options).',
1475   'array' ),
1476
1477 ( 'ui.patron.default_inet_access_level',
1478   'Default level of patrons'' internet access',
1479   null,
1480   'integer' ),
1481
1482 ( 'circ.max_patron_claim_return_count',
1483     'Max Patron Claims Returned Count',
1484     'When this count is exceeded, a staff override is required to mark the item as claims returned',
1485     'integer' ),
1486
1487 ( 'circ.obscure_dob',
1488     'Obscure the Date of Birth field',
1489     'When true, the Date of Birth column in patron lists will default to Not Visible, and in the Patron Summary sidebar the value will display as <Hidden> unless the field label is clicked.',
1490     'bool' ),
1491
1492 ( 'circ.auto_hide_patron_summary',
1493     'GUI: Toggle off the patron summary sidebar after first view.',
1494     'When true, the patron summary sidebar will collapse after a new patron sub-interface is selected.',
1495     'bool' ),
1496
1497 ( 'credit.processor.default',
1498     'Credit card processing: Name default credit processor',
1499     'This can be "AuthorizeNet", "PayPal" (for the Website Payment Pro API), or "PayflowPro".',
1500     'string' ),
1501
1502 ( 'credit.processor.authorizenet.enabled',
1503     'Credit card processing: AuthorizeNet enabled',
1504     '',
1505     'bool' ),
1506
1507 ( 'credit.processor.authorizenet.login',
1508     'Credit card processing: AuthorizeNet login',
1509     '',
1510     'string' ),
1511
1512 ( 'credit.processor.authorizenet.password',
1513     'Credit card processing: AuthorizeNet password',
1514     '',
1515     'string' ),
1516
1517 ( 'credit.processor.authorizenet.server',
1518     'Credit card processing: AuthorizeNet server',
1519     'Required if using a developer/test account with AuthorizeNet',
1520     'string' ),
1521
1522 ( 'credit.processor.authorizenet.testmode',
1523     'Credit card processing: AuthorizeNet test mode',
1524     '',
1525     'bool' ),
1526
1527 ( 'credit.processor.paypal.enabled',
1528     'Credit card processing: PayPal enabled',
1529     '',
1530     'bool' ),
1531 ( 'credit.processor.paypal.login',
1532     'Credit card processing: PayPal login',
1533     '',
1534     'string' ),
1535 ( 'credit.processor.paypal.password',
1536     'Credit card processing: PayPal password',
1537     '',
1538     'string' ),
1539 ( 'credit.processor.paypal.signature',
1540     'Credit card processing: PayPal signature',
1541     '',
1542     'string' ),
1543 ( 'credit.processor.paypal.testmode',
1544     'Credit card processing: PayPal test mode',
1545     '',
1546     'bool' ),
1547
1548 ( 'ui.admin.work_log.max_entries',
1549     oils_i18n_gettext('ui.admin.work_log.max_entries', 'GUI: Work Log: Maximum Actions Logged', 'coust', 'label'),
1550     oils_i18n_gettext('ui.admin.work_log.max_entries', 'Maximum entries for "Most Recent Staff Actions" section of the Work Log interface.', 'coust', 'description'),
1551   'interval' ),
1552
1553 ( 'ui.admin.patron_log.max_entries',
1554     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'GUI: Work Log: Maximum Patrons Logged', 'coust', 'label'),
1555     oils_i18n_gettext('ui.admin.patron_log.max_entries', 'Maximum entries for "Most Recently Affected Patrons..." section of the Work Log interface.', 'coust', 'description'),
1556   'interval' ),
1557
1558 ( 'lib.courier_code',
1559     oils_i18n_gettext('lib.courier_code', 'Courier Code', 'coust', 'label'),
1560     oils_i18n_gettext('lib.courier_code', 'Courier Code for the library.  Available in transit slip templates as the %courier_code% macro.', 'coust', 'description'),
1561     'string'),
1562
1563 ( 'circ.block_renews_for_holds',
1564     oils_i18n_gettext('circ.block_renews_for_holds', 'Holds: Block Renewal of Items Needed for Holds', 'coust', 'label'),
1565     oils_i18n_gettext('circ.block_renews_for_holds', 'When an item could fulfill a hold, do not allow the current patron to renew', 'coust', 'description'),
1566     'bool' ),
1567
1568 ( 'circ.password_reset_request_per_user_limit',
1569     oils_i18n_gettext('circ.password_reset_request_per_user_limit', 'Circulation: Maximum concurrently active self-serve password reset requests per user', 'coust', 'label'),
1570     oils_i18n_gettext('circ.password_reset_request_per_user_limit', 'When a user has more than this number of concurrently active self-serve password reset requests for their account, prevent the user from creating any new self-serve password reset requests until the number of active requests for the user drops back below this number.', 'coust', 'description'),
1571     'string'),
1572
1573 ( 'circ.password_reset_request_time_to_live',
1574     oils_i18n_gettext('circ.password_reset_request_time_to_live', 'Circulation: Self-serve password reset request time-to-live', 'coust', 'label'),
1575     oils_i18n_gettext('circ.password_reset_request_time_to_live', 'Length of time (in seconds) a self-serve password reset request should remain active.', 'coust', 'description'),
1576     'string'),
1577
1578 ( 'circ.password_reset_request_throttle',
1579     oils_i18n_gettext('circ.password_reset_request_throttle', 'Circulation: Maximum concurrently active self-serve password reset requests', 'coust', 'label'),
1580     oils_i18n_gettext('circ.password_reset_request_throttle', 'Prevent the creation of new self-serve password reset requests until the number of active requests drops back below this number.', 'coust', 'description'),
1581     'string')
1582 ;
1583
1584 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1585         'ui.circ.suppress_checkin_popups',
1586         oils_i18n_gettext(
1587             'ui.circ.suppress_checkin_popups', 
1588             'Circ: Suppress popup-dialogs during check-in.', 
1589             'coust', 
1590             'label'),
1591         oils_i18n_gettext(
1592             'ui.circ.suppress_checkin_popups', 
1593             'Circ: Suppress popup-dialogs during check-in.', 
1594             'coust', 
1595             'description'),
1596         'bool'
1597 );
1598
1599 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1600         'format.date',
1601         oils_i18n_gettext(
1602             'format.date',
1603             'GUI: Format Dates with this pattern.', 
1604             'coust', 
1605             'label'),
1606         oils_i18n_gettext(
1607             'format.date',
1608             'GUI: Format Dates with this pattern (examples: "yyyy-MM-dd" for "2010-04-26", "MMM d, yyyy" for "Apr 26, 2010")', 
1609             'coust', 
1610             'description'),
1611         'string'
1612 ), (
1613         'format.time',
1614         oils_i18n_gettext(
1615             'format.time',
1616             'GUI: Format Times with this pattern.', 
1617             'coust', 
1618             'label'),
1619         oils_i18n_gettext(
1620             'format.time',
1621             'GUI: Format Times with this pattern (examples: "h:m:s.SSS a z" for "2:07:20.666 PM Eastern Daylight Time", "HH:mm" for "14:07")', 
1622             'coust', 
1623             'description'),
1624         'string'
1625 );
1626
1627 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1628         'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1629         oils_i18n_gettext(
1630             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1631             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1632             'coust', 
1633             'label'),
1634         oils_i18n_gettext(
1635             'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
1636             'CAT: Delete bib if all copies are deleted via Acquisitions lineitem cancellation.', 
1637             'coust', 
1638             'description'),
1639         'bool'
1640 );
1641
1642 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1643         'url.remote_column_settings',
1644         oils_i18n_gettext(
1645             'url.remote_column_settings',
1646             'GUI: URL for remote directory containing list column settings.', 
1647             'coust', 
1648             'label'),
1649         oils_i18n_gettext(
1650             'url.remote_column_settings',
1651             'GUI: URL for remote directory containing list column settings.  The format and naming convention for the files found in this directory match those in the local settings directory for a given workstation.  An administrator could create the desired settings locally and then copy all the tree_columns_for_* files to the remote directory.', 
1652             'coust', 
1653             'description'),
1654         'string'
1655 );
1656
1657 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1658         'gui.disable_local_save_columns',
1659         oils_i18n_gettext(
1660             'gui.disable_local_save_columns',
1661             'GUI: Disable the ability to save list column configurations locally.', 
1662             'coust', 
1663             'label'),
1664         oils_i18n_gettext(
1665             'gui.disable_local_save_columns',
1666             'GUI: Disable the ability to save list column configurations locally.  If set, columns may still be manipulated, however, the changes do not persist.  Also, existing local configurations are ignored if this setting is true.', 
1667             'coust', 
1668             'description'),
1669         'bool'
1670 );
1671
1672 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1673         'circ.password_reset_request_requires_matching_email',
1674         oils_i18n_gettext(
1675             'circ.password_reset_request_requires_matching_email',
1676             'Circulation: Require matching email address for password reset requests', 
1677             'coust', 
1678             'label'),
1679         oils_i18n_gettext(
1680             'circ.password_reset_request_requires_matching_email',
1681             'Circulation: Require matching email address for password reset requests', 
1682             'coust', 
1683             'description'),
1684         'bool'
1685 );
1686
1687 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1688         'circ.holds.expired_patron_block',
1689         oils_i18n_gettext(
1690             'circ.holds.expired_patron_block',
1691             'Circulation: Block hold request if hold recipient privileges have expired', 
1692             'coust', 
1693             'label'),
1694         oils_i18n_gettext(
1695             'circ.holds.expired_patron_block',
1696             'Circulation: Block hold request if hold recipient privileges have expired', 
1697             'coust', 
1698             'description'),
1699         'bool'
1700 );
1701
1702 INSERT INTO config.org_unit_setting_type
1703     (name, label, description, datatype) VALUES (
1704         'circ.booking_reservation.default_elbow_room',
1705         oils_i18n_gettext(
1706             'circ.booking_reservation.default_elbow_room',
1707             'Booking: Elbow room',
1708             'coust',
1709             'label'
1710         ),
1711         oils_i18n_gettext(
1712             'circ.booking_reservation.default_elbow_room',
1713             'Elbow room specifies how far in the future you must make a reservation on an item if that item will have to transit to reach its pickup location.  It secondarily defines how soon a reservation on a given item must start before the check-in process will opportunistically capture it for the reservation shelf.',
1714             'coust',
1715             'label'
1716         ),
1717         'interval'
1718     );
1719
1720 -- Org_unit_setting_type(s) that need an fm_class:
1721 INSERT into config.org_unit_setting_type
1722 ( name, label, description, datatype, fm_class ) VALUES
1723 ( 'acq.default_copy_location',
1724   'Default copy location',
1725   null,
1726   'link',
1727   'acpl' );
1728
1729 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1730     'circ.holds.org_unit_target_weight',
1731     'Holds: Org Unit Target Weight',
1732     'Org Units can be organized into hold target groups based on a weight.  Potential copies from org units with the same weight are chosen at random.',
1733     'integer'
1734 );
1735
1736 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1737     'circ.holds.target_holds_by_org_unit_weight',
1738     'Holds: Use weight-based hold targeting',
1739     'Use library weight based hold targeting',
1740     'bool'
1741 );
1742
1743 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1744     'circ.holds.max_org_unit_target_loops',
1745     'Holds: Maximum library target attempts',
1746     'When this value is set and greater than 0, the system will only attempt to find a copy at each possible branch the configured number of times',
1747     'integer'
1748 );
1749
1750
1751 -- Org setting for overriding the circ lib of a precat copy
1752 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1753     'circ.pre_cat_copy_circ_lib',
1754     'Pre-cat Item Circ Lib',
1755     'Override the default circ lib of "here" with a pre-configured circ lib for pre-cat items.  The value should be the "shortname" (aka policy name) of the org unit',
1756     'string'
1757 );
1758
1759 -- Circ auto-renew interval setting
1760 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1761     'circ.checkout_auto_renew_age',
1762     'Checkout auto renew age',
1763     'When an item has been checked out for at least this amount of time, an attempt to check out the item to the patron that it is already checked out to will simply renew the circulation',
1764     'interval'
1765 );
1766
1767 -- Setting for behind the desk hold pickups
1768 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1769     'circ.holds.behind_desk_pickup_supported',
1770     'Holds: Behind Desk Pickup Supported',
1771     'If a branch supports both a public holds shelf and behind-the-desk pickups, set this value to true.  This gives the patron the option to enable behind-the-desk pickups for their holds',
1772     'bool'
1773 );
1774
1775 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1776         'acq.holds.allow_holds_from_purchase_request',
1777         oils_i18n_gettext(
1778             'acq.holds.allow_holds_from_purchase_request', 
1779             'Allows patrons to create automatic holds from purchase requests.', 
1780             'coust', 
1781             'label'),
1782         oils_i18n_gettext(
1783             'acq.holds.allow_holds_from_purchase_request', 
1784             'Allows patrons to create automatic holds from purchase requests.', 
1785             'coust', 
1786             'description'),
1787         'bool'
1788 );
1789
1790 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
1791     'circ.holds.target_skip_me',
1792     'Skip For Hold Targeting',
1793     'When true, don''t target any copies at this org unit for holds',
1794     'bool'
1795 );
1796
1797 -- claims returned mark item missing 
1798 INSERT INTO
1799     config.org_unit_setting_type ( name, label, description, datatype )
1800     VALUES (
1801         'circ.claim_return.mark_missing',
1802         'Claim Return: Mark copy as missing', 
1803         'When a circ is marked as claims-returned, also mark the copy as missing',
1804         'bool'
1805     );
1806
1807 -- claims never checked out mark item missing 
1808 INSERT INTO
1809     config.org_unit_setting_type ( name, label, description, datatype )
1810     VALUES (
1811         'circ.claim_never_checked_out.mark_missing',
1812         'Claim Never Checked Out: Mark copy as missing', 
1813         'When a circ is marked as claims-never-checked-out, mark the copy as missing',
1814         'bool'
1815     );
1816
1817 -- mark damaged void overdue setting
1818 INSERT INTO
1819     config.org_unit_setting_type ( name, label, description, datatype )
1820     VALUES (
1821         'circ.damaged.void_ovedue',
1822         'Mark item damaged voids overdues',
1823         'When an item is marked damaged, overdue fines on the most recent circulation are voided.',
1824         'bool'
1825     );
1826
1827 -- hold cancel display limits
1828 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1829     VALUES (
1830         'circ.holds.canceled.display_count',
1831         'Holds: Canceled holds display count',
1832         'How many canceled holds to show in patron holds interfaces',
1833         'integer'
1834     );
1835
1836 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1837     VALUES (
1838         'circ.holds.canceled.display_age',
1839         'Holds: Canceled holds display age',
1840         'Show all canceled holds that were canceled within this amount of time',
1841         'interval'
1842     );
1843
1844 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1845     VALUES (
1846         'circ.holds.uncancel.reset_request_time',
1847         'Holds: Reset request time on un-cancel',
1848         'When a holds is uncanceled, reset the request time to push it to the end of the queue',
1849         'bool'
1850     );
1851
1852 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
1853     VALUES (
1854         'circ.holds.default_shelf_expire_interval',
1855         'Default hold shelf expire interval',
1856         '',
1857         'interval'
1858 );
1859
1860 INSERT INTO config.org_unit_setting_type (name, label, description, datatype, fm_class)
1861     VALUES (
1862         'circ.claim_return.copy_status', 
1863         'Claim Return Copy Status', 
1864         'Claims returned copies are put into this status.  Default is to leave the copy in the Checked Out status',
1865         'link', 
1866         'ccs' 
1867     );
1868
1869 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
1870     VALUES ( 
1871         'circ.max_fine.cap_at_price',
1872         oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
1873         oils_i18n_gettext('circ.max_fine.cap_at_price', 'This prevents the system from charging more than the item price in overdue fines', 'coust', 'description'),
1874         'bool' 
1875     );
1876
1877 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) 
1878     VALUES ( 
1879         'circ.holds.clear_shelf.copy_status',
1880         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Holds: Clear shelf copy status', 'coust', 'label'),
1881         oils_i18n_gettext('circ.holds.clear_shelf.copy_status', 'Any copies that have not been put into reshelving, in-transit, or on-holds-shelf (for a new hold) during the clear shelf process will be put into this status.  This is basically a purgatory status for copies waiting to be pulled from the shelf and processed by hand', 'coust', 'description'),
1882         'link',
1883         'ccs'
1884     );
1885
1886 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1887     VALUES ( 
1888         'circ.selfcheck.workstation_required',
1889         oils_i18n_gettext('circ.selfcheck.workstation_required', 'Selfcheck: Workstation Required', 'coust', 'label'),
1890         oils_i18n_gettext('circ.selfcheck.workstation_required', 'All selfcheck stations must use a workstation', 'coust', 'description'),
1891         'bool'
1892     ), (
1893         'circ.selfcheck.patron_password_required',
1894         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Selfcheck: Require Patron Password', 'coust', 'label'),
1895         oils_i18n_gettext('circ.selfcheck.patron_password_required', 'Patron must log in with barcode and password at selfcheck station', 'coust', 'description'),
1896         'bool'
1897     );
1898
1899 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1900     VALUES ( 
1901         'circ.selfcheck.alert.sound',
1902         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Selfcheck: Audio Alerts', 'coust', 'label'),
1903         oils_i18n_gettext('circ.selfcheck.alert.sound', 'Use audio alerts for selfcheck events', 'coust', 'description'),
1904         'bool'
1905     );
1906
1907 INSERT INTO
1908     config.org_unit_setting_type (name, label, description, datatype)
1909     VALUES (
1910         'notice.telephony.callfile_lines',
1911         'Telephony: Arbitrary line(s) to include in each notice callfile',
1912         $$
1913         This overrides lines from opensrf.xml.
1914         Line(s) must be valid for your target server and platform
1915         (e.g. Asterisk 1.4).
1916         $$,
1917         'string'
1918     );
1919
1920 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1921     VALUES ( 
1922         'circ.offline.username_allowed',
1923         oils_i18n_gettext('circ.offline.username_allowed', 'Offline: Patron Usernames Allowed', 'coust', 'label'),
1924         oils_i18n_gettext('circ.offline.username_allowed', 'During offline circulations, allow patrons to identify themselves with usernames in addition to barcode.  For this setting to work, a barcode format must also be defined', 'coust', 'description'),
1925         'bool'
1926     );
1927
1928 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1929 VALUES (
1930     'acq.fund.balance_limit.warn',
1931     oils_i18n_gettext('acq.fund.balance_limit.warn', 'Fund Spending Limit for Warning', 'coust', 'label'),
1932     oils_i18n_gettext('acq.fund.balance_limit.warn', 'When the amount remaining in the fund, including spent money and encumbrances, goes below this percentage, attempts to spend from the fund will result in a warning to the staff.', 'coust', 'descripton'),
1933     'integer'
1934 );
1935
1936 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1937 VALUES (
1938     'acq.fund.balance_limit.block',
1939     oils_i18n_gettext('acq.fund.balance_limit.block', 'Fund Spending Limit for Block', 'coust', 'label'),
1940     oils_i18n_gettext('acq.fund.balance_limit.block', 'When the amount remaining in the fund, including spent money and encumbrances, goes below this percentage, attempts to spend from the fund will be blocked.', 'coust', 'description'),
1941     'integer'
1942 );
1943
1944 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1945     VALUES (
1946         'circ.holds.hold_has_copy_at.alert',
1947         oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', 'Holds: Has Local Copy Alert', 'coust', 'label'),
1948         oils_i18n_gettext('circ.holds.hold_has_copy_at.alert', 'If there is an available copy at the requesting library that could fulfill a hold during hold placement time, alert the patron', 'coust', 'description'),
1949         'bool'
1950     ),(
1951         'circ.holds.hold_has_copy_at.block',
1952         oils_i18n_gettext('circ.holds.hold_has_copy_at.block', 'Holds: Has Local Copy Block', 'coust', 'label'),
1953         oils_i18n_gettext('circ.holds.hold_has_copy_at.block', 'If there is an available copy at the requesting library that could fulfill a hold during hold placement time, do not allow the hold to be placed', 'coust', 'description'),
1954         'bool'
1955     );
1956
1957 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
1958 VALUES (
1959     'auth.persistent_login_interval',
1960     oils_i18n_gettext('auth.persistent_login_interval', 'Persistent Login Duration', 'coust', 'label'),
1961     oils_i18n_gettext('auth.persistent_login_interval', 'How long a persistent login lasts.  E.g. ''2 weeks''', 'coust', 'description'),
1962     'interval'
1963 );
1964
1965 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
1966         'cat.marc_control_number_identifier',
1967         oils_i18n_gettext(
1968             'cat.marc_control_number_identifier', 
1969             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
1970             'coust', 
1971             'label'),
1972         oils_i18n_gettext(
1973             'cat.marc_control_number_identifier', 
1974             'Cat: Defines the control number identifier used in 003 and 035 fields.', 
1975             'coust', 
1976             'description'),
1977         'string'
1978 );
1979
1980 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) 
1981     VALUES (
1982         'circ.selfcheck.block_checkout_on_copy_status',
1983         oils_i18n_gettext(
1984             'circ.selfcheck.block_checkout_on_copy_status',
1985             'Selfcheck: Block copy checkout status',
1986             'coust',
1987             'label'
1988         ),
1989         oils_i18n_gettext(
1990             'circ.selfcheck.block_checkout_on_copy_status',
1991             'List of copy status IDs that will block checkout even if the generic COPY_NOT_AVAILABLE event is overridden',
1992             'coust',
1993             'description'
1994         ),
1995         'array'
1996     );
1997
1998 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
1999 VALUES (
2000     'serial.prev_issuance_copy_location',
2001     oils_i18n_gettext(
2002         'serial.prev_issuance_copy_location',
2003         'Serials: Previous Issuance Copy Location',
2004         'coust',
2005         'label'
2006     ),
2007     oils_i18n_gettext(
2008         'serial.prev_issuance_copy_location',
2009         'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
2010         'coust',
2011         'descripton'
2012         ),
2013     'link',
2014     'acpl'
2015 );
2016
2017 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
2018 VALUES (
2019     'cat.default_classification_scheme',
2020     oils_i18n_gettext(
2021         'cat.default_classification_scheme',
2022         'Cataloging: Default Classification Scheme',
2023         'coust',
2024         'label'
2025     ),
2026     oils_i18n_gettext(
2027         'cat.default_classification_scheme',
2028         'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
2029         'coust',
2030         'descripton'
2031         ),
2032     'link',
2033     'acnc'
2034 );
2035
2036 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2037         'opac.org_unit_hiding.depth',
2038         oils_i18n_gettext(
2039             'opac.org_unit_hiding.depth',
2040             'OPAC: Org Unit Hiding Depth', 
2041             'coust', 
2042             'label'),
2043         oils_i18n_gettext(
2044             'opac.org_unit_hiding.depth',
2045             'This will hide certain org units in the public OPAC if the Original Location (url param "ol") for the OPAC inherits this setting.  This setting specifies an org unit depth, that together with the OPAC Original Location determines which section of the Org Hierarchy should be visible in the OPAC.  For example, a stock Evergreen installation will have a 3-tier hierarchy (Consortium/System/Branch), where System has a depth of 1 and Branch has a depth of 2.  If this setting contains a depth of 1 in such an installation, then every library in the System in which the Original Location belongs will be visible, and everything else will be hidden.  A depth of 0 will effectively make every org visible.  The embedded OPAC in the staff client ignores this setting.', 
2046             'coust', 
2047             'description'),
2048         'integer'
2049 );
2050
2051 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2052     VALUES 
2053         ('circ.holds.alert_if_local_avail',
2054          'Holds: Local available alert',
2055          'If local copy is available, alert the person making the hold',
2056          'bool'),
2057
2058         ('circ.holds.deny_if_local_avail',
2059          'Holds: Local available block',
2060          'If local copy is available, deny the creation of the hold',
2061          'bool')
2062     ;
2063
2064 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
2065     VALUES ( 
2066         'circ.holds.clear_shelf.no_capture_holds',
2067         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'Holds: Bypass hold capture during clear shelf process', 'coust', 'label'),
2068         oils_i18n_gettext('circ.holds.clear_shelf.no_capture_holds', 'During the clear shelf process, avoid capturing new holds on cleared items.', 'coust', 'description'),
2069         'bool'
2070     );
2071
2072 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
2073     'circ.booking_reservation.stop_circ',
2074     'Disallow circulation of items when they are on booking reserve and that reserve overlaps with the checkout period',
2075     'When true, items on booking reserve during the proposed checkout period will not be allowed to circulate unless overridden with the COPY_RESERVED.override permission.',
2076     'bool'
2077 );
2078
2079 ---------------------------------
2080 -- Seed data for usr_setting_type
2081 ----------------------------------
2082
2083 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2084     VALUES ('opac.default_font', TRUE, 'OPAC Font Size', 'OPAC Font Size', 'string');
2085
2086 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2087     VALUES ('opac.default_search_depth', TRUE, 'OPAC Search Depth', 'OPAC Search Depth', 'integer');
2088
2089 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2090     VALUES ('opac.default_search_location', TRUE, 'OPAC Search Location', 'OPAC Search Location', 'integer');
2091
2092 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2093     VALUES ('opac.hits_per_page', TRUE, 'Hits per Page', 'Hits per Page', 'string');
2094
2095 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2096     VALUES ('opac.hold_notify', TRUE, 'Hold Notification Format', 'Hold Notification Format', 'string');
2097
2098 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2099     VALUES ('staff_client.catalog.record_view.default', TRUE, 'Default Record View', 'Default Record View', 'string');
2100
2101 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2102     VALUES ('staff_client.copy_editor.templates', TRUE, 'Copy Editor Template', 'Copy Editor Template', 'object');
2103
2104 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2105     VALUES ('circ.holds_behind_desk', FALSE, 'Hold is behind Circ Desk', 'Hold is behind Circ Desk', 'bool');
2106
2107 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2108     VALUES (
2109         'history.circ.retention_age',
2110         TRUE,
2111         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','label'),
2112         oils_i18n_gettext('history.circ.retention_age','Historical Circulation Retention Age','cust','description'),
2113         'interval'
2114     ),(
2115         'history.circ.retention_start',
2116         FALSE,
2117         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','label'),
2118         oils_i18n_gettext('history.circ.retention_start','Historical Circulation Retention Start Date','cust','description'),
2119         'date'
2120     );
2121
2122 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2123     VALUES (
2124         'history.hold.retention_age',
2125         TRUE,
2126         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','label'),
2127         oils_i18n_gettext('history.hold.retention_age','Historical Hold Retention Age','cust','description'),
2128         'interval'
2129     ),(
2130         'history.hold.retention_start',
2131         TRUE,
2132         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','label'),
2133         oils_i18n_gettext('history.hold.retention_start','Historical Hold Retention Start Date','cust','description'),
2134         'interval'
2135     ),(
2136         'history.hold.retention_count',
2137         TRUE,
2138         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','label'),
2139         oils_i18n_gettext('history.hold.retention_count','Historical Hold Retention Count','cust','description'),
2140         'integer'
2141     );
2142
2143 INSERT INTO config.usr_setting_type (name, opac_visible, label, description, datatype)
2144     VALUES (
2145         'opac.default_sort',
2146         TRUE,
2147         oils_i18n_gettext(
2148             'opac.default_sort',
2149             'OPAC Default Search Sort',
2150             'cust',
2151             'label'
2152         ),
2153         oils_i18n_gettext(
2154             'opac.default_sort',
2155             'OPAC Default Search Sort',
2156             'cust',
2157             'description'
2158         ),
2159         'string'
2160     );
2161
2162 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
2163         'circ.missing_pieces.copy_status',
2164         oils_i18n_gettext(
2165             'circ.missing_pieces.copy_status',
2166             'Circulation: Item Status for Missing Pieces',
2167             'coust',
2168             'label'),
2169         oils_i18n_gettext(
2170             'circ.missing_pieces.copy_status',
2171             'This is the Item Status to use for items that have been marked or scanned as having Missing Pieces.  In absense of this setting, the Damaged status is used.',
2172             'coust',
2173             'description'),
2174         'link',
2175         'ccs'
2176 );
2177
2178 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2179         'circ.do_not_tally_claims_returned',
2180         oils_i18n_gettext(
2181             'circ.do_not_tally_claims_returned',
2182             'Circulation: Do not include outstanding Claims Returned circulations in lump sum tallies in Patron Display.',
2183             'coust',
2184             'label'),
2185         oils_i18n_gettext(
2186             'circ.do_not_tally_claims_returned',
2187             'In the Patron Display interface, the number of total active circulations for a given patron is presented in the Summary sidebar and underneath the Items Out navigation button.  This setting will prevent Claims Returned circulations from counting toward these tallies.',
2188             'coust',
2189             'description'),
2190         'bool'
2191 );
2192
2193 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2194     VALUES
2195         ('cat.label.font.size',
2196             oils_i18n_gettext('cat.label.font.size',
2197                 'Cataloging: Spine and pocket label font size', 'coust', 'label'),
2198             oils_i18n_gettext('cat.label.font.size',
2199                 'Set the default font size for spine and pocket labels', 'coust', 'description'),
2200             'integer'
2201         )
2202         ,('cat.label.font.family',
2203             oils_i18n_gettext('cat.label.font.family',
2204                 'Cataloging: Spine and pocket label font family', 'coust', 'label'),
2205             oils_i18n_gettext('cat.label.font.family',
2206                 'Set the preferred font family for spine and pocket labels. You can specify a list of fonts, separated by commas, in order of preference; the system will use the first font it finds with a matching name. For example, "Arial, Helvetica, serif".',
2207                 'coust', 'description'),
2208             'string'
2209         )
2210         ,('cat.spine.line.width',
2211             oils_i18n_gettext('cat.spine.line.width',
2212                 'Cataloging: Spine label line width', 'coust', 'label'),
2213             oils_i18n_gettext('cat.spine.line.width',
2214                 'Set the default line width for spine labels in number of characters. This specifies the boundary at which lines must be wrapped.',
2215                 'coust', 'description'),
2216             'integer'
2217         )
2218         ,('cat.spine.line.height',
2219             oils_i18n_gettext('cat.spine.line.height',
2220                 'Cataloging: Spine label maximum lines', 'coust', 'label'),
2221             oils_i18n_gettext('cat.spine.line.height',
2222                 'Set the default maximum number of lines for spine labels.',
2223                 'coust', 'description'),
2224             'integer'
2225         )
2226         ,('cat.spine.line.margin',
2227             oils_i18n_gettext('cat.spine.line.margin',
2228                 'Cataloging: Spine label left margin', 'coust', 'label'),
2229             oils_i18n_gettext('cat.spine.line.margin',
2230                 'Set the left margin for spine labels in number of characters.',
2231                 'coust', 'description'),
2232             'integer'
2233         )
2234 ;
2235
2236 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
2237     VALUES
2238         ('cat.label.font.weight',
2239             oils_i18n_gettext('cat.label.font.weight',
2240                 'Cataloging: Spine and pocket label font weight', 'coust', 'label'),
2241             oils_i18n_gettext('cat.label.font.weight',
2242                 'Set the preferred font weight for spine and pocket labels. You can specify "normal", "bold", "bolder", or "lighter".',
2243                 'coust', 'description'),
2244             'string'
2245         )
2246 ;
2247
2248 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2249         'circ.patron_edit.clone.copy_address',
2250         oils_i18n_gettext(
2251             'circ.patron_edit.clone.copy_address',
2252             'Patron Registration: Cloned patrons get address copy',
2253             'coust',
2254             'label'
2255         ),
2256         oils_i18n_gettext(
2257             'circ.patron_edit.clone.copy_address',
2258             'In the Patron editor, copy addresses from the cloned user instead of linking directly to the address',
2259             'coust',
2260             'description'
2261         ),
2262         'bool'
2263 );
2264
2265 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES (
2266         'ui.patron.default_ident_type',
2267         oils_i18n_gettext(
2268             'ui.patron.default_ident_type',
2269             'GUI: Default Ident Type for Patron Registration',
2270             'coust',
2271             'label'),
2272         oils_i18n_gettext(
2273             'ui.patron.default_ident_type',
2274             'This is the default Ident Type for new users in the patron editor.',
2275             'coust',
2276             'description'),
2277         'link',
2278         'cit'
2279 );
2280
2281 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2282         'ui.patron.default_country',
2283         oils_i18n_gettext(
2284             'ui.patron.default_country',
2285             'GUI: Default Country for New Addresses in Patron Editor',
2286             'coust',
2287             'label'),
2288         oils_i18n_gettext(
2289             'ui.patron.default_country',
2290             'This is the default Country for new addresses in the patron editor.',
2291             'coust',
2292             'description'),
2293         'string'
2294 );
2295
2296 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) VALUES (
2297         'ui.patron.registration.require_address',
2298         oils_i18n_gettext(
2299             'ui.patron.registration.require_address',
2300             'GUI: Require at least one address for Patron Registration',
2301             'coust',
2302             'label'),
2303         oils_i18n_gettext(
2304             'ui.patron.registration.require_address',
2305             'Enforces a requirement for having at least one address for a patron during registration.',
2306             'coust',
2307             'description'),
2308         'bool'
2309 );
2310
2311 INSERT INTO config.org_unit_setting_type (
2312     name, label, description, datatype
2313 ) VALUES
2314     ('credit.processor.payflowpro.enabled',
2315         'Credit card processing: Enable PayflowPro payments',
2316         'This is NOT the same thing as the settings labeled with just "PayPal."',
2317         'bool'
2318     ),
2319     ('credit.processor.payflowpro.login',
2320         'Credit card processing: PayflowPro login/merchant ID',
2321         'Often the same thing as the PayPal manager login',
2322         'string'
2323     ),
2324     ('credit.processor.payflowpro.password',
2325         'Credit card processing: PayflowPro password',
2326         'PayflowPro password',
2327         'string'
2328     ),
2329     ('credit.processor.payflowpro.testmode',
2330         'Credit card processing: PayflowPro test mode',
2331         'Do not really process transactions, but stay in test mode - uses pilot-payflowpro.paypal.com instead of the usual host',
2332         'bool'
2333     ),
2334     ('credit.processor.payflowpro.vendor',
2335         'Credit card processing: PayflowPro vendor',
2336         'Often the same thing as the login',
2337         'string'
2338     ),
2339     ('credit.processor.payflowpro.partner',
2340         'Credit card processing: PayflowPro partner',
2341         'Often "PayPal" or "VeriSign", sometimes others',
2342         'string'
2343     );
2344
2345 -- Patch the name of an old selfcheck setting
2346 UPDATE actor.org_unit_setting
2347     SET name = 'circ.selfcheck.alert.popup'
2348     WHERE name = 'circ.selfcheck.alert_on_checkout_event';
2349
2350 -- Rename certain existing org_unit settings, if present,
2351 -- and make sure their values are JSON
2352 UPDATE actor.org_unit_setting SET
2353     name = 'circ.holds.default_estimated_wait_interval',
2354     --
2355     -- The value column should be JSON.  The old value should be a number,
2356     -- but it may or may not be quoted.  The following CASE behaves
2357     -- differently depending on whether value is quoted.  It is simplistic,
2358     -- and will be defeated by leading or trailing white space, or various
2359     -- malformations.
2360     --
2361     value = CASE WHEN SUBSTR( value, 1, 1 ) = '"'
2362                 THEN '"' || SUBSTR( value, 2, LENGTH(value) - 2 ) || ' days"'
2363                 ELSE '"' || value || ' days"'
2364             END
2365 WHERE name = 'circ.hold_estimate_wait_interval';
2366
2367 -- Create types for existing org unit settings
2368 -- not otherwise accounted for
2369
2370 INSERT INTO config.org_unit_setting_type(
2371  name,
2372  label,
2373  description
2374 )
2375 SELECT DISTINCT
2376         name,
2377         name,
2378         'FIXME'
2379 FROM
2380         actor.org_unit_setting
2381 WHERE
2382         name NOT IN (
2383                 SELECT name
2384                 FROM config.org_unit_setting_type
2385         );
2386
2387 -- Add foreign key to org_unit_setting
2388
2389 ALTER TABLE actor.org_unit_setting
2390         ADD FOREIGN KEY (name) REFERENCES config.org_unit_setting_type (name)
2391                 DEFERRABLE INITIALLY DEFERRED;
2392
2393 -- Create types for existing user settings
2394 -- not otherwise accounted for
2395
2396 INSERT INTO config.usr_setting_type (
2397         name,
2398         label,
2399         description
2400 )
2401 SELECT DISTINCT
2402         name,
2403         name,
2404         'FIXME'
2405 FROM
2406         actor.usr_setting
2407 WHERE
2408         name NOT IN (
2409                 SELECT name
2410                 FROM config.usr_setting_type
2411         );
2412
2413 -- Add foreign key to user_setting_type
2414
2415 ALTER TABLE actor.usr_setting
2416         ADD FOREIGN KEY (name) REFERENCES config.usr_setting_type (name)
2417                 ON DELETE CASCADE ON UPDATE CASCADE
2418                 DEFERRABLE INITIALLY DEFERRED;
2419
2420 INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES
2421     (1, 'cat.spine.line.margin', 0)
2422     ,(1, 'cat.spine.line.height', 9)
2423     ,(1, 'cat.spine.line.width', 8)
2424     ,(1, 'cat.label.font.family', '"monospace"')
2425     ,(1, 'cat.label.font.size', 10)
2426     ,(1, 'cat.label.font.weight', '"normal"')
2427 ;
2428
2429 ALTER TABLE action_trigger.event_definition ADD COLUMN granularity TEXT;
2430 ALTER TABLE action_trigger.event ADD COLUMN async_output BIGINT REFERENCES action_trigger.event_output (id);
2431 ALTER TABLE action_trigger.event_definition ADD COLUMN usr_field TEXT;
2432 ALTER TABLE action_trigger.event_definition ADD COLUMN opt_in_setting TEXT REFERENCES config.usr_setting_type (name) DEFERRABLE INITIALLY DEFERRED;
2433
2434 CREATE OR REPLACE FUNCTION is_json( TEXT ) RETURNS BOOL AS $f$
2435     use JSON::XS;
2436     my $json = shift();
2437     eval { JSON::XS->new->allow_nonref->decode( $json ) };
2438     return $@ ? 0 : 1;
2439 $f$ LANGUAGE PLPERLU;
2440
2441 ALTER TABLE action_trigger.event ADD COLUMN user_data TEXT CHECK (user_data IS NULL OR is_json( user_data ));
2442
2443 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2444     'hold_request.cancel.expire_no_target',
2445     'ahr',
2446     'A hold is cancelled because no copies were found'
2447 );
2448
2449 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2450     'hold_request.cancel.expire_holds_shelf',
2451     'ahr',
2452     'A hold is cancelled becuase it was on the holds shelf too long'
2453 );
2454
2455 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2456     'hold_request.cancel.staff',
2457     'ahr',
2458     'A hold is cancelled becuase it was cancelled by staff'
2459 );
2460
2461 INSERT INTO action_trigger.hook (key,core_type,description) VALUES (
2462     'hold_request.cancel.patron',
2463     'ahr',
2464     'A hold is cancelled by the patron'
2465 );
2466
2467 -- Fix typos in descriptions
2468 UPDATE action_trigger.hook SET description = 'A hold is successfully placed' WHERE key = 'hold_request.success';
2469 UPDATE action_trigger.hook SET description = 'A hold is attempted but not successfully placed' WHERE key = 'hold_request.failure';
2470
2471 -- Add a hook for renewals
2472 INSERT INTO action_trigger.hook (key,core_type,description) VALUES ('renewal','circ','Item renewed to user');
2473
2474 INSERT INTO action_trigger.validator (module,description) VALUES ('MaxPassiveDelayAge','Check that the event is not too far past the delay_field time -- requires a max_delay_age interval parameter');
2475
2476 -- Sample Pre-due Notice --
2477
2478 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, delay_field, group_field, template) 
2479     VALUES (6, 'f', 1, '3 Day Courtesy Notice', 'checkout.due', 'CircIsOpen', 'SendEmail', '-3 days', 'due_date', 'usr', 
2480 $$
2481 [%- USE date -%]
2482 [%- user = target.0.usr -%]
2483 To: [%- params.recipient_email || user.email %]
2484 From: [%- params.sender_email || default_sender %]
2485 Subject: Courtesy Notice
2486
2487 Dear [% user.family_name %], [% user.first_given_name %]
2488 As a reminder, the following items are due in 3 days.
2489
2490 [% FOR circ IN target %]
2491     Title: [% circ.target_copy.call_number.record.simple_record.title %] 
2492     Barcode: [% circ.target_copy.barcode %] 
2493     Due: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
2494     Item Cost: [% helpers.get_copy_price(circ.target_copy) %]
2495     Library: [% circ.circ_lib.name %]
2496     Library Phone: [% circ.circ_lib.phone %]
2497 [% END %]
2498
2499 $$);
2500
2501 INSERT INTO action_trigger.environment (event_def, path) VALUES 
2502     (6, 'target_copy.call_number.record.simple_record'),
2503     (6, 'usr'),
2504     (6, 'circ_lib.billing_address');
2505
2506 INSERT INTO action_trigger.event_params (event_def, param, value) VALUES
2507     (6, 'max_delay_age', '"1 day"');
2508
2509 -- also add the max delay age to the default overdue notice event def
2510 INSERT INTO action_trigger.event_params (event_def, param, value) VALUES
2511     (1, 'max_delay_age', '"1 day"');
2512   
2513 INSERT INTO action_trigger.validator (module,description) VALUES ('MinPassiveTargetAge','Check that the target is old enough to be used by this event -- requires a min_target_age interval parameter, and accepts an optional target_age_field to specify what time to use for offsetting');
2514
2515 INSERT INTO action_trigger.reactor (module,description) VALUES ('ApplyPatronPenalty','Applies the conifigured penalty to a patron.  Required named environment variables are "user", which refers to the user object, and "context_org", which refers to the org_unit object that acts as the focus for the penalty.');
2516
2517 INSERT INTO action_trigger.hook (
2518         key,
2519         core_type,
2520         description,
2521         passive
2522     ) VALUES (
2523         'hold_request.shelf_expires_soon',
2524         'ahr',
2525         'A hold on the shelf will expire there soon.',
2526         TRUE
2527     );
2528
2529 INSERT INTO action_trigger.event_definition (
2530         id,
2531         active,
2532         owner,
2533         name,
2534         hook,
2535         validator,
2536         reactor,
2537         delay,
2538         delay_field,
2539         group_field,
2540         template
2541     ) VALUES (
2542         7,
2543         FALSE,
2544         1,
2545         'Hold Expires from Shelf Soon',
2546         'hold_request.shelf_expires_soon',
2547         'HoldIsAvailable',
2548         'SendEmail',
2549         '- 1 DAY',
2550         'shelf_expire_time',
2551         'usr',
2552 $$
2553 [%- USE date -%]
2554 [%- user = target.0.usr -%]
2555 To: [%- params.recipient_email || user.email %]
2556 From: [%- params.sender_email || default_sender %]
2557 Subject: Hold Available Notification
2558
2559 Dear [% user.family_name %], [% user.first_given_name %]
2560 You requested holds on the following item(s), which are available for
2561 pickup, but these holds will soon expire.
2562
2563 [% FOR hold IN target %]
2564     [%- data = helpers.get_copy_bib_basics(hold.current_copy.id) -%]
2565     Title: [% data.title %]
2566     Author: [% data.author %]
2567     Library: [% hold.pickup_lib.name %]
2568 [% END %]
2569 $$
2570     );
2571
2572 INSERT INTO action_trigger.environment (
2573         event_def,
2574         path
2575     ) VALUES
2576     ( 7, 'current_copy'),
2577     ( 7, 'pickup_lib.billing_address'),
2578     ( 7, 'usr');
2579
2580 INSERT INTO action_trigger.hook (
2581         key,
2582         core_type,
2583         description,
2584         passive
2585     ) VALUES (
2586         'hold_request.long_wait',
2587         'ahr',
2588         'A patron has been waiting on a hold to be fulfilled for a long time.',
2589         TRUE
2590     );
2591
2592 INSERT INTO action_trigger.event_definition (
2593         id,
2594         active,
2595         owner,
2596         name,
2597         hook,
2598         validator,
2599         reactor,
2600         delay,
2601         delay_field,
2602         group_field,
2603         template
2604     ) VALUES (
2605         9,
2606         FALSE,
2607         1,
2608         'Hold waiting for pickup for long time',
2609         'hold_request.long_wait',
2610         'NOOP_True',
2611         'SendEmail',
2612         '6 MONTHS',
2613         'request_time',
2614         'usr',
2615 $$
2616 [%- USE date -%]
2617 [%- user = target.0.usr -%]
2618 To: [%- params.recipient_email || user.email %]
2619 From: [%- params.sender_email || default_sender %]
2620 Subject: Long Wait Hold Notification
2621
2622 Dear [% user.family_name %], [% user.first_given_name %]
2623
2624 You requested hold(s) on the following item(s), but unfortunately
2625 we have not been able to fulfill your request after a considerable
2626 length of time.  If you would still like to recieve these items,
2627 no action is required.
2628
2629 [% FOR hold IN target %]
2630     Title: [% hold.bib_rec.bib_record.simple_record.title %]
2631     Author: [% hold.bib_rec.bib_record.simple_record.author %]
2632 [% END %]
2633 $$
2634 );
2635
2636 INSERT INTO action_trigger.environment (
2637         event_def,
2638         path
2639     ) VALUES
2640     (9, 'pickup_lib'),
2641     (9, 'usr'),
2642     (9, 'bib_rec.bib_record.simple_record');
2643
2644 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2645     VALUES (
2646         'format.selfcheck.checkout',
2647         'circ',
2648         'Formats circ objects for self-checkout receipt',
2649         TRUE
2650     );
2651
2652 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2653     VALUES (
2654         10,
2655         TRUE,
2656         1,
2657         'Self-Checkout Receipt',
2658         'format.selfcheck.checkout',
2659         'NOOP_True',
2660         'ProcessTemplate',
2661         'usr',
2662         'print-on-demand',
2663 $$
2664 [%- USE date -%]
2665 [%- SET user = target.0.usr -%]
2666 [%- SET lib = target.0.circ_lib -%]
2667 [%- SET lib_addr = target.0.circ_lib.billing_address -%]
2668 [%- SET hours = lib.hours_of_operation -%]
2669 <div>
2670     <style> li { padding: 8px; margin 5px; }</style>
2671     <div>[% date.format %]</div>
2672     <div>[% lib.name %]</div>
2673     <div>[% lib_addr.street1 %] [% lib_addr.street2 %]</div>
2674     <div>[% lib_addr.city %], [% lib_addr.state %] [% lb_addr.post_code %]</div>
2675     <div>[% lib.phone %]</div>
2676     <br/>
2677
2678     [% user.family_name %], [% user.first_given_name %]
2679     <ol>
2680     [% FOR circ IN target %]
2681         [%-
2682             SET idx = loop.count - 1;
2683             SET udata =  user_data.$idx
2684         -%]
2685         <li>
2686             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
2687             <div>Barcode: [% circ.target_copy.barcode %]</div>
2688             [% IF udata.renewal_failure %]
2689                 <div style='color:red;'>Renewal Failed</div>
2690             [% ELSE %]
2691                 <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
2692             [% END %]
2693         </li>
2694     [% END %]
2695     </ol>
2696     
2697     <div>
2698         Library Hours
2699         [%- BLOCK format_time; date.format(time _ ' 1/1/1000', format='%I:%M %p'); END -%]
2700         <div>
2701             Monday 
2702             [% PROCESS format_time time = hours.dow_0_open %] 
2703             [% PROCESS format_time time = hours.dow_0_close %] 
2704         </div>
2705         <div>
2706             Tuesday 
2707             [% PROCESS format_time time = hours.dow_1_open %] 
2708             [% PROCESS format_time time = hours.dow_1_close %] 
2709         </div>
2710         <div>
2711             Wednesday 
2712             [% PROCESS format_time time = hours.dow_2_open %] 
2713             [% PROCESS format_time time = hours.dow_2_close %] 
2714         </div>
2715         <div>
2716             Thursday
2717             [% PROCESS format_time time = hours.dow_3_open %] 
2718             [% PROCESS format_time time = hours.dow_3_close %] 
2719         </div>
2720         <div>
2721             Friday
2722             [% PROCESS format_time time = hours.dow_4_open %] 
2723             [% PROCESS format_time time = hours.dow_4_close %] 
2724         </div>
2725         <div>
2726             Saturday
2727             [% PROCESS format_time time = hours.dow_5_open %] 
2728             [% PROCESS format_time time = hours.dow_5_close %] 
2729         </div>
2730         <div>
2731             Sunday 
2732             [% PROCESS format_time time = hours.dow_6_open %] 
2733             [% PROCESS format_time time = hours.dow_6_close %] 
2734         </div>
2735     </div>
2736 </div>
2737 $$
2738 );
2739
2740 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2741     ( 10, 'target_copy'),
2742     ( 10, 'circ_lib.billing_address'),
2743     ( 10, 'circ_lib.hours_of_operation'),
2744     ( 10, 'usr');
2745
2746 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2747     VALUES (
2748         'format.selfcheck.items_out',
2749         'circ',
2750         'Formats items out for self-checkout receipt',
2751         TRUE
2752     );
2753
2754 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2755     VALUES (
2756         11,
2757         TRUE,
2758         1,
2759         'Self-Checkout Items Out Receipt',
2760         'format.selfcheck.items_out',
2761         'NOOP_True',
2762         'ProcessTemplate',
2763         'usr',
2764         'print-on-demand',
2765 $$
2766 [%- USE date -%]
2767 [%- SET user = target.0.usr -%]
2768 <div>
2769     <style> li { padding: 8px; margin 5px; }</style>
2770     <div>[% date.format %]</div>
2771     <br/>
2772
2773     [% user.family_name %], [% user.first_given_name %]
2774     <ol>
2775     [% FOR circ IN target %]
2776         <li>
2777             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
2778             <div>Barcode: [% circ.target_copy.barcode %]</div>
2779             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
2780         </li>
2781     [% END %]
2782     </ol>
2783 </div>
2784 $$
2785 );
2786
2787
2788 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2789     ( 11, 'target_copy'),
2790     ( 11, 'circ_lib.billing_address'),
2791     ( 11, 'circ_lib.hours_of_operation'),
2792     ( 11, 'usr');
2793
2794 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2795     VALUES (
2796         'format.selfcheck.holds',
2797         'ahr',
2798         'Formats holds for self-checkout receipt',
2799         TRUE
2800     );
2801
2802 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, group_field, granularity, template )
2803     VALUES (
2804         12,
2805         TRUE,
2806         1,
2807         'Self-Checkout Holds Receipt',
2808         'format.selfcheck.holds',
2809         'NOOP_True',
2810         'ProcessTemplate',
2811         'usr',
2812         'print-on-demand',
2813 $$
2814 [%- USE date -%]
2815 [%- SET user = target.0.usr -%]
2816 <div>
2817     <style> li { padding: 8px; margin 5px; }</style>
2818     <div>[% date.format %]</div>
2819     <br/>
2820
2821     [% user.family_name %], [% user.first_given_name %]
2822     <ol>
2823     [% FOR hold IN target %]
2824         [%-
2825             SET idx = loop.count - 1;
2826             SET udata =  user_data.$idx
2827         -%]
2828         <li>
2829             <div>Title: [% hold.bib_rec.bib_record.simple_record.title %]</div>
2830             <div>Author: [% hold.bib_rec.bib_record.simple_record.author %]</div>
2831             <div>Pickup Location: [% hold.pickup_lib.name %]</div>
2832             <div>Status: 
2833                 [%- IF udata.ready -%]
2834                     Ready for pickup
2835                 [% ELSE %]
2836                     #[% udata.queue_position %] of [% udata.potential_copies %] copies.
2837                 [% END %]
2838             </div>
2839         </li>
2840     [% END %]
2841     </ol>
2842 </div>
2843 $$
2844 );
2845
2846
2847 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2848     ( 12, 'bib_rec.bib_record.simple_record'),
2849     ( 12, 'pickup_lib'),
2850     ( 12, 'usr');
2851
2852 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2853     VALUES (
2854         'format.selfcheck.fines',
2855         'au',
2856         'Formats fines for self-checkout receipt',
2857         TRUE
2858     );
2859
2860 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template )
2861     VALUES (
2862         13,
2863         TRUE,
2864         1,
2865         'Self-Checkout Fines Receipt',
2866         'format.selfcheck.fines',
2867         'NOOP_True',
2868         'ProcessTemplate',
2869         'print-on-demand',
2870 $$
2871 [%- USE date -%]
2872 [%- SET user = target -%]
2873 <div>
2874     <style> li { padding: 8px; margin 5px; }</style>
2875     <div>[% date.format %]</div>
2876     <br/>
2877
2878     [% user.family_name %], [% user.first_given_name %]
2879     <ol>
2880     [% FOR xact IN user.open_billable_transactions_summary %]
2881         <li>
2882             <div>Details: 
2883                 [% IF xact.xact_type == 'circulation' %]
2884                     [%- helpers.get_copy_bib_basics(xact.circulation.target_copy).title -%]
2885                 [% ELSE %]
2886                     [%- xact.last_billing_type -%]
2887                 [% END %]
2888             </div>
2889             <div>Total Billed: [% xact.total_owed %]</div>
2890             <div>Total Paid: [% xact.total_paid %]</div>
2891             <div>Balance Owed : [% xact.balance_owed %]</div>
2892         </li>
2893     [% END %]
2894     </ol>
2895 </div>
2896 $$
2897 );
2898
2899 INSERT INTO action_trigger.environment ( event_def, path) VALUES
2900     ( 13, 'open_billable_transactions_summary.circulation' );
2901
2902 INSERT INTO action_trigger.reactor (module,description) VALUES
2903 (   'SendFile',
2904     oils_i18n_gettext(
2905         'SendFile',
2906         'Build and transfer a file to a remote server.  Required parameter "remote_host" specifying target server.  Optional parameters: remote_user, remote_password, remote_account, port, type (FTP, SFTP or SCP), and debug.',
2907         'atreact',
2908         'description'
2909     )
2910 );
2911
2912 INSERT INTO action_trigger.hook (key, core_type, description, passive) 
2913     VALUES (
2914         'format.acqli.html',
2915         'jub',
2916         'Formats lineitem worksheet for titles received',
2917         TRUE
2918     );
2919
2920 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, granularity, template)
2921     VALUES (
2922         14,
2923         TRUE,
2924         1,
2925         'Lineitem Worksheet',
2926         'format.acqli.html',
2927         'NOOP_True',
2928         'ProcessTemplate',
2929         'print-on-demand',
2930 $$
2931 [%- USE date -%]
2932 [%- SET li = target; -%]
2933 <div class="wrapper">
2934     <div class="summary" style='font-size:110%; font-weight:bold;'>
2935
2936         <div>Title: [% helpers.get_li_attr("title", "", li.attributes) %]</div>
2937         <div>Author: [% helpers.get_li_attr("author", "", li.attributes) %]</div>
2938         <div class="count">Item Count: [% li.lineitem_details.size %]</div>
2939         <div class="lineid">Lineitem ID: [% li.id %]</div>
2940
2941         [% IF li.distribution_formulas.size > 0 %]
2942             [% SET forms = [] %]
2943             [% FOREACH form IN li.distribution_formulas; forms.push(form.formula.name); END %]
2944             <div>Distribution Formulas: [% forms.join(',') %]</div>
2945         [% END %]
2946
2947         [% IF li.lineitem_notes.size > 0 %]
2948             Lineitem Notes:
2949             <ul>
2950                 [%- FOR note IN li.lineitem_notes -%]
2951                     <li>
2952                     [% IF note.alert_text %]
2953                         [% note.alert_text.code -%] 
2954                         [% IF note.value -%]
2955                             : [% note.value %]
2956                         [% END %]
2957                     [% ELSE %]
2958                         [% note.value -%] 
2959                     [% END %]
2960                     </li>
2961                 [% END %]
2962             </ul>
2963         [% END %]
2964     </div>
2965     <br/>
2966     <table>
2967         <thead>
2968             <tr>
2969                 <th>Branch</th>
2970                 <th>Barcode</th>
2971                 <th>Call Number</th>
2972                 <th>Fund</th>
2973                 <th>Recd.</th>
2974                 <th>Notes</th>
2975             </tr>
2976         </thead>
2977         <tbody>
2978         [% FOREACH detail IN li.lineitem_details.sort('owning_lib') %]
2979             [% 
2980                 IF copy.eg_copy_id;
2981                     SET copy = copy.eg_copy_id;
2982                     SET cn_label = copy.call_number.label;
2983                 ELSE; 
2984                     SET copy = detail; 
2985                     SET cn_label = detail.cn_label;
2986                 END 
2987             %]
2988             <tr>
2989                 <!-- acq.lineitem_detail.id = [%- detail.id -%] -->
2990                 <td style='padding:5px;'>[% detail.owning_lib.shortname %]</td>
2991                 <td style='padding:5px;'>[% IF copy.barcode   %]<span class="barcode"  >[% detail.barcode   %]</span>[% END %]</td>
2992                 <td style='padding:5px;'>[% IF cn_label %]<span class="cn_label" >[% cn_label  %]</span>[% END %]</td>
2993                 <td style='padding:5px;'>[% IF detail.fund %]<span class="fund">[% detail.fund.code %] ([% detail.fund.year %])</span>[% END %]</td>
2994                 <td style='padding:5px;'>[% IF detail.recv_time %]<span class="recv_time">[% detail.recv_time %]</span>[% END %]</td>
2995                 <td style='padding:5px;'>[% detail.note %]</td>
2996             </tr>
2997         [% END %]
2998         </tbody>
2999     </table>
3000 </div>
3001 $$
3002 );
3003
3004
3005 INSERT INTO action_trigger.environment (event_def, path) VALUES
3006     ( 14, 'attributes' ),
3007     ( 14, 'lineitem_details' ),
3008     ( 14, 'lineitem_details.owning_lib' ),
3009     ( 14, 'lineitem_notes' )
3010 ;
3011
3012 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3013         'aur.ordered',
3014         'aur', 
3015         oils_i18n_gettext(
3016             'aur.ordered',
3017             'A patron acquisition request has been marked On-Order.',
3018             'ath',
3019             'description'
3020         ), 
3021         TRUE
3022     ), (
3023         'aur.received', 
3024         'aur', 
3025         oils_i18n_gettext(
3026             'aur.received', 
3027             'A patron acquisition request has been marked Received.',
3028             'ath',
3029             'description'
3030         ),
3031         TRUE
3032     ), (
3033         'aur.cancelled',
3034         'aur',
3035         oils_i18n_gettext(
3036             'aur.cancelled',
3037             'A patron acquisition request has been marked Cancelled.',
3038             'ath',
3039             'description'
3040         ),
3041         TRUE
3042     )
3043 ;
3044
3045 INSERT INTO action_trigger.validator (module,description) VALUES (
3046         'Acq::UserRequestOrdered',
3047         oils_i18n_gettext(
3048             'Acq::UserRequestOrdered',
3049             'Tests to see if the corresponding Line Item has a state of "on-order".',
3050             'atval',
3051             'description'
3052         )
3053     ), (
3054         'Acq::UserRequestReceived',
3055         oils_i18n_gettext(
3056             'Acq::UserRequestReceived',
3057             'Tests to see if the corresponding Line Item has a state of "received".',
3058             'atval',
3059             'description'
3060         )
3061     ), (
3062         'Acq::UserRequestCancelled',
3063         oils_i18n_gettext(
3064             'Acq::UserRequestCancelled',
3065             'Tests to see if the corresponding Line Item has a state of "cancelled".',
3066             'atval',
3067             'description'
3068         )
3069     )
3070 ;
3071
3072 -- What was event_definition #15 in v1.6.1 will be recreated as #20.  This
3073 -- renumbering requires some juggling:
3074 --
3075 -- 1. Update any child rows to point to #20.  These updates will temporarily
3076 -- violate foreign key constraints, but that's okay as long as we create
3077 -- #20 before committing.
3078 --
3079 -- 2. Delete the old #15.
3080 --
3081 -- 3. Insert the new #15.
3082 --
3083 -- 4. Insert #20.
3084 --
3085 -- We could combine steps 2 and 3 into a single update, but that would create
3086 -- additional opportunities for typos, since we already have the insert from
3087 -- an upgrade script.
3088
3089 UPDATE action_trigger.environment
3090 SET event_def = 20
3091 WHERE event_def = 15;
3092
3093 UPDATE action_trigger.event
3094 SET event_def = 20
3095 WHERE event_def = 15;
3096
3097 UPDATE action_trigger.event_params
3098 SET event_def = 20
3099 WHERE event_def = 15;
3100
3101 DELETE FROM action_trigger.event_definition
3102 WHERE id = 15;
3103
3104 INSERT INTO action_trigger.event_definition (
3105         id,
3106         active,
3107         owner,
3108         name,
3109         hook,
3110         validator,
3111         reactor,
3112         template
3113     ) VALUES (
3114         15,
3115         FALSE,
3116         1,
3117         'Email Notice: Patron Acquisition Request marked On-Order.',
3118         'aur.ordered',
3119         'Acq::UserRequestOrdered',
3120         'SendEmail',
3121 $$
3122 [%- USE date -%]
3123 [%- SET li = target.lineitem; -%]
3124 [%- SET user = target.usr -%]
3125 [%- SET title = helpers.get_li_attr("title", "", li.attributes) -%]
3126 [%- SET author = helpers.get_li_attr("author", "", li.attributes) -%]
3127 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) -%]
3128 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) -%]
3129 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3130 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3131
3132 To: [%- params.recipient_email || user.email %]
3133 From: [%- params.sender_email || default_sender %]
3134 Subject: Acquisition Request Notification
3135
3136 Dear [% user.family_name %], [% user.first_given_name %]
3137 Our records indicate the following acquisition request has been placed on order.
3138
3139 Title: [% title %]
3140 [% IF author %]Author: [% author %][% END %]
3141 [% IF edition %]Edition: [% edition %][% END %]
3142 [% IF isbn %]ISBN: [% isbn %][% END %]
3143 [% IF publisher %]Publisher: [% publisher %][% END %]
3144 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3145 Lineitem ID: [% li.id %]
3146 $$
3147     ), (
3148         16,
3149         FALSE,
3150         1,
3151         'Email Notice: Patron Acquisition Request marked Received.',
3152         'aur.received',
3153         'Acq::UserRequestReceived',
3154         'SendEmail',
3155 $$
3156 [%- USE date -%]
3157 [%- SET li = target.lineitem; -%]
3158 [%- SET user = target.usr -%]
3159 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3160 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3161 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3162 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3163 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3164 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3165
3166 To: [%- params.recipient_email || user.email %]
3167 From: [%- params.sender_email || default_sender %]
3168 Subject: Acquisition Request Notification
3169
3170 Dear [% user.family_name %], [% user.first_given_name %]
3171 Our records indicate the materials for the following acquisition request have been received.
3172
3173 Title: [% title %]
3174 [% IF author %]Author: [% author %][% END %]
3175 [% IF edition %]Edition: [% edition %][% END %]
3176 [% IF isbn %]ISBN: [% isbn %][% END %]
3177 [% IF publisher %]Publisher: [% publisher %][% END %]
3178 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3179 Lineitem ID: [% li.id %]
3180 $$
3181     ), (
3182         17,
3183         FALSE,
3184         1,
3185         'Email Notice: Patron Acquisition Request marked Cancelled.',
3186         'aur.cancelled',
3187         'Acq::UserRequestCancelled',
3188         'SendEmail',
3189 $$
3190 [%- USE date -%]
3191 [%- SET li = target.lineitem; -%]
3192 [%- SET user = target.usr -%]
3193 [%- SET title = helpers.get_li_attr("title", "", li.attributes) %]
3194 [%- SET author = helpers.get_li_attr("author", "", li.attributes) %]
3195 [%- SET edition = helpers.get_li_attr("edition", "", li.attributes) %]
3196 [%- SET isbn = helpers.get_li_attr("isbn", "", li.attributes) %]
3197 [%- SET publisher = helpers.get_li_attr("publisher", "", li.attributes) -%]
3198 [%- SET pubdate = helpers.get_li_attr("pubdate", "", li.attributes) -%]
3199
3200 To: [%- params.recipient_email || user.email %]
3201 From: [%- params.sender_email || default_sender %]
3202 Subject: Acquisition Request Notification
3203
3204 Dear [% user.family_name %], [% user.first_given_name %]
3205 Our records indicate the following acquisition request has been cancelled.
3206
3207 Title: [% title %]
3208 [% IF author %]Author: [% author %][% END %]
3209 [% IF edition %]Edition: [% edition %][% END %]
3210 [% IF isbn %]ISBN: [% isbn %][% END %]
3211 [% IF publisher %]Publisher: [% publisher %][% END %]
3212 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3213 Lineitem ID: [% li.id %]
3214 $$
3215     );
3216
3217 INSERT INTO action_trigger.environment (
3218         event_def,
3219         path
3220     ) VALUES 
3221         ( 15, 'lineitem' ),
3222         ( 15, 'lineitem.attributes' ),
3223         ( 15, 'usr' ),
3224
3225         ( 16, 'lineitem' ),
3226         ( 16, 'lineitem.attributes' ),
3227         ( 16, 'usr' ),
3228
3229         ( 17, 'lineitem' ),
3230         ( 17, 'lineitem.attributes' ),
3231         ( 17, 'usr' )
3232     ;
3233
3234 INSERT INTO action_trigger.event_definition
3235 (id, active, owner, name, hook, validator, reactor, cleanup_success, cleanup_failure, delay, delay_field, group_field, template) VALUES
3236 (23, true, 1, 'PO JEDI', 'acqpo.activated', 'Acq::PurchaseOrderEDIRequired', 'GeneratePurchaseOrderJEDI', NULL, NULL, '00:05:00', NULL, NULL,
3237 $$[%- USE date -%]
3238 [%# start JEDI document -%]
3239 [%- BLOCK big_block -%]
3240 {
3241    "recipient":"[% target.provider.san %]",
3242    "sender":"[% target.ordering_agency.mailing_address.san %]",
3243    "body": [{
3244      "ORDERS":[ "order", {
3245         "po_number":[% target.id %],
3246         "date":"[% date.format(date.now, '%Y%m%d') %]",
3247         "buyer":[{
3248             [%- IF target.provider.edi_default.vendcode -%]
3249                 "id":"[% target.ordering_agency.mailing_address.san _ ' ' _ target.provider.edi_default.vendcode %]", 
3250                 "id-qualifier": 91
3251             [%- ELSE -%]
3252                 "id":"[% target.ordering_agency.mailing_address.san %]"
3253             [%- END  -%]
3254         }],
3255         "vendor":[ 
3256             [%- # target.provider.name (target.provider.id) -%]
3257             "[% target.provider.san %]",
3258             {"id-qualifier": 92, "id":"[% target.provider.id %]"}
3259         ],
3260         "currency":"[% target.provider.currency_type %]",
3261         "items":[
3262         [% FOR li IN target.lineitems %]
3263         {
3264             "identifiers":[   [%-# li.isbns = helpers.get_li_isbns(li.attributes) %]
3265             [% FOR isbn IN helpers.get_li_isbns(li.attributes) -%]
3266                 [% IF isbn.length == 13 -%]
3267                 {"id-qualifier":"EN","id":"[% isbn %]"},
3268                 [% ELSE -%]
3269                 {"id-qualifier":"IB","id":"[% isbn %]"},
3270                 [%- END %]
3271             [% END %]
3272                 {"id-qualifier":"SA","id":"[% li.id %]"}
3273             ],
3274             "price":[% li.estimated_unit_price || '0.00' %],
3275             "desc":[
3276                 {"BTI":"[% helpers.get_li_attr('title',     '', li.attributes) %]"}, 
3277                 {"BPU":"[% helpers.get_li_attr('publisher', '', li.attributes) %]"},
3278                 {"BPD":"[% helpers.get_li_attr('pubdate',   '', li.attributes) %]"},
3279                 {"BPH":"[% helpers.get_li_attr('pagination','', li.attributes) %]"}
3280             ],
3281             "quantity":[% li.lineitem_details.size %]
3282         }[% UNLESS loop.last %],[% END %]
3283         [%-# TODO: lineitem details (later) -%]
3284         [% END %]
3285         ],
3286         "line_items":[% target.lineitems.size %]
3287      }]  [% # close ORDERS array %]
3288    }]    [% # close  body  array %]
3289 }
3290 [% END %]
3291 [% tempo = PROCESS big_block; helpers.escape_json(tempo) %]
3292 $$
3293 );
3294
3295 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3296   (23, 'lineitems.attributes'), 
3297   (23, 'lineitems.lineitem_details'), 
3298   (23, 'lineitems.lineitem_notes'), 
3299   (23, 'ordering_agency.mailing_address'), 
3300   (23, 'provider');
3301
3302 UPDATE action_trigger.event_definition SET template = 
3303 $$
3304 [%- USE date -%]
3305 [%-
3306     # find a lineitem attribute by name and optional type
3307     BLOCK get_li_attr;
3308         FOR attr IN li.attributes;
3309             IF attr.attr_name == attr_name;
3310                 IF !attr_type OR attr_type == attr.attr_type;
3311                     attr.attr_value;
3312                     LAST;
3313                 END;
3314             END;
3315         END;
3316     END
3317 -%]
3318
3319 <h2>Purchase Order [% target.id %]</h2>
3320 <br/>
3321 date <b>[% date.format(date.now, '%Y%m%d') %]</b>
3322 <br/>
3323
3324 <style>
3325     table td { padding:5px; border:1px solid #aaa;}
3326     table { width:95%; border-collapse:collapse; }
3327     #vendor-notes { padding:5px; border:1px solid #aaa; }
3328 </style>
3329 <table id='vendor-table'>
3330   <tr>
3331     <td valign='top'>Vendor</td>
3332     <td>
3333       <div>[% target.provider.name %]</div>
3334       <div>[% target.provider.addresses.0.street1 %]</div>
3335       <div>[% target.provider.addresses.0.street2 %]</div>
3336       <div>[% target.provider.addresses.0.city %]</div>
3337       <div>[% target.provider.addresses.0.state %]</div>
3338       <div>[% target.provider.addresses.0.country %]</div>
3339       <div>[% target.provider.addresses.0.post_code %]</div>
3340     </td>
3341     <td valign='top'>Ship to / Bill to</td>
3342     <td>
3343       <div>[% target.ordering_agency.name %]</div>
3344       <div>[% target.ordering_agency.billing_address.street1 %]</div>
3345       <div>[% target.ordering_agency.billing_address.street2 %]</div>
3346       <div>[% target.ordering_agency.billing_address.city %]</div>
3347       <div>[% target.ordering_agency.billing_address.state %]</div>
3348       <div>[% target.ordering_agency.billing_address.country %]</div>
3349       <div>[% target.ordering_agency.billing_address.post_code %]</div>
3350     </td>
3351   </tr>
3352 </table>
3353
3354 <br/><br/>
3355 <fieldset id='vendor-notes'>
3356     <legend>Notes to the Vendor</legend>
3357     <ul>
3358     [% FOR note IN target.notes %]
3359         [% IF note.vendor_public == 't' %]
3360             <li>[% note.value %]</li>
3361         [% END %]
3362     [% END %]
3363     </ul>
3364 </fieldset>
3365 <br/><br/>
3366
3367 <table>
3368   <thead>
3369     <tr>
3370       <th>PO#</th>
3371       <th>ISBN or Item #</th>
3372       <th>Title</th>
3373       <th>Quantity</th>
3374       <th>Unit Price</th>
3375       <th>Line Total</th>
3376       <th>Notes</th>
3377     </tr>
3378   </thead>
3379   <tbody>
3380
3381   [% subtotal = 0 %]
3382   [% FOR li IN target.lineitems %]
3383
3384   <tr>
3385     [% count = li.lineitem_details.size %]
3386     [% price = li.estimated_unit_price %]
3387     [% litotal = (price * count) %]
3388     [% subtotal = subtotal + litotal %]
3389     [% isbn = PROCESS get_li_attr attr_name = 'isbn' %]
3390     [% ident = PROCESS get_li_attr attr_name = 'identifier' %]
3391
3392     <td>[% target.id %]</td>
3393     <td>[% isbn || ident %]</td>
3394     <td>[% PROCESS get_li_attr attr_name = 'title' %]</td>
3395     <td>[% count %]</td>
3396     <td>[% price %]</td>
3397     <td>[% litotal %]</td>
3398     <td>
3399         <ul>
3400         [% FOR note IN li.lineitem_notes %]
3401             [% IF note.vendor_public == 't' %]
3402                 <li>[% note.value %]</li>
3403             [% END %]
3404         [% END %]
3405         </ul>
3406     </td>
3407   </tr>
3408   [% END %]
3409   <tr>
3410     <td/><td/><td/><td/>
3411     <td>Sub Total</td>
3412     <td>[% subtotal %]</td>
3413   </tr>
3414   </tbody>
3415 </table>
3416
3417 <br/>
3418
3419 Total Line Item Count: [% target.lineitems.size %]
3420 $$
3421 WHERE id = 4;
3422
3423 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3424     (4, 'lineitems.lineitem_notes'),
3425     (4, 'notes');
3426
3427 INSERT INTO action_trigger.environment (event_def, path) VALUES
3428     ( 14, 'lineitem_notes.alert_text' ),
3429     ( 14, 'distribution_formulas.formula' ),
3430     ( 14, 'lineitem_details.fund' ),
3431     ( 14, 'lineitem_details.eg_copy_id' ),
3432     ( 14, 'lineitem_details.eg_copy_id.call_number' )
3433 ;
3434
3435 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3436         'aur.created',
3437         'aur',
3438         oils_i18n_gettext(
3439             'aur.created',
3440             'A patron has made an acquisitions request.',
3441             'ath',
3442             'description'
3443         ),
3444         TRUE
3445     ), (
3446         'aur.rejected',
3447         'aur',
3448         oils_i18n_gettext(
3449             'aur.rejected',
3450             'A patron acquisition request has been rejected.',
3451             'ath',
3452             'description'
3453         ),
3454         TRUE
3455     )
3456 ;
3457
3458 INSERT INTO action_trigger.event_definition (
3459         id,
3460         active,
3461         owner,
3462         name,
3463         hook,
3464         validator,
3465         reactor,
3466         template
3467     ) VALUES (
3468         18,
3469         FALSE,
3470         1,
3471         'Email Notice: Acquisition Request created.',
3472         'aur.created',
3473         'NOOP_True',
3474         'SendEmail',
3475 $$
3476 [%- USE date -%]
3477 [%- SET user = target.usr -%]
3478 [%- SET title = target.title -%]
3479 [%- SET author = target.author -%]
3480 [%- SET isxn = target.isxn -%]
3481 [%- SET publisher = target.publisher -%]
3482 [%- SET pubdate = target.pubdate -%]
3483
3484 To: [%- params.recipient_email || user.email %]
3485 From: [%- params.sender_email || default_sender %]
3486 Subject: Acquisition Request Notification
3487
3488 Dear [% user.family_name %], [% user.first_given_name %]
3489 Our records indicate that you have made the following acquisition request:
3490
3491 Title: [% title %]
3492 [% IF author %]Author: [% author %][% END %]
3493 [% IF edition %]Edition: [% edition %][% END %]
3494 [% IF isbn %]ISXN: [% isxn %][% END %]
3495 [% IF publisher %]Publisher: [% publisher %][% END %]
3496 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3497 $$
3498     ), (
3499         19,
3500         FALSE,
3501         1,
3502         'Email Notice: Acquisition Request Rejected.',
3503         'aur.rejected',
3504         'NOOP_True',
3505         'SendEmail',
3506 $$
3507 [%- USE date -%]
3508 [%- SET user = target.usr -%]
3509 [%- SET title = target.title -%]
3510 [%- SET author = target.author -%]
3511 [%- SET isxn = target.isxn -%]
3512 [%- SET publisher = target.publisher -%]
3513 [%- SET pubdate = target.pubdate -%]
3514 [%- SET cancel_reason = target.cancel_reason.description -%]
3515
3516 To: [%- params.recipient_email || user.email %]
3517 From: [%- params.sender_email || default_sender %]
3518 Subject: Acquisition Request Notification
3519
3520 Dear [% user.family_name %], [% user.first_given_name %]
3521 Our records indicate the following acquisition request has been rejected for this reason: [% cancel_reason %]
3522
3523 Title: [% title %]
3524 [% IF author %]Author: [% author %][% END %]
3525 [% IF edition %]Edition: [% edition %][% END %]
3526 [% IF isbn %]ISBN: [% isbn %][% END %]
3527 [% IF publisher %]Publisher: [% publisher %][% END %]
3528 [% IF pubdate %]Publication Date: [% pubdate %][% END %]
3529 $$
3530     );
3531
3532 INSERT INTO action_trigger.environment (
3533         event_def,
3534         path
3535     ) VALUES 
3536         ( 18, 'usr' ),
3537         ( 19, 'usr' ),
3538         ( 19, 'cancel_reason' )
3539     ;
3540
3541 INSERT INTO action_trigger.event_definition (id, active, owner, name, hook, validator, reactor, delay, template) 
3542     VALUES (20, 'f', 1, 'Password reset request notification', 'password.reset_request', 'NOOP_True', 'SendEmail', '00:00:01',
3543 $$
3544 [%- USE date -%]
3545 [%- user = target.usr -%]
3546 To: [%- params.recipient_email || user.email %]
3547 From: [%- params.sender_email || user.home_ou.email || default_sender %]
3548 Subject: [% user.home_ou.name %]: library account password reset request
3549   
3550 You have received this message because you, or somebody else, requested a reset
3551 of your library system password. If you did not request a reset of your library
3552 system password, just ignore this message and your current password will
3553 continue to work.
3554
3555 If you did request a reset of your library system password, please perform
3556 the following steps to continue the process of resetting your password:
3557
3558 1. Open the following link in a web browser: https://[% params.hostname %]/opac/password/[% params.locale || 'en-US' %]/[% target.uuid %]
3559 The browser displays a password reset form.
3560
3561 2. Enter your new password in the password reset form in the browser. You must
3562 enter the password twice to ensure that you do not make a mistake. If the
3563 passwords match, you will then be able to log in to your library system account
3564 with the new password.
3565
3566 $$);
3567
3568 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3569     VALUES (
3570         'format.acqcle.html',
3571         'acqcle',
3572         'Formats claim events into a voucher',
3573         TRUE
3574     );
3575
3576 INSERT INTO action_trigger.event_definition (
3577         id, active, owner, name, hook, group_field,
3578         validator, reactor, granularity, template
3579     ) VALUES (
3580         21,
3581         TRUE,
3582         1,
3583         'Claim Voucher',
3584         'format.acqcle.html',
3585         'claim',
3586         'NOOP_True',
3587         'ProcessTemplate',
3588         'print-on-demand',
3589 $$
3590 [%- USE date -%]
3591 [%- SET claim = target.0.claim -%]
3592 <!-- This will need refined/prettified. -->
3593 <div class="acq-claim-voucher">
3594     <h2>Claim: [% claim.id %] ([% claim.type.code %])</h2>
3595     <h3>Against: [%- helpers.get_li_attr("title", "", claim.lineitem_detail.lineitem.attributes) -%]</h3>
3596     <ul>
3597         [% FOR event IN target %]
3598         <li>
3599             Event type: [% event.type.code %]
3600             [% IF event.type.library_initiated %](Library initiated)[% END %]
3601             <br />
3602             Event date: [% event.event_date %]<br />
3603             Order date: [% event.claim.lineitem_detail.lineitem.purchase_order.order_date %]<br />
3604             Expected receive date: [% event.claim.lineitem_detail.lineitem.expected_recv_time %]<br />
3605             Initiated by: [% event.creator.family_name %], [% event.creator.first_given_name %] [% event.creator.second_given_name %]<br />
3606             Barcode: [% event.claim.lineitem_detail.barcode %]; Fund:
3607             [% event.claim.lineitem_detail.fund.code %]
3608             ([% event.claim.lineitem_detail.fund.year %])
3609         </li>
3610         [% END %]
3611     </ul>
3612 </div>
3613 $$
3614 );
3615
3616 INSERT INTO action_trigger.environment (event_def, path) VALUES
3617     (21, 'claim'),
3618     (21, 'claim.type'),
3619     (21, 'claim.lineitem_detail'),
3620     (21, 'claim.lineitem_detail.fund'),
3621     (21, 'claim.lineitem_detail.lineitem.attributes'),
3622     (21, 'claim.lineitem_detail.lineitem.purchase_order'),
3623     (21, 'creator'),
3624     (21, 'type')
3625 ;
3626
3627 INSERT INTO action_trigger.hook (key, core_type, description, passive)
3628     VALUES (
3629         'format.acqinv.html',
3630         'acqinv',
3631         'Formats invoices into a voucher',
3632         TRUE
3633     );
3634
3635 INSERT INTO action_trigger.event_definition (
3636         id, active, owner, name, hook,
3637         validator, reactor, granularity, template
3638     ) VALUES (
3639         22,
3640         TRUE,
3641         1,
3642         'Invoice',
3643         'format.acqinv.html',
3644         'NOOP_True',
3645         'ProcessTemplate',
3646         'print-on-demand',
3647 $$
3648 [% FILTER collapse %]
3649 [%- SET invoice = target -%]
3650 <!-- This lacks totals, info about funds (for invoice entries,
3651     funds are per-LID!), and general refinement -->
3652 <div class="acq-invoice-voucher">
3653     <h1>Invoice</h1>
3654     <div>
3655         <strong>No.</strong> [% invoice.inv_ident %]
3656         [% IF invoice.inv_type %]
3657             / <strong>Type:</strong>[% invoice.inv_type %]
3658         [% END %]
3659     </div>
3660     <div>
3661         <dl>
3662             [% BLOCK ent_with_address %]
3663             <dt>[% ent_label %]: [% ent.name %] ([% ent.code %])</dt>
3664             <dd>
3665                 [% IF ent.addresses.0 %]
3666                     [% SET addr = ent.addresses.0 %]
3667                     [% addr.street1 %]<br />
3668                     [% IF addr.street2 %][% addr.street2 %]<br />[% END %]
3669                     [% addr.city %],
3670                     [% IF addr.county %] [% addr.county %], [% END %]
3671                     [% IF addr.state %] [% addr.state %] [% END %]
3672                     [% IF addr.post_code %][% addr.post_code %][% END %]<br />
3673                     [% IF addr.country %] [% addr.country %] [% END %]
3674                 [% END %]
3675                 <p>
3676                     [% IF ent.phone %] Phone: [% ent.phone %]<br />[% END %]
3677                     [% IF ent.fax_phone %] Fax: [% ent.fax_phone %]<br />[% END %]
3678                     [% IF ent.url %] URL: [% ent.url %]<br />[% END %]
3679                     [% IF ent.email %] E-mail: [% ent.email %] [% END %]
3680                 </p>
3681             </dd>
3682             [% END %]
3683             [% INCLUDE ent_with_address
3684                 ent = invoice.provider
3685                 ent_label = "Provider" %]
3686             [% INCLUDE ent_with_address
3687                 ent = invoice.shipper
3688                 ent_label = "Shipper" %]
3689             <dt>Receiver</dt>
3690             <dd>
3691                 [% invoice.receiver.name %] ([% invoice.receiver.shortname %])
3692             </dd>
3693             <dt>Received</dt>
3694             <dd>
3695                 [% helpers.format_date(invoice.recv_date) %] by
3696                 [% invoice.recv_method %]
3697             </dd>
3698             [% IF invoice.note %]
3699                 <dt>Note</dt>
3700                 <dd>
3701                     [% invoice.note %]
3702                 </dd>
3703             [% END %]
3704         </dl>
3705     </div>
3706     <ul>
3707         [% FOR entry IN invoice.entries %]
3708             <li>
3709                 [% IF entry.lineitem %]
3710                     Title: [% helpers.get_li_attr(
3711                         "title", "", entry.lineitem.attributes
3712                     ) %]<br />
3713                     Author: [% helpers.get_li_attr(
3714                         "author", "", entry.lineitem.attributes
3715                     ) %]
3716                 [% END %]
3717                 [% IF entry.purchase_order %]
3718                     (PO: [% entry.purchase_order.name %])
3719                 [% END %]<br />
3720                 Invoice item count: [% entry.inv_item_count %]
3721                 [% IF entry.phys_item_count %]
3722                     / Physical item count: [% entry.phys_item_count %]
3723                 [% END %]
3724                 <br />
3725                 [% IF entry.cost_billed %]
3726                     Cost billed: [% entry.cost_billed %]
3727                     [% IF entry.billed_per_item %](per item)[% END %]
3728                     <br />
3729                 [% END %]
3730                 [% IF entry.actual_cost %]
3731                     Actual cost: [% entry.actual_cost %]<br />
3732                 [% END %]
3733                 [% IF entry.amount_paid %]
3734                     Amount paid: [% entry.amount_paid %]<br />
3735                 [% END %]
3736                 [% IF entry.note %]Note: [% entry.note %][% END %]
3737             </li>
3738         [% END %]
3739         [% FOR item IN invoice.items %]
3740             <li>
3741                 [% IF item.inv_item_type %]
3742                     Item Type: [% item.inv_item_type %]<br />
3743                 [% END %]
3744                 [% IF item.title %]Title/Description:
3745                     [% item.title %]<br />
3746                 [% END %]
3747                 [% IF item.author %]Author: [% item.author %]<br />[% END %]
3748                 [% IF item.purchase_order %]PO: [% item.purchase_order %]<br />[% END %]
3749                 [% IF item.note %]Note: [% item.note %]<br />[% END %]
3750                 [% IF item.cost_billed %]
3751                     Cost billed: [% item.cost_billed %]<br />
3752                 [% END %]
3753                 [% IF item.actual_cost %]
3754                     Actual cost: [% item.actual_cost %]<br />
3755                 [% END %]
3756                 [% IF item.amount_paid %]
3757                     Amount paid: [% item.amount_paid %]<br />
3758                 [% END %]
3759             </li>
3760         [% END %]
3761     </ul>
3762 </div>
3763 [% END %]
3764 $$
3765 );
3766
3767 INSERT INTO action_trigger.environment (event_def, path) VALUES
3768     (22, 'provider'),
3769     (22, 'provider.addresses'),
3770     (22, 'shipper'),
3771     (22, 'shipper.addresses'),
3772     (22, 'receiver'),
3773     (22, 'entries'),
3774     (22, 'entries.purchase_order'),
3775     (22, 'entries.lineitem'),
3776     (22, 'entries.lineitem.attributes'),
3777     (22, 'items')
3778 ;
3779
3780 INSERT INTO action_trigger.environment (event_def, path) VALUES 
3781   (23, 'provider.edi_default');
3782
3783 INSERT INTO action_trigger.validator (module, description) 
3784     VALUES (
3785         'Acq::PurchaseOrderEDIRequired',
3786         oils_i18n_gettext(
3787             'Acq::PurchaseOrderEDIRequired',
3788             'Purchase order is delivered via EDI',
3789             'atval',
3790             'description'
3791         )
3792     );
3793
3794 INSERT INTO action_trigger.reactor (module, description)
3795     VALUES (
3796         'GeneratePurchaseOrderJEDI',
3797         oils_i18n_gettext(
3798             'GeneratePurchaseOrderJEDI',
3799             'Creates purchase order JEDI (JSON EDI) for subsequent EDI processing',
3800             'atreact',
3801             'description'
3802         )
3803     );
3804
3805 UPDATE action_trigger.hook 
3806     SET 
3807         key = 'acqpo.activated', 
3808         passive = FALSE,
3809         description = oils_i18n_gettext(
3810             'acqpo.activated',
3811             'Purchase order was activated',
3812             'ath',
3813             'description'
3814         )
3815     WHERE key = 'format.po.jedi';
3816
3817 -- We just changed a key in action_trigger.hook.  Now redirect any
3818 -- child rows to point to the new key.  (There probably aren't any;
3819 -- this is just a precaution against possible local modifications.)
3820
3821 UPDATE action_trigger.event_definition
3822 SET hook = 'acqpo.activated'
3823 WHERE hook = 'format.po.jedi';
3824
3825 INSERT INTO action_trigger.reactor (module, description) VALUES (
3826     'AstCall', 'Possibly place a phone call with Asterisk'
3827 );
3828
3829 INSERT INTO
3830     action_trigger.event_definition (
3831         id, active, owner, name, hook, validator, reactor,
3832         cleanup_success, cleanup_failure, delay, delay_field, group_field,
3833         max_delay, granularity, usr_field, opt_in_setting, template
3834     ) VALUES (
3835         24,
3836         FALSE,
3837         1,
3838         'Telephone Overdue Notice',
3839         'checkout.due', 'NOOP_True', 'AstCall',
3840         DEFAULT, DEFAULT, '5 seconds', 'due_date', 'usr',
3841         DEFAULT, DEFAULT, DEFAULT, DEFAULT,
3842         $$
3843 [% phone = target.0.usr.day_phone | replace('[\s\-\(\)]', '') -%]
3844 [% IF phone.match('^[2-9]') %][% country = 1 %][% ELSE %][% country = '' %][% END -%]
3845 Channel: [% channel_prefix %]/[% country %][% phone %]
3846 Context: overdue-test
3847 MaxRetries: 1
3848 RetryTime: 60
3849 WaitTime: 30
3850 Extension: 10
3851 Archive: 1
3852 Set: eg_user_id=[% target.0.usr.id %]
3853 Set: items=[% target.size %]
3854 Set: titlestring=[% titles = [] %][% FOR circ IN target %][% titles.push(circ.target_copy.call_number.record.simple_record.title) %][% END %][% titles.join(". ") %]
3855 $$
3856     );
3857
3858 INSERT INTO
3859     action_trigger.environment (id, event_def, path)
3860     VALUES
3861         (DEFAULT, 24, 'target_copy.call_number.record.simple_record'),
3862         (DEFAULT, 24, 'usr')
3863     ;
3864
3865 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
3866         'circ.format.history.email',
3867         'circ', 
3868         oils_i18n_gettext(
3869             'circ.format.history.email',
3870             'An email has been requested for a circ history.',
3871             'ath',
3872             'description'
3873         ), 
3874         FALSE
3875     )
3876     ,(
3877         'circ.format.history.print',
3878         'circ', 
3879         oils_i18n_gettext(
3880             'circ.format.history.print',
3881             'A circ history needs to be formatted for printing.',
3882             'ath',
3883             'description'
3884         ), 
3885         FALSE
3886     )
3887     ,(
3888         'ahr.format.history.email',
3889         'ahr', 
3890         oils_i18n_gettext(
3891             'ahr.format.history.email',
3892             'An email has been requested for a hold request history.',
3893             'ath',
3894             'description'
3895         ), 
3896         FALSE
3897     )
3898     ,(
3899         'ahr.format.history.print',
3900         'ahr', 
3901         oils_i18n_gettext(
3902             'ahr.format.history.print',
3903             'A hold request history needs to be formatted for printing.',
3904             'ath',
3905             'description'
3906         ), 
3907         FALSE
3908     )
3909
3910 ;
3911
3912 INSERT INTO action_trigger.event_definition (
3913         id,
3914         active,
3915         owner,
3916         name,
3917         hook,
3918         validator,
3919         reactor,
3920         group_field,
3921         granularity,
3922         template
3923     ) VALUES (
3924         25,
3925         TRUE,
3926         1,
3927         'circ.history.email',
3928         'circ.format.history.email',
3929         'NOOP_True',
3930         'SendEmail',
3931         'usr',
3932         NULL,
3933 $$
3934 [%- USE date -%]
3935 [%- SET user = target.0.usr -%]
3936 To: [%- params.recipient_email || user.email %]
3937 From: [%- params.sender_email || default_sender %]
3938 Subject: Circulation History
3939
3940     [% FOR circ IN target %]
3941             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
3942             Barcode: [% circ.target_copy.barcode %]
3943             Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]
3944             Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]
3945             Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]
3946     [% END %]
3947 $$
3948     )
3949     ,(
3950         26,
3951         TRUE,
3952         1,
3953         'circ.history.print',
3954         'circ.format.history.print',
3955         'NOOP_True',
3956         'ProcessTemplate',
3957         'usr',
3958         'print-on-demand',
3959 $$
3960 [%- USE date -%]
3961 <div>
3962     <style> li { padding: 8px; margin 5px; }</style>
3963     <div>[% date.format %]</div>
3964     <br/>
3965
3966     [% user.family_name %], [% user.first_given_name %]
3967     <ol>
3968     [% FOR circ IN target %]
3969         <li>
3970             <div>[% helpers.get_copy_bib_basics(circ.target_copy.id).title %]</div>
3971             <div>Barcode: [% circ.target_copy.barcode %]</div>
3972             <div>Checked Out: [% date.format(helpers.format_date(circ.xact_start), '%Y-%m-%d') %]</div>
3973             <div>Due Date: [% date.format(helpers.format_date(circ.due_date), '%Y-%m-%d') %]</div>
3974             <div>Returned: [% date.format(helpers.format_date(circ.checkin_time), '%Y-%m-%d') %]</div>
3975         </li>
3976     [% END %]
3977     </ol>
3978 </div>
3979 $$
3980     )
3981     ,(
3982         27,
3983         TRUE,
3984         1,
3985         'ahr.history.email',
3986         'ahr.format.history.email',
3987         'NOOP_True',
3988         'SendEmail',
3989         'usr',
3990         NULL,
3991 $$
3992 [%- USE date -%]
3993 [%- SET user = target.0.usr -%]
3994 To: [%- params.recipient_email || user.email %]
3995 From: [%- params.sender_email || default_sender %]
3996 Subject: Hold Request History
3997
3998     [% FOR hold IN target %]
3999             [% helpers.get_copy_bib_basics(hold.current_copy.id).title %]
4000             Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]
4001             [% IF hold.fulfillment_time %]Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %][% END %]
4002     [% END %]
4003 $$
4004     )
4005     ,(
4006         28,
4007         TRUE,
4008         1,
4009         'ahr.history.print',
4010         'ahr.format.history.print',
4011         'NOOP_True',
4012         'ProcessTemplate',
4013         'usr',
4014         'print-on-demand',
4015 $$
4016 [%- USE date -%]
4017 <div>
4018     <style> li { padding: 8px; margin 5px; }</style>
4019     <div>[% date.format %]</div>
4020     <br/>
4021
4022     [% user.family_name %], [% user.first_given_name %]
4023     <ol>
4024     [% FOR hold IN target %]
4025         <li>
4026             <div>[% helpers.get_copy_bib_basics(hold.current_copy.id).title %]</div>
4027             <div>Requested: [% date.format(helpers.format_date(hold.request_time), '%Y-%m-%d') %]</div>
4028             [% IF hold.fulfillment_time %]<div>Fulfilled: [% date.format(helpers.format_date(hold.fulfillment_time), '%Y-%m-%d') %]</div>[% END %]
4029         </li>
4030     [% END %]
4031     </ol>
4032 </div>
4033 $$
4034     )
4035
4036 ;
4037
4038 INSERT INTO action_trigger.environment (
4039         event_def,
4040         path
4041     ) VALUES 
4042          ( 25, 'target_copy')
4043         ,( 25, 'usr' )
4044         ,( 26, 'target_copy' )
4045         ,( 26, 'usr' )
4046         ,( 27, 'current_copy' )
4047         ,( 27, 'usr' )
4048         ,( 28, 'current_copy' )
4049         ,( 28, 'usr' )
4050 ;
4051
4052 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4053         'money.format.payment_receipt.email',
4054         'mp', 
4055         oils_i18n_gettext(
4056             'money.format.payment_receipt.email',
4057             'An email has been requested for a payment receipt.',
4058             'ath',
4059             'description'
4060         ), 
4061         FALSE
4062     )
4063     ,(
4064         'money.format.payment_receipt.print',
4065         'mp', 
4066         oils_i18n_gettext(
4067             'money.format.payment_receipt.print',
4068             'A payment receipt needs to be formatted for printing.',
4069             'ath',
4070             'description'
4071         ), 
4072         FALSE
4073     )
4074 ;
4075
4076 INSERT INTO action_trigger.event_definition (
4077         id,
4078         active,
4079         owner,
4080         name,
4081         hook,
4082         validator,
4083         reactor,
4084         group_field,
4085         granularity,
4086         template
4087     ) VALUES (
4088         29,
4089         TRUE,
4090         1,
4091         'money.payment_receipt.email',
4092         'money.format.payment_receipt.email',
4093         'NOOP_True',
4094         'SendEmail',
4095         'xact.usr',
4096         NULL,
4097 $$
4098 [%- USE date -%]
4099 [%- SET user = target.0.xact.usr -%]
4100 To: [%- params.recipient_email || user.email %]
4101 From: [%- params.sender_email || default_sender %]
4102 Subject: Payment Receipt
4103
4104 [% date.format -%]
4105 [%- SET xact_mp_hash = {} -%]
4106 [%- FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions -%]
4107     [%- SET xact_id = mp.xact.id -%]
4108     [%- IF ! xact_mp_hash.defined( xact_id ) -%][%- xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } -%][%- END -%]
4109     [%- xact_mp_hash.$xact_id.payments.push(mp) -%]
4110 [%- END -%]
4111 [%- FOR xact_id IN xact_mp_hash.keys.sort -%]
4112     [%- SET xact = xact_mp_hash.$xact_id.xact %]
4113 Transaction ID: [% xact_id %]
4114     [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4115     [% ELSE %]Miscellaneous
4116     [% END %]
4117     Line item billings:
4118         [%- SET mb_type_hash = {} -%]
4119         [%- FOR mb IN xact.billings %][%# Group billings by their btype -%]
4120             [%- IF mb.voided == 'f' -%]
4121                 [%- SET mb_type = mb.btype.id -%]
4122                 [%- IF ! mb_type_hash.defined( mb_type ) -%][%- mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } -%][%- END -%]
4123                 [%- IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) -%][%- mb_type_hash.$mb_type.first_ts = mb.billing_ts -%][%- END -%]
4124                 [%- mb_type_hash.$mb_type.last_ts = mb.billing_ts -%]
4125                 [%- mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount -%]
4126                 [%- mb_type_hash.$mb_type.billings.push( mb ) -%]
4127             [%- END -%]
4128         [%- END -%]
4129         [%- FOR mb_type IN mb_type_hash.keys.sort -%]
4130             [%- IF mb_type == 1 %][%-# Consolidated view of overdue billings -%]
4131                 $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4132                     on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4133             [%- ELSE -%][%# all other billings show individually %]
4134                 [% FOR mb IN mb_type_hash.$mb_type.billings %]
4135                     $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4136                 [% END %]
4137             [% END %]
4138         [% END %]
4139     Line item payments:
4140         [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4141             Payment ID: [% mp.id %]
4142                 Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4143                     [% CASE "cash_payment" %]cash
4144                     [% CASE "check_payment" %]check
4145                     [% CASE "credit_card_payment" %]credit card (
4146                         [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4147                         [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4148                         [% cc_chunks.last -%]
4149                         exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4150                     )
4151                     [% CASE "credit_payment" %]credit
4152                     [% CASE "forgive_payment" %]forgiveness
4153                     [% CASE "goods_payment" %]goods
4154                     [% CASE "work_payment" %]work
4155                 [%- END %] on [% mp.payment_ts %] [% mp.note %]
4156         [% END %]
4157 [% END %]
4158 $$
4159     )
4160     ,(
4161         30,
4162         TRUE,
4163         1,
4164         'money.payment_receipt.print',
4165         'money.format.payment_receipt.print',
4166         'NOOP_True',
4167         'ProcessTemplate',
4168         'xact.usr',
4169         'print-on-demand',
4170 $$
4171 [%- USE date -%][%- SET user = target.0.xact.usr -%]
4172 <div style="li { padding: 8px; margin 5px; }">
4173     <div>[% date.format %]</div><br/>
4174     <ol>
4175     [% SET xact_mp_hash = {} %]
4176     [% FOR mp IN target %][%# Template is hooked around payments, but let us make the receipt focused on transactions %]
4177         [% SET xact_id = mp.xact.id %]
4178         [% IF ! xact_mp_hash.defined( xact_id ) %][% xact_mp_hash.$xact_id = { 'xact' => mp.xact, 'payments' => [] } %][% END %]
4179         [% xact_mp_hash.$xact_id.payments.push(mp) %]
4180     [% END %]
4181     [% FOR xact_id IN xact_mp_hash.keys.sort %]
4182         [% SET xact = xact_mp_hash.$xact_id.xact %]
4183         <li>Transaction ID: [% xact_id %]
4184             [% IF xact.circulation %][% helpers.get_copy_bib_basics(xact.circulation.target_copy).title %]
4185             [% ELSE %]Miscellaneous
4186             [% END %]
4187             Line item billings:<ol>
4188                 [% SET mb_type_hash = {} %]
4189                 [% FOR mb IN xact.billings %][%# Group billings by their btype %]
4190                     [% IF mb.voided == 'f' %]
4191                         [% SET mb_type = mb.btype.id %]
4192                         [% IF ! mb_type_hash.defined( mb_type ) %][% mb_type_hash.$mb_type = { 'sum' => 0.00, 'billings' => [] } %][% END %]
4193                         [% IF ! mb_type_hash.$mb_type.defined( 'first_ts' ) %][% mb_type_hash.$mb_type.first_ts = mb.billing_ts %][% END %]
4194                         [% mb_type_hash.$mb_type.last_ts = mb.billing_ts %]
4195                         [% mb_type_hash.$mb_type.sum = mb_type_hash.$mb_type.sum + mb.amount %]
4196                         [% mb_type_hash.$mb_type.billings.push( mb ) %]
4197                     [% END %]
4198                 [% END %]
4199                 [% FOR mb_type IN mb_type_hash.keys.sort %]
4200                     <li>[% IF mb_type == 1 %][%# Consolidated view of overdue billings %]
4201                         $[% mb_type_hash.$mb_type.sum %] for [% mb_type_hash.$mb_type.billings.0.btype.name %] 
4202                             on [% mb_type_hash.$mb_type.first_ts %] through [% mb_type_hash.$mb_type.last_ts %]
4203                     [% ELSE %][%# all other billings show individually %]
4204                         [% FOR mb IN mb_type_hash.$mb_type.billings %]
4205                             $[% mb.amount %] for [% mb.btype.name %] on [% mb.billing_ts %] [% mb.note %]
4206                         [% END %]
4207                     [% END %]</li>
4208                 [% END %]
4209             </ol>
4210             Line item payments:<ol>
4211                 [% FOR mp IN xact_mp_hash.$xact_id.payments %]
4212                     <li>Payment ID: [% mp.id %]
4213                         Paid [% mp.amount %] via [% SWITCH mp.payment_type -%]
4214                             [% CASE "cash_payment" %]cash
4215                             [% CASE "check_payment" %]check
4216                             [% CASE "credit_card_payment" %]credit card (
4217                                 [%- SET cc_chunks = mp.credit_card_payment.cc_number.replace(' ','').chunk(4); -%]
4218                                 [%- cc_chunks.slice(0, -1+cc_chunks.max).join.replace('\S','X') -%] 
4219                                 [% cc_chunks.last -%]
4220                                 exp [% mp.credit_card_payment.expire_month %]/[% mp.credit_card_payment.expire_year -%]
4221                             )
4222                             [% CASE "credit_payment" %]credit
4223                             [% CASE "forgive_payment" %]forgiveness
4224                             [% CASE "goods_payment" %]goods
4225                             [% CASE "work_payment" %]work
4226                         [%- END %] on [% mp.payment_ts %] [% mp.note %]
4227                     </li>
4228                 [% END %]
4229             </ol>
4230         </li>
4231     [% END %]
4232     </ol>
4233 </div>
4234 $$
4235     )
4236 ;
4237
4238 INSERT INTO action_trigger.environment (
4239         event_def,
4240         path
4241     ) VALUES -- for fleshing mp objects
4242          ( 29, 'xact')
4243         ,( 29, 'xact.usr')
4244         ,( 29, 'xact.grocery' )
4245         ,( 29, 'xact.circulation' )
4246         ,( 29, 'xact.summary' )
4247         ,( 30, 'xact')
4248         ,( 30, 'xact.usr')
4249         ,( 30, 'xact.grocery' )
4250         ,( 30, 'xact.circulation' )
4251         ,( 30, 'xact.summary' )
4252 ;
4253
4254 INSERT INTO action_trigger.cleanup ( module, description ) VALUES (
4255     'DeleteTempBiblioBucket',
4256     oils_i18n_gettext(
4257         'DeleteTempBiblioBucket',
4258         'Deletes a cbreb object used as a target if it has a btype of "temp"',
4259         'atclean',
4260         'description'
4261     )
4262 );
4263
4264 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES (
4265         'biblio.format.record_entry.email',
4266         'cbreb', 
4267         oils_i18n_gettext(
4268             'biblio.format.record_entry.email',
4269             'An email has been requested for one or more biblio record entries.',
4270             'ath',
4271             'description'
4272         ), 
4273         FALSE
4274     )
4275     ,(
4276         'biblio.format.record_entry.print',
4277         'cbreb', 
4278         oils_i18n_gettext(
4279             'biblio.format.record_entry.print',
4280             'One or more biblio record entries need to be formatted for printing.',
4281             'ath',
4282             'description'
4283         ), 
4284         FALSE
4285     )
4286 ;
4287
4288 INSERT INTO action_trigger.event_definition (
4289         id,
4290         active,
4291         owner,
4292         name,
4293         hook,
4294         validator,
4295         reactor,
4296         cleanup_success,
4297         cleanup_failure,
4298         group_field,
4299         granularity,
4300         template
4301     ) VALUES (
4302         31,
4303         TRUE,
4304         1,
4305         'biblio.record_entry.email',
4306         'biblio.format.record_entry.email',
4307         'NOOP_True',
4308         'SendEmail',
4309         'DeleteTempBiblioBucket',
4310         'DeleteTempBiblioBucket',
4311         'owner',
4312         NULL,
4313 $$
4314 [%- USE date -%]
4315 [%- SET user = target.0.owner -%]
4316 To: [%- params.recipient_email || user.email %]
4317 From: [%- params.sender_email || default_sender %]
4318 Subject: Bibliographic Records
4319
4320     [% FOR cbreb IN target %]
4321     [% FOR cbrebi IN cbreb.items %]
4322         Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]
4323         Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]
4324         Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]
4325         Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4326
4327     [% END %]
4328     [% END %]
4329 $$
4330     )
4331     ,(
4332         32,
4333         TRUE,
4334         1,
4335         'biblio.record_entry.print',
4336         'biblio.format.record_entry.print',
4337         'NOOP_True',
4338         'ProcessTemplate',
4339         'DeleteTempBiblioBucket',
4340         'DeleteTempBiblioBucket',
4341         'owner',
4342         'print-on-demand',
4343 $$
4344 [%- USE date -%]
4345 <div>
4346     <style> li { padding: 8px; margin 5px; }</style>
4347     <ol>
4348     [% FOR cbreb IN target %]
4349     [% FOR cbrebi IN cbreb.items %]
4350         <li>Bib ID# [% cbrebi.target_biblio_record_entry.id %] ISBN: [% crebi.target_biblio_record_entry.simple_record.isbn %]<br />
4351             Title: [% cbrebi.target_biblio_record_entry.simple_record.title %]<br />
4352             Author: [% cbrebi.target_biblio_record_entry.simple_record.author %]<br />
4353             Publication Year: [% cbrebi.target_biblio_record_entry.simple_record.pubdate %]
4354         </li>
4355     [% END %]
4356     [% END %]
4357     </ol>
4358 </div>
4359 $$
4360     )
4361 ;
4362
4363 INSERT INTO action_trigger.environment (
4364         event_def,
4365         path
4366     ) VALUES -- for fleshing cbreb objects
4367          ( 31, 'owner' )
4368         ,( 31, 'items' )
4369         ,( 31, 'items.target_biblio_record_entry' )
4370         ,( 31, 'items.target_biblio_record_entry.simple_record' )
4371         ,( 31, 'items.target_biblio_record_entry.call_numbers' )
4372         ,( 31, 'items.target_biblio_record_entry.fixed_fields' )
4373         ,( 31, 'items.target_biblio_record_entry.notes' )
4374         ,( 31, 'items.target_biblio_record_entry.full_record_entries' )
4375         ,( 32, 'owner' )
4376         ,( 32, 'items' )
4377         ,( 32, 'items.target_biblio_record_entry' )
4378         ,( 32, 'items.target_biblio_record_entry.simple_record' )
4379         ,( 32, 'items.target_biblio_record_entry.call_numbers' )
4380         ,( 32, 'items.target_biblio_record_entry.fixed_fields' )
4381         ,( 32, 'items.target_biblio_record_entry.notes' )
4382         ,( 32, 'items.target_biblio_record_entry.full_record_entries' )
4383 ;
4384
4385 INSERT INTO action_trigger.environment (
4386         event_def,
4387         path
4388     ) VALUES -- for fleshing mp objects
4389          ( 29, 'credit_card_payment')
4390         ,( 29, 'xact.billings')
4391         ,( 29, 'xact.billings.btype')
4392         ,( 30, 'credit_card_payment')
4393         ,( 30, 'xact.billings')
4394         ,( 30, 'xact.billings.btype')
4395 ;
4396
4397 INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES 
4398     (   'circ.format.missing_pieces.slip.print',
4399         'circ', 
4400         oils_i18n_gettext(
4401             'circ.format.missing_pieces.slip.print',
4402             'A missing pieces slip needs to be formatted for printing.',
4403             'ath',
4404             'description'
4405         ), 
4406         FALSE
4407     )
4408     ,(  'circ.format.missing_pieces.letter.print',
4409         'circ', 
4410         oils_i18n_gettext(
4411             'circ.format.missing_pieces.letter.print',
4412             'A missing pieces patron letter needs to be formatted for printing.',
4413             'ath',
4414             'description'
4415         ), 
4416         FALSE
4417     )
4418 ;
4419
4420 INSERT INTO action_trigger.event_definition (
4421         id,
4422         active,
4423         owner,
4424         name,
4425         hook,
4426         validator,
4427         reactor,
4428         group_field,
4429         granularity,
4430         template
4431     ) VALUES (
4432         33,
4433         TRUE,
4434         1,
4435         'circ.missing_pieces.slip.print',
4436         'circ.format.missing_pieces.slip.print',
4437         'NOOP_True',
4438         'ProcessTemplate',
4439         'usr',
4440         'print-on-demand',
4441 $$
4442 [%- USE date -%]
4443 [%- SET user = target.0.usr -%]
4444 <div style="li { padding: 8px; margin 5px; }">
4445     <div>[% date.format %]</div><br/>
4446     Missing pieces for:
4447     <ol>
4448     [% FOR circ IN target %]
4449         <li>Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]<br />
4450             [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4451         </li>
4452     [% END %]
4453     </ol>
4454 </div>
4455 $$
4456     )
4457     ,(
4458         34,
4459         TRUE,
4460         1,
4461         'circ.missing_pieces.letter.print',
4462         'circ.format.missing_pieces.letter.print',
4463         'NOOP_True',
4464         'ProcessTemplate',
4465         'usr',
4466         'print-on-demand',
4467 $$
4468 [%- USE date -%]
4469 [%- SET user = target.0.usr -%]
4470 [% date.format %]
4471 Dear [% user.prefix %] [% user.first_given_name %] [% user.family_name %],
4472
4473 We are missing pieces for the following returned items:
4474 [% FOR circ IN target %]
4475 Barcode: [% circ.target_copy.barcode %] Transaction ID: [% circ.id %] Due: [% circ.due_date.format %]
4476 [% helpers.get_copy_bib_basics(circ.target_copy.id).title %]
4477 [% END %]
4478
4479 Please return these pieces as soon as possible.
4480
4481 Thanks!
4482
4483 Library Staff
4484 $$
4485     )
4486 ;
4487
4488 INSERT INTO action_trigger.environment (
4489         event_def,
4490         path
4491     ) VALUES -- for fleshing circ objects
4492          ( 33, 'usr')
4493         ,( 33, 'target_copy')
4494         ,( 33, 'target_copy.circ_lib')
4495         ,( 33, 'target_copy.circ_lib.mailing_address')
4496         ,( 33, 'target_copy.circ_lib.billing_address')
4497         ,( 33, 'target_copy.call_number')
4498         ,( 33, 'target_copy.call_number.owning_lib')
4499         ,( 33, 'target_copy.call_number.owning_lib.mailing_address')
4500         ,( 33, 'target_copy.call_number.owning_lib.billing_address')
4501         ,( 33, 'circ_lib')
4502         ,( 33, 'circ_lib.mailing_address')
4503         ,( 33, 'circ_lib.billing_address')
4504         ,( 34, 'usr')
4505         ,( 34, 'target_copy')
4506         ,( 34, 'target_copy.circ_lib')
4507         ,( 34, 'target_copy.circ_lib.mailing_address')
4508         ,( 34, 'target_copy.circ_lib.billing_address')
4509         ,( 34, 'target_copy.call_number')
4510         ,( 34, 'target_copy.call_number.owning_lib')
4511         ,( 34, 'target_copy.call_number.owning_lib.mailing_address')
4512         ,( 34, 'target_copy.call_number.owning_lib.billing_address')
4513         ,( 34, 'circ_lib')
4514         ,( 34, 'circ_lib.mailing_address')
4515         ,( 34, 'circ_lib.billing_address')
4516 ;
4517
4518 INSERT INTO action_trigger.hook (key,core_type,description,passive) 
4519     VALUES (   
4520         'ahr.format.pull_list',
4521         'ahr', 
4522         oils_i18n_gettext(
4523             'ahr.format.pull_list',
4524             'Format holds pull list for printing',
4525             'ath',
4526             'description'
4527         ), 
4528         FALSE
4529     );
4530
4531 INSERT INTO action_trigger.event_definition (
4532         id,
4533         active,
4534         owner,
4535         name,
4536         hook,
4537         validator,
4538         reactor,
4539         group_field,
4540         granularity,
4541         template
4542     ) VALUES (
4543         35,
4544         TRUE,
4545         1,
4546         'Holds Pull List',
4547         'ahr.format.pull_list',
4548         'NOOP_True',
4549         'ProcessTemplate',
4550         'pickup_lib',
4551         'print-on-demand',
4552 $$
4553 [%- USE date -%]
4554 <style>
4555     table { border-collapse: collapse; } 
4556     td { padding: 5px; border-bottom: 1px solid #888; } 
4557     th { font-weight: bold; }
4558 </style>
4559 [% 
4560     # Sort the holds into copy-location buckets
4561     # In the main print loop, sort each bucket by callnumber before printing
4562     SET holds_list = [];
4563     SET loc_data = [];
4564     SET current_location = target.0.current_copy.location.id;
4565     FOR hold IN target;
4566         IF current_location != hold.current_copy.location.id;
4567             SET current_location = hold.current_copy.location.id;
4568             holds_list.push(loc_data);
4569             SET loc_data = [];
4570         END;
4571         SET hold_data = {
4572             'hold' => hold,
4573             'callnumber' => hold.current_copy.call_number.label
4574         };
4575         loc_data.push(hold_data);
4576     END;
4577     holds_list.push(loc_data)
4578 %]
4579 <table>
4580     <thead>
4581         <tr>
4582             <th>Title</th>
4583             <th>Author</th>
4584             <th>Shelving Location</th>
4585             <th>Call Number</th>
4586             <th>Barcode</th>
4587             <th>Patron</th>
4588         </tr>
4589     </thead>
4590     <tbody>
4591     [% FOR loc_data IN holds_list  %]
4592         [% FOR hold_data IN loc_data.sort('callnumber') %]
4593             [% 
4594                 SET hold = hold_data.hold;
4595                 SET copy_data = helpers.get_copy_bib_basics(hold.current_copy.id);
4596             %]
4597             <tr>
4598                 <td>[% copy_data.title | truncate %]</td>
4599                 <td>[% copy_data.author | truncate %]</td>
4600                 <td>[% hold.current_copy.location.name %]</td>
4601                 <td>[% hold.current_copy.call_number.label %]</td>
4602                 <td>[% hold.current_copy.barcode %]</td>
4603                 <td>[% hold.usr.card.barcode %]</td>
4604             </tr>
4605         [% END %]
4606     [% END %]
4607     <tbody>
4608 </table>
4609 $$
4610 );
4611
4612 INSERT INTO action_trigger.environment (
4613         event_def,
4614         path
4615     ) VALUES
4616         (35, 'current_copy.location'),
4617         (35, 'current_copy.call_number'),
4618         (35, 'usr.card'),
4619         (35, 'pickup_lib')
4620 ;
4621
4622 -- Create the query schema, and the tables and views therein
4623
4624 DROP SCHEMA IF EXISTS sql CASCADE;
4625 DROP SCHEMA IF EXISTS query CASCADE;
4626
4627 CREATE SCHEMA query;
4628
4629 CREATE TABLE query.datatype (
4630         id              SERIAL            PRIMARY KEY,
4631         datatype_name   TEXT              NOT NULL UNIQUE,
4632         is_numeric      BOOL              NOT NULL DEFAULT FALSE,
4633         is_composite    BOOL              NOT NULL DEFAULT FALSE,
4634         CONSTRAINT qdt_comp_not_num CHECK
4635         ( is_numeric IS FALSE OR is_composite IS FALSE )
4636 );
4637
4638 -- Define the most common datatypes in query.datatype.  Note that none of
4639 -- these stock datatypes specifies a width or precision.
4640
4641 -- Also: set the sequence for query.datatype to 1000, leaving plenty of
4642 -- room for more stock datatypes if we ever want to add them.
4643
4644 SELECT setval( 'query.datatype_id_seq', 1000 );
4645
4646 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4647   VALUES (1, 'SMALLINT', true);
4648  
4649 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4650   VALUES (2, 'INTEGER', true);
4651  
4652 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4653   VALUES (3, 'BIGINT', true);
4654  
4655 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4656   VALUES (4, 'DECIMAL', true);
4657  
4658 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4659   VALUES (5, 'NUMERIC', true);
4660  
4661 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4662   VALUES (6, 'REAL', true);
4663  
4664 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4665   VALUES (7, 'DOUBLE PRECISION', true);
4666  
4667 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4668   VALUES (8, 'SERIAL', true);
4669  
4670 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4671   VALUES (9, 'BIGSERIAL', true);
4672  
4673 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4674   VALUES (10, 'MONEY', false);
4675  
4676 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4677   VALUES (11, 'VARCHAR', false);
4678  
4679 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4680   VALUES (12, 'CHAR', false);
4681  
4682 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4683   VALUES (13, 'TEXT', false);
4684  
4685 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4686   VALUES (14, '"char"', false);
4687  
4688 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4689   VALUES (15, 'NAME', false);
4690  
4691 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4692   VALUES (16, 'BYTEA', false);
4693  
4694 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4695   VALUES (17, 'TIMESTAMP WITHOUT TIME ZONE', false);
4696  
4697 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4698   VALUES (18, 'TIMESTAMP WITH TIME ZONE', false);
4699  
4700 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4701   VALUES (19, 'DATE', false);
4702  
4703 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4704   VALUES (20, 'TIME WITHOUT TIME ZONE', false);
4705  
4706 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4707   VALUES (21, 'TIME WITH TIME ZONE', false);
4708  
4709 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4710   VALUES (22, 'INTERVAL', false);
4711  
4712 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4713   VALUES (23, 'BOOLEAN', false);
4714  
4715 CREATE TABLE query.subfield (
4716         id              SERIAL            PRIMARY KEY,
4717         composite_type  INT               NOT NULL
4718                                           REFERENCES query.datatype(id)
4719                                           ON DELETE CASCADE
4720                                           DEFERRABLE INITIALLY DEFERRED,
4721         seq_no          INT               NOT NULL
4722                                           CONSTRAINT qsf_pos_seq_no
4723                                           CHECK( seq_no > 0 ),
4724         subfield_type   INT               NOT NULL
4725                                           REFERENCES query.datatype(id)
4726                                           DEFERRABLE INITIALLY DEFERRED,
4727         CONSTRAINT qsf_datatype_seq_no UNIQUE (composite_type, seq_no)
4728 );
4729
4730 CREATE TABLE query.function_sig (
4731         id              SERIAL            PRIMARY KEY,
4732         function_name   TEXT              NOT NULL,
4733         return_type     INT               REFERENCES query.datatype(id)
4734                                           DEFERRABLE INITIALLY DEFERRED,
4735         is_aggregate    BOOL              NOT NULL DEFAULT FALSE,
4736         CONSTRAINT qfd_rtn_or_aggr CHECK
4737         ( return_type IS NULL OR is_aggregate = FALSE )
4738 );
4739
4740 CREATE INDEX query_function_sig_name_idx 
4741         ON query.function_sig (function_name);
4742
4743 CREATE TABLE query.function_param_def (
4744         id              SERIAL            PRIMARY KEY,
4745         function_id     INT               NOT NULL
4746                                           REFERENCES query.function_sig( id )
4747                                           ON DELETE CASCADE
4748                                           DEFERRABLE INITIALLY DEFERRED,
4749         seq_no          INT               NOT NULL
4750                                           CONSTRAINT qfpd_pos_seq_no CHECK
4751                                           ( seq_no > 0 ),
4752         datatype        INT               NOT NULL
4753                                           REFERENCES query.datatype( id )
4754                                           DEFERRABLE INITIALLY DEFERRED,
4755         CONSTRAINT qfpd_function_param_seq UNIQUE (function_id, seq_no)
4756 );
4757
4758 CREATE TABLE  query.stored_query (
4759         id            SERIAL         PRIMARY KEY,
4760         type          TEXT           NOT NULL CONSTRAINT query_type CHECK
4761                                      ( type IN ( 'SELECT', 'UNION', 'INTERSECT', 'EXCEPT' ) ),
4762         use_all       BOOLEAN        NOT NULL DEFAULT FALSE,
4763         use_distinct  BOOLEAN        NOT NULL DEFAULT FALSE,
4764         from_clause   INT            , --REFERENCES query.from_clause
4765                                      --DEFERRABLE INITIALLY DEFERRED,
4766         where_clause  INT            , --REFERENCES query.expression
4767                                      --DEFERRABLE INITIALLY DEFERRED,
4768         having_clause INT            , --REFERENCES query.expression
4769                                      --DEFERRABLE INITIALLY DEFERRED
4770         limit_count   INT            , --REFERENCES query.expression( id )
4771                                      --DEFERRABLE INITIALLY DEFERRED,
4772         offset_count  INT            --REFERENCES query.expression( id )
4773                                      --DEFERRABLE INITIALLY DEFERRED
4774 );
4775
4776 -- (Foreign keys to be defined later after other tables are created)
4777
4778 CREATE TABLE query.query_sequence (
4779         id              SERIAL            PRIMARY KEY,
4780         parent_query    INT               NOT NULL
4781                                           REFERENCES query.stored_query
4782                                                                           ON DELETE CASCADE
4783                                                                           DEFERRABLE INITIALLY DEFERRED,
4784         seq_no          INT               NOT NULL,
4785         child_query     INT               NOT NULL
4786                                           REFERENCES query.stored_query
4787                                                                           ON DELETE CASCADE
4788                                                                           DEFERRABLE INITIALLY DEFERRED,
4789         CONSTRAINT query_query_seq UNIQUE( parent_query, seq_no )
4790 );
4791
4792 CREATE TABLE query.bind_variable (
4793         name          TEXT             PRIMARY KEY,
4794         type          TEXT             NOT NULL
4795                                            CONSTRAINT bind_variable_type CHECK
4796                                            ( type in ( 'string', 'number', 'string_list', 'number_list' )),
4797         description   TEXT             NOT NULL,
4798         default_value TEXT,            -- to be encoded in JSON
4799         label         TEXT             NOT NULL
4800 );
4801
4802 CREATE TABLE query.expression (
4803         id            SERIAL        PRIMARY KEY,
4804         type          TEXT          NOT NULL CONSTRAINT expression_type CHECK
4805                                     ( type IN (
4806                                     'xbet',    -- between
4807                                     'xbind',   -- bind variable
4808                                     'xbool',   -- boolean
4809                                     'xcase',   -- case
4810                                     'xcast',   -- cast
4811                                     'xcol',    -- column
4812                                     'xex',     -- exists
4813                                     'xfunc',   -- function
4814                                     'xin',     -- in
4815                                     'xisnull', -- is null
4816                                     'xnull',   -- null
4817                                     'xnum',    -- number
4818                                     'xop',     -- operator
4819                                     'xser',    -- series
4820                                     'xstr',    -- string
4821                                     'xsubq'    -- subquery
4822                                                                 ) ),
4823         parenthesize  BOOL          NOT NULL DEFAULT FALSE,
4824         parent_expr   INT           REFERENCES query.expression
4825                                     ON DELETE CASCADE
4826                                     DEFERRABLE INITIALLY DEFERRED,
4827         seq_no        INT           NOT NULL DEFAULT 1,
4828         literal       TEXT,
4829         table_alias   TEXT,
4830         column_name   TEXT,
4831         left_operand  INT           REFERENCES query.expression
4832                                     DEFERRABLE INITIALLY DEFERRED,
4833         operator      TEXT,
4834         right_operand INT           REFERENCES query.expression
4835                                     DEFERRABLE INITIALLY DEFERRED,
4836         function_id   INT           REFERENCES query.function_sig
4837                                     DEFERRABLE INITIALLY DEFERRED,
4838         subquery      INT           REFERENCES query.stored_query
4839                                     DEFERRABLE INITIALLY DEFERRED,
4840         cast_type     INT           REFERENCES query.datatype
4841                                     DEFERRABLE INITIALLY DEFERRED,
4842         negate        BOOL          NOT NULL DEFAULT FALSE,
4843         bind_variable TEXT          REFERENCES query.bind_variable
4844                                         DEFERRABLE INITIALLY DEFERRED
4845 );
4846
4847 CREATE UNIQUE INDEX query_expr_parent_seq
4848         ON query.expression( parent_expr, seq_no )
4849         WHERE parent_expr IS NOT NULL;
4850
4851 -- Due to some circular references, the following foreign key definitions
4852 -- had to be deferred until query.expression existed:
4853
4854 ALTER TABLE query.stored_query
4855         ADD FOREIGN KEY ( where_clause )
4856         REFERENCES query.expression( id )
4857         DEFERRABLE INITIALLY DEFERRED;
4858
4859 ALTER TABLE query.stored_query
4860         ADD FOREIGN KEY ( having_clause )
4861         REFERENCES query.expression( id )
4862         DEFERRABLE INITIALLY DEFERRED;
4863
4864 ALTER TABLE query.stored_query
4865     ADD FOREIGN KEY ( limit_count )
4866     REFERENCES query.expression( id )
4867     DEFERRABLE INITIALLY DEFERRED;
4868
4869 ALTER TABLE query.stored_query
4870     ADD FOREIGN KEY ( offset_count )
4871     REFERENCES query.expression( id )
4872     DEFERRABLE INITIALLY DEFERRED;
4873
4874 CREATE TABLE query.case_branch (
4875         id            SERIAL        PRIMARY KEY,
4876         parent_expr   INT           NOT NULL REFERENCES query.expression
4877                                     ON DELETE CASCADE
4878                                     DEFERRABLE INITIALLY DEFERRED,
4879         seq_no        INT           NOT NULL,
4880         condition     INT           REFERENCES query.expression
4881                                     DEFERRABLE INITIALLY DEFERRED,
4882         result        INT           NOT NULL REFERENCES query.expression
4883                                     DEFERRABLE INITIALLY DEFERRED,
4884         CONSTRAINT case_branch_parent_seq UNIQUE (parent_expr, seq_no)
4885 );
4886
4887 CREATE TABLE query.from_relation (
4888         id               SERIAL        PRIMARY KEY,
4889         type             TEXT          NOT NULL CONSTRAINT relation_type CHECK (
4890                                            type IN ( 'RELATION', 'SUBQUERY', 'FUNCTION' ) ),
4891         table_name       TEXT,
4892         class_name       TEXT,
4893         subquery         INT           REFERENCES query.stored_query,
4894         function_call    INT           REFERENCES query.expression,
4895         table_alias      TEXT,
4896         parent_relation  INT           REFERENCES query.from_relation
4897                                        ON DELETE CASCADE
4898                                        DEFERRABLE INITIALLY DEFERRED,
4899         seq_no           INT           NOT NULL DEFAULT 1,
4900         join_type        TEXT          CONSTRAINT good_join_type CHECK (
4901                                            join_type IS NULL OR join_type IN
4902                                            ( 'INNER', 'LEFT', 'RIGHT', 'FULL' )
4903                                        ),
4904         on_clause        INT           REFERENCES query.expression
4905                                        DEFERRABLE INITIALLY DEFERRED,
4906         CONSTRAINT join_or_core CHECK (
4907         ( parent_relation IS NULL AND join_type IS NULL
4908           AND on_clause IS NULL )
4909         OR
4910         ( parent_relation IS NOT NULL AND join_type IS NOT NULL
4911           AND on_clause IS NOT NULL )
4912         )
4913 );
4914
4915 CREATE UNIQUE INDEX from_parent_seq
4916         ON query.from_relation( parent_relation, seq_no )
4917         WHERE parent_relation IS NOT NULL;
4918
4919 -- The following foreign key had to be deferred until
4920 -- query.from_relation existed
4921
4922 ALTER TABLE query.stored_query
4923         ADD FOREIGN KEY (from_clause)
4924         REFERENCES query.from_relation
4925         DEFERRABLE INITIALLY DEFERRED;
4926
4927 CREATE TABLE query.record_column (
4928         id            SERIAL            PRIMARY KEY,
4929         from_relation INT               NOT NULL REFERENCES query.from_relation
4930                                         ON DELETE CASCADE
4931                                         DEFERRABLE INITIALLY DEFERRED,
4932         seq_no        INT               NOT NULL,
4933         column_name   TEXT              NOT NULL,
4934         column_type   INT               NOT NULL REFERENCES query.datatype
4935                                         ON DELETE CASCADE
4936                                                                         DEFERRABLE INITIALLY DEFERRED,
4937         CONSTRAINT column_sequence UNIQUE (from_relation, seq_no)
4938 );
4939
4940 CREATE TABLE query.select_item (
4941         id               SERIAL         PRIMARY KEY,
4942         stored_query     INT            NOT NULL REFERENCES query.stored_query
4943                                         ON DELETE CASCADE
4944                                         DEFERRABLE INITIALLY DEFERRED,
4945         seq_no           INT            NOT NULL,
4946         expression       INT            NOT NULL REFERENCES query.expression
4947                                         DEFERRABLE INITIALLY DEFERRED,
4948         column_alias     TEXT,
4949         grouped_by       BOOL           NOT NULL DEFAULT FALSE,
4950         CONSTRAINT select_sequence UNIQUE( stored_query, seq_no )
4951 );
4952
4953 CREATE TABLE query.order_by_item (
4954         id               SERIAL         PRIMARY KEY,
4955         stored_query     INT            NOT NULL REFERENCES query.stored_query
4956                                         ON DELETE CASCADE
4957                                         DEFERRABLE INITIALLY DEFERRED,
4958         seq_no           INT            NOT NULL,
4959         expression       INT            NOT NULL REFERENCES query.expression
4960                                         ON DELETE CASCADE
4961                                         DEFERRABLE INITIALLY DEFERRED,
4962         CONSTRAINT order_by_sequence UNIQUE( stored_query, seq_no )
4963 );
4964
4965 ------------------------------------------------------------
4966 -- Create updatable views for different kinds of expressions
4967 ------------------------------------------------------------
4968
4969 -- Create updatable view for BETWEEN expressions
4970
4971 CREATE OR REPLACE VIEW query.expr_xbet AS
4972     SELECT
4973                 id,
4974                 parenthesize,
4975                 parent_expr,
4976                 seq_no,
4977                 left_operand,
4978                 negate
4979     FROM
4980         query.expression
4981     WHERE
4982         type = 'xbet';
4983
4984 CREATE OR REPLACE RULE query_expr_xbet_insert_rule AS
4985     ON INSERT TO query.expr_xbet
4986     DO INSTEAD
4987     INSERT INTO query.expression (
4988                 id,
4989                 type,
4990                 parenthesize,
4991                 parent_expr,
4992                 seq_no,
4993                 left_operand,
4994                 negate
4995     ) VALUES (
4996         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
4997         'xbet',
4998         COALESCE(NEW.parenthesize, FALSE),
4999         NEW.parent_expr,
5000         COALESCE(NEW.seq_no, 1),
5001                 NEW.left_operand,
5002                 COALESCE(NEW.negate, false)
5003     );
5004
5005 CREATE OR REPLACE RULE query_expr_xbet_update_rule AS
5006     ON UPDATE TO query.expr_xbet
5007     DO INSTEAD
5008     UPDATE query.expression SET
5009         id = NEW.id,
5010         parenthesize = NEW.parenthesize,
5011         parent_expr = NEW.parent_expr,
5012         seq_no = NEW.seq_no,
5013                 left_operand = NEW.left_operand,
5014                 negate = NEW.negate
5015     WHERE
5016         id = OLD.id;
5017
5018 CREATE OR REPLACE RULE query_expr_xbet_delete_rule AS
5019     ON DELETE TO query.expr_xbet
5020     DO INSTEAD
5021     DELETE FROM query.expression WHERE id = OLD.id;
5022
5023 -- Create updatable view for bind variable expressions
5024
5025 CREATE OR REPLACE VIEW query.expr_xbind AS
5026     SELECT
5027                 id,
5028                 parenthesize,
5029                 parent_expr,
5030                 seq_no,
5031                 bind_variable
5032     FROM
5033         query.expression
5034     WHERE
5035         type = 'xbind';
5036
5037 CREATE OR REPLACE RULE query_expr_xbind_insert_rule AS
5038     ON INSERT TO query.expr_xbind
5039     DO INSTEAD
5040     INSERT INTO query.expression (
5041                 id,
5042                 type,
5043                 parenthesize,
5044                 parent_expr,
5045                 seq_no,
5046                 bind_variable
5047     ) VALUES (
5048         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5049         'xbind',
5050         COALESCE(NEW.parenthesize, FALSE),
5051         NEW.parent_expr,
5052         COALESCE(NEW.seq_no, 1),
5053                 NEW.bind_variable
5054     );
5055
5056 CREATE OR REPLACE RULE query_expr_xbind_update_rule AS
5057     ON UPDATE TO query.expr_xbind
5058     DO INSTEAD
5059     UPDATE query.expression SET
5060         id = NEW.id,
5061         parenthesize = NEW.parenthesize,
5062         parent_expr = NEW.parent_expr,
5063         seq_no = NEW.seq_no,
5064                 bind_variable = NEW.bind_variable
5065     WHERE
5066         id = OLD.id;
5067
5068 CREATE OR REPLACE RULE query_expr_xbind_delete_rule AS
5069     ON DELETE TO query.expr_xbind
5070     DO INSTEAD
5071     DELETE FROM query.expression WHERE id = OLD.id;
5072
5073 -- Create updatable view for boolean expressions
5074
5075 CREATE OR REPLACE VIEW query.expr_xbool AS
5076     SELECT
5077                 id,
5078                 parenthesize,
5079                 parent_expr,
5080                 seq_no,
5081                 literal,
5082                 negate
5083     FROM
5084         query.expression
5085     WHERE
5086         type = 'xbool';
5087
5088 CREATE OR REPLACE RULE query_expr_xbool_insert_rule AS
5089     ON INSERT TO query.expr_xbool
5090     DO INSTEAD
5091     INSERT INTO query.expression (
5092                 id,
5093                 type,
5094                 parenthesize,
5095                 parent_expr,
5096                 seq_no,
5097                 literal,
5098                 negate
5099     ) VALUES (
5100         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5101         'xbool',
5102         COALESCE(NEW.parenthesize, FALSE),
5103         NEW.parent_expr,
5104         COALESCE(NEW.seq_no, 1),
5105         NEW.literal,
5106                 COALESCE(NEW.negate, false)
5107     );
5108
5109 CREATE OR REPLACE RULE query_expr_xbool_update_rule AS
5110     ON UPDATE TO query.expr_xbool
5111     DO INSTEAD
5112     UPDATE query.expression SET
5113         id = NEW.id,
5114         parenthesize = NEW.parenthesize,
5115         parent_expr = NEW.parent_expr,
5116         seq_no = NEW.seq_no,
5117         literal = NEW.literal,
5118                 negate = NEW.negate
5119     WHERE
5120         id = OLD.id;
5121
5122 CREATE OR REPLACE RULE query_expr_xbool_delete_rule AS
5123     ON DELETE TO query.expr_xbool
5124     DO INSTEAD
5125     DELETE FROM query.expression WHERE id = OLD.id;
5126
5127 -- Create updatable view for CASE expressions
5128
5129 CREATE OR REPLACE VIEW query.expr_xcase AS
5130     SELECT
5131                 id,
5132                 parenthesize,
5133                 parent_expr,
5134                 seq_no,
5135                 left_operand,
5136                 negate
5137     FROM
5138         query.expression
5139     WHERE
5140         type = 'xcase';
5141
5142 CREATE OR REPLACE RULE query_expr_xcase_insert_rule AS
5143     ON INSERT TO query.expr_xcase
5144     DO INSTEAD
5145     INSERT INTO query.expression (
5146                 id,
5147                 type,
5148                 parenthesize,
5149                 parent_expr,
5150                 seq_no,
5151                 left_operand,
5152                 negate
5153     ) VALUES (
5154         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5155         'xcase',
5156         COALESCE(NEW.parenthesize, FALSE),
5157         NEW.parent_expr,
5158         COALESCE(NEW.seq_no, 1),
5159                 NEW.left_operand,
5160                 COALESCE(NEW.negate, false)
5161     );
5162
5163 CREATE OR REPLACE RULE query_expr_xcase_update_rule AS
5164     ON UPDATE TO query.expr_xcase
5165     DO INSTEAD
5166     UPDATE query.expression SET
5167         id = NEW.id,
5168         parenthesize = NEW.parenthesize,
5169         parent_expr = NEW.parent_expr,
5170         seq_no = NEW.seq_no,
5171                 left_operand = NEW.left_operand,
5172                 negate = NEW.negate
5173     WHERE
5174         id = OLD.id;
5175
5176 CREATE OR REPLACE RULE query_expr_xcase_delete_rule AS
5177     ON DELETE TO query.expr_xcase
5178     DO INSTEAD
5179     DELETE FROM query.expression WHERE id = OLD.id;
5180
5181 -- Create updatable view for cast expressions
5182
5183 CREATE OR REPLACE VIEW query.expr_xcast AS
5184     SELECT
5185                 id,
5186                 parenthesize,
5187                 parent_expr,
5188                 seq_no,
5189                 left_operand,
5190                 cast_type,
5191                 negate
5192     FROM
5193         query.expression
5194     WHERE
5195         type = 'xcast';
5196
5197 CREATE OR REPLACE RULE query_expr_xcast_insert_rule AS
5198     ON INSERT TO query.expr_xcast
5199     DO INSTEAD
5200     INSERT INTO query.expression (
5201         id,
5202         type,
5203         parenthesize,
5204         parent_expr,
5205         seq_no,
5206         left_operand,
5207         cast_type,
5208         negate
5209     ) VALUES (
5210         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5211         'xcast',
5212         COALESCE(NEW.parenthesize, FALSE),
5213         NEW.parent_expr,
5214         COALESCE(NEW.seq_no, 1),
5215         NEW.left_operand,
5216         NEW.cast_type,
5217         COALESCE(NEW.negate, false)
5218     );
5219
5220 CREATE OR REPLACE RULE query_expr_xcast_update_rule AS
5221     ON UPDATE TO query.expr_xcast
5222     DO INSTEAD
5223     UPDATE query.expression SET
5224         id = NEW.id,
5225         parenthesize = NEW.parenthesize,
5226         parent_expr = NEW.parent_expr,
5227         seq_no = NEW.seq_no,
5228                 left_operand = NEW.left_operand,
5229                 cast_type = NEW.cast_type,
5230                 negate = NEW.negate
5231     WHERE
5232         id = OLD.id;
5233
5234 CREATE OR REPLACE RULE query_expr_xcast_delete_rule AS
5235     ON DELETE TO query.expr_xcast
5236     DO INSTEAD
5237     DELETE FROM query.expression WHERE id = OLD.id;
5238
5239 -- Create updatable view for column expressions
5240
5241 CREATE OR REPLACE VIEW query.expr_xcol AS
5242     SELECT
5243                 id,
5244                 parenthesize,
5245                 parent_expr,
5246                 seq_no,
5247                 table_alias,
5248                 column_name,
5249                 negate
5250     FROM
5251         query.expression
5252     WHERE
5253         type = 'xcol';
5254
5255 CREATE OR REPLACE RULE query_expr_xcol_insert_rule AS
5256     ON INSERT TO query.expr_xcol
5257     DO INSTEAD
5258     INSERT INTO query.expression (
5259                 id,
5260                 type,
5261                 parenthesize,
5262                 parent_expr,
5263                 seq_no,
5264                 table_alias,
5265                 column_name,
5266                 negate
5267     ) VALUES (
5268         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5269         'xcol',
5270         COALESCE(NEW.parenthesize, FALSE),
5271         NEW.parent_expr,
5272         COALESCE(NEW.seq_no, 1),
5273                 NEW.table_alias,
5274                 NEW.column_name,
5275                 COALESCE(NEW.negate, false)
5276     );
5277
5278 CREATE OR REPLACE RULE query_expr_xcol_update_rule AS
5279     ON UPDATE TO query.expr_xcol
5280     DO INSTEAD
5281     UPDATE query.expression SET
5282         id = NEW.id,
5283         parenthesize = NEW.parenthesize,
5284         parent_expr = NEW.parent_expr,
5285         seq_no = NEW.seq_no,
5286                 table_alias = NEW.table_alias,
5287                 column_name = NEW.column_name,
5288                 negate = NEW.negate
5289     WHERE
5290         id = OLD.id;
5291
5292 CREATE OR REPLACE RULE query_expr_xcol_delete_rule AS
5293     ON DELETE TO query.expr_xcol
5294     DO INSTEAD
5295     DELETE FROM query.expression WHERE id = OLD.id;
5296
5297 -- Create updatable view for EXISTS expressions
5298
5299 CREATE OR REPLACE VIEW query.expr_xex AS
5300     SELECT
5301                 id,
5302                 parenthesize,
5303                 parent_expr,
5304                 seq_no,
5305                 subquery,
5306                 negate
5307     FROM
5308         query.expression
5309     WHERE
5310         type = 'xex';
5311
5312 CREATE OR REPLACE RULE query_expr_xex_insert_rule AS
5313     ON INSERT TO query.expr_xex
5314     DO INSTEAD
5315     INSERT INTO query.expression (
5316                 id,
5317                 type,
5318                 parenthesize,
5319                 parent_expr,
5320                 seq_no,
5321                 subquery,
5322                 negate
5323     ) VALUES (
5324         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5325         'xex',
5326         COALESCE(NEW.parenthesize, FALSE),
5327         NEW.parent_expr,
5328         COALESCE(NEW.seq_no, 1),
5329                 NEW.subquery,
5330                 COALESCE(NEW.negate, false)
5331     );
5332
5333 CREATE OR REPLACE RULE query_expr_xex_update_rule AS
5334     ON UPDATE TO query.expr_xex
5335     DO INSTEAD
5336     UPDATE query.expression SET
5337         id = NEW.id,
5338         parenthesize = NEW.parenthesize,
5339         parent_expr = NEW.parent_expr,
5340         seq_no = NEW.seq_no,
5341                 subquery = NEW.subquery,
5342                 negate = NEW.negate
5343     WHERE
5344         id = OLD.id;
5345
5346 CREATE OR REPLACE RULE query_expr_xex_delete_rule AS
5347     ON DELETE TO query.expr_xex
5348     DO INSTEAD
5349     DELETE FROM query.expression WHERE id = OLD.id;
5350
5351 -- Create updatable view for function call expressions
5352
5353 CREATE OR REPLACE VIEW query.expr_xfunc AS
5354     SELECT
5355         id,
5356         parenthesize,
5357         parent_expr,
5358         seq_no,
5359         column_name,
5360         function_id,
5361         negate
5362     FROM
5363         query.expression
5364     WHERE
5365         type = 'xfunc';
5366
5367 CREATE OR REPLACE RULE query_expr_xfunc_insert_rule AS
5368     ON INSERT TO query.expr_xfunc
5369     DO INSTEAD
5370     INSERT INTO query.expression (
5371         id,
5372         type,
5373         parenthesize,
5374         parent_expr,
5375         seq_no,
5376         column_name,
5377         function_id,
5378         negate
5379     ) VALUES (
5380         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5381         'xfunc',
5382         COALESCE(NEW.parenthesize, FALSE),
5383         NEW.parent_expr,
5384         COALESCE(NEW.seq_no, 1),
5385         NEW.column_name,
5386         NEW.function_id,
5387         COALESCE(NEW.negate, false)
5388     );
5389
5390 CREATE OR REPLACE RULE query_expr_xfunc_update_rule AS
5391     ON UPDATE TO query.expr_xfunc
5392     DO INSTEAD
5393     UPDATE query.expression SET
5394         id = NEW.id,
5395         parenthesize = NEW.parenthesize,
5396         parent_expr = NEW.parent_expr,
5397         seq_no = NEW.seq_no,
5398         column_name = NEW.column_name,
5399         function_id = NEW.function_id,
5400         negate = NEW.negate
5401     WHERE
5402         id = OLD.id;
5403
5404 CREATE OR REPLACE RULE query_expr_xfunc_delete_rule AS
5405     ON DELETE TO query.expr_xfunc
5406     DO INSTEAD
5407     DELETE FROM query.expression WHERE id = OLD.id;
5408
5409 -- Create updatable view for IN expressions
5410
5411 CREATE OR REPLACE VIEW query.expr_xin AS
5412     SELECT
5413                 id,
5414                 parenthesize,
5415                 parent_expr,
5416                 seq_no,
5417                 left_operand,
5418                 subquery,
5419                 negate
5420     FROM
5421         query.expression
5422     WHERE
5423         type = 'xin';
5424
5425 CREATE OR REPLACE RULE query_expr_xin_insert_rule AS
5426     ON INSERT TO query.expr_xin
5427     DO INSTEAD
5428     INSERT INTO query.expression (
5429                 id,
5430                 type,
5431                 parenthesize,
5432                 parent_expr,
5433                 seq_no,
5434                 left_operand,
5435                 subquery,
5436                 negate
5437     ) VALUES (
5438         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5439         'xin',
5440         COALESCE(NEW.parenthesize, FALSE),
5441         NEW.parent_expr,
5442         COALESCE(NEW.seq_no, 1),
5443                 NEW.left_operand,
5444                 NEW.subquery,
5445                 COALESCE(NEW.negate, false)
5446     );
5447
5448 CREATE OR REPLACE RULE query_expr_xin_update_rule AS
5449     ON UPDATE TO query.expr_xin
5450     DO INSTEAD
5451     UPDATE query.expression SET
5452         id = NEW.id,
5453         parenthesize = NEW.parenthesize,
5454         parent_expr = NEW.parent_expr,
5455         seq_no = NEW.seq_no,
5456                 left_operand = NEW.left_operand,
5457                 subquery = NEW.subquery,
5458                 negate = NEW.negate
5459     WHERE
5460         id = OLD.id;
5461
5462 CREATE OR REPLACE RULE query_expr_xin_delete_rule AS
5463     ON DELETE TO query.expr_xin
5464     DO INSTEAD
5465     DELETE FROM query.expression WHERE id = OLD.id;
5466
5467 -- Create updatable view for IS NULL expressions
5468
5469 CREATE OR REPLACE VIEW query.expr_xisnull AS
5470     SELECT
5471                 id,
5472                 parenthesize,
5473                 parent_expr,
5474                 seq_no,
5475                 left_operand,
5476                 negate
5477     FROM
5478         query.expression
5479     WHERE
5480         type = 'xisnull';
5481
5482 CREATE OR REPLACE RULE query_expr_xisnull_insert_rule AS
5483     ON INSERT TO query.expr_xisnull
5484     DO INSTEAD
5485     INSERT INTO query.expression (
5486                 id,
5487                 type,
5488                 parenthesize,
5489                 parent_expr,
5490                 seq_no,
5491                 left_operand,
5492                 negate
5493     ) VALUES (
5494         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5495         'xisnull',
5496         COALESCE(NEW.parenthesize, FALSE),
5497         NEW.parent_expr,
5498         COALESCE(NEW.seq_no, 1),
5499                 NEW.left_operand,
5500                 COALESCE(NEW.negate, false)
5501     );
5502
5503 CREATE OR REPLACE RULE query_expr_xisnull_update_rule AS
5504     ON UPDATE TO query.expr_xisnull
5505     DO INSTEAD
5506     UPDATE query.expression SET
5507         id = NEW.id,
5508         parenthesize = NEW.parenthesize,
5509         parent_expr = NEW.parent_expr,
5510         seq_no = NEW.seq_no,
5511                 left_operand = NEW.left_operand,
5512                 negate = NEW.negate
5513     WHERE
5514         id = OLD.id;
5515
5516 CREATE OR REPLACE RULE query_expr_xisnull_delete_rule AS
5517     ON DELETE TO query.expr_xisnull
5518     DO INSTEAD
5519     DELETE FROM query.expression WHERE id = OLD.id;
5520
5521 -- Create updatable view for NULL expressions
5522
5523 CREATE OR REPLACE VIEW query.expr_xnull AS
5524     SELECT
5525                 id,
5526                 parenthesize,
5527                 parent_expr,
5528                 seq_no,
5529                 negate
5530     FROM
5531         query.expression
5532     WHERE
5533         type = 'xnull';
5534
5535 CREATE OR REPLACE RULE query_expr_xnull_insert_rule AS
5536     ON INSERT TO query.expr_xnull
5537     DO INSTEAD
5538     INSERT INTO query.expression (
5539                 id,
5540                 type,
5541                 parenthesize,
5542                 parent_expr,
5543                 seq_no,
5544                 negate
5545     ) VALUES (
5546         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5547         'xnull',
5548         COALESCE(NEW.parenthesize, FALSE),
5549         NEW.parent_expr,
5550         COALESCE(NEW.seq_no, 1),
5551                 COALESCE(NEW.negate, false)
5552     );
5553
5554 CREATE OR REPLACE RULE query_expr_xnull_update_rule AS
5555     ON UPDATE TO query.expr_xnull
5556     DO INSTEAD
5557     UPDATE query.expression SET
5558         id = NEW.id,
5559         parenthesize = NEW.parenthesize,
5560         parent_expr = NEW.parent_expr,
5561         seq_no = NEW.seq_no,
5562                 negate = NEW.negate
5563     WHERE
5564         id = OLD.id;
5565
5566 CREATE OR REPLACE RULE query_expr_xnull_delete_rule AS
5567     ON DELETE TO query.expr_xnull
5568     DO INSTEAD
5569     DELETE FROM query.expression WHERE id = OLD.id;
5570
5571 -- Create updatable view for numeric literal expressions
5572
5573 CREATE OR REPLACE VIEW query.expr_xnum AS
5574     SELECT
5575                 id,
5576                 parenthesize,
5577                 parent_expr,
5578                 seq_no,
5579                 literal
5580     FROM
5581         query.expression
5582     WHERE
5583         type = 'xnum';
5584
5585 CREATE OR REPLACE RULE query_expr_xnum_insert_rule AS
5586     ON INSERT TO query.expr_xnum
5587     DO INSTEAD
5588     INSERT INTO query.expression (
5589                 id,
5590                 type,
5591                 parenthesize,
5592                 parent_expr,
5593                 seq_no,
5594                 literal
5595     ) VALUES (
5596         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5597         'xnum',
5598         COALESCE(NEW.parenthesize, FALSE),
5599         NEW.parent_expr,
5600         COALESCE(NEW.seq_no, 1),
5601         NEW.literal
5602     );
5603
5604 CREATE OR REPLACE RULE query_expr_xnum_update_rule AS
5605     ON UPDATE TO query.expr_xnum
5606     DO INSTEAD
5607     UPDATE query.expression SET
5608         id = NEW.id,
5609         parenthesize = NEW.parenthesize,
5610         parent_expr = NEW.parent_expr,
5611         seq_no = NEW.seq_no,
5612         literal = NEW.literal
5613     WHERE
5614         id = OLD.id;
5615
5616 CREATE OR REPLACE RULE query_expr_xnum_delete_rule AS
5617     ON DELETE TO query.expr_xnum
5618     DO INSTEAD
5619     DELETE FROM query.expression WHERE id = OLD.id;
5620
5621 -- Create updatable view for operator expressions
5622
5623 CREATE OR REPLACE VIEW query.expr_xop AS
5624     SELECT
5625                 id,
5626                 parenthesize,
5627                 parent_expr,
5628                 seq_no,
5629                 left_operand,
5630                 operator,
5631                 right_operand,
5632                 negate
5633     FROM
5634         query.expression
5635     WHERE
5636         type = 'xop';
5637
5638 CREATE OR REPLACE RULE query_expr_xop_insert_rule AS
5639     ON INSERT TO query.expr_xop
5640     DO INSTEAD
5641     INSERT INTO query.expression (
5642                 id,
5643                 type,
5644                 parenthesize,
5645                 parent_expr,
5646                 seq_no,
5647                 left_operand,
5648                 operator,
5649                 right_operand,
5650                 negate
5651     ) VALUES (
5652         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5653         'xop',
5654         COALESCE(NEW.parenthesize, FALSE),
5655         NEW.parent_expr,
5656         COALESCE(NEW.seq_no, 1),
5657                 NEW.left_operand,
5658                 NEW.operator,
5659                 NEW.right_operand,
5660                 COALESCE(NEW.negate, false)
5661     );
5662
5663 CREATE OR REPLACE RULE query_expr_xop_update_rule AS
5664     ON UPDATE TO query.expr_xop
5665     DO INSTEAD
5666     UPDATE query.expression SET
5667         id = NEW.id,
5668         parenthesize = NEW.parenthesize,
5669         parent_expr = NEW.parent_expr,
5670         seq_no = NEW.seq_no,
5671                 left_operand = NEW.left_operand,
5672                 operator = NEW.operator,
5673                 right_operand = NEW.right_operand,
5674                 negate = NEW.negate
5675     WHERE
5676         id = OLD.id;
5677
5678 CREATE OR REPLACE RULE query_expr_xop_delete_rule AS
5679     ON DELETE TO query.expr_xop
5680     DO INSTEAD
5681     DELETE FROM query.expression WHERE id = OLD.id;
5682
5683 -- Create updatable view for series expressions
5684 -- i.e. series of expressions separated by operators
5685
5686 CREATE OR REPLACE VIEW query.expr_xser AS
5687     SELECT
5688                 id,
5689                 parenthesize,
5690                 parent_expr,
5691                 seq_no,
5692                 operator,
5693                 negate
5694     FROM
5695         query.expression
5696     WHERE
5697         type = 'xser';
5698
5699 CREATE OR REPLACE RULE query_expr_xser_insert_rule AS
5700     ON INSERT TO query.expr_xser
5701     DO INSTEAD
5702     INSERT INTO query.expression (
5703                 id,
5704                 type,
5705                 parenthesize,
5706                 parent_expr,
5707                 seq_no,
5708                 operator,
5709                 negate
5710     ) VALUES (
5711         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5712         'xser',
5713         COALESCE(NEW.parenthesize, FALSE),
5714         NEW.parent_expr,
5715         COALESCE(NEW.seq_no, 1),
5716                 NEW.operator,
5717                 COALESCE(NEW.negate, false)
5718     );
5719
5720 CREATE OR REPLACE RULE query_expr_xser_update_rule AS
5721     ON UPDATE TO query.expr_xser
5722     DO INSTEAD
5723     UPDATE query.expression SET
5724         id = NEW.id,
5725         parenthesize = NEW.parenthesize,
5726         parent_expr = NEW.parent_expr,
5727         seq_no = NEW.seq_no,
5728                 operator = NEW.operator,
5729                 negate = NEW.negate
5730     WHERE
5731         id = OLD.id;
5732
5733 CREATE OR REPLACE RULE query_expr_xser_delete_rule AS
5734     ON DELETE TO query.expr_xser
5735     DO INSTEAD
5736     DELETE FROM query.expression WHERE id = OLD.id;
5737
5738 -- Create updatable view for string literal expressions
5739
5740 CREATE OR REPLACE VIEW query.expr_xstr AS
5741     SELECT
5742         id,
5743         parenthesize,
5744         parent_expr,
5745         seq_no,
5746         literal
5747     FROM
5748         query.expression
5749     WHERE
5750         type = 'xstr';
5751
5752 CREATE OR REPLACE RULE query_expr_string_insert_rule AS
5753     ON INSERT TO query.expr_xstr
5754     DO INSTEAD
5755     INSERT INTO query.expression (
5756         id,
5757         type,
5758         parenthesize,
5759         parent_expr,
5760         seq_no,
5761         literal
5762     ) VALUES (
5763         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5764         'xstr',
5765         COALESCE(NEW.parenthesize, FALSE),
5766         NEW.parent_expr,
5767         COALESCE(NEW.seq_no, 1),
5768         NEW.literal
5769     );
5770
5771 CREATE OR REPLACE RULE query_expr_string_update_rule AS
5772     ON UPDATE TO query.expr_xstr
5773     DO INSTEAD
5774     UPDATE query.expression SET
5775         id = NEW.id,
5776         parenthesize = NEW.parenthesize,
5777         parent_expr = NEW.parent_expr,
5778         seq_no = NEW.seq_no,
5779         literal = NEW.literal
5780     WHERE
5781         id = OLD.id;
5782
5783 CREATE OR REPLACE RULE query_expr_string_delete_rule AS
5784     ON DELETE TO query.expr_xstr
5785     DO INSTEAD
5786     DELETE FROM query.expression WHERE id = OLD.id;
5787
5788 -- Create updatable view for subquery expressions
5789
5790 CREATE OR REPLACE VIEW query.expr_xsubq AS
5791     SELECT
5792                 id,
5793                 parenthesize,
5794                 parent_expr,
5795                 seq_no,
5796                 subquery,
5797                 negate
5798     FROM
5799         query.expression
5800     WHERE
5801         type = 'xsubq';
5802
5803 CREATE OR REPLACE RULE query_expr_xsubq_insert_rule AS
5804     ON INSERT TO query.expr_xsubq
5805     DO INSTEAD
5806     INSERT INTO query.expression (
5807                 id,
5808                 type,
5809                 parenthesize,
5810                 parent_expr,
5811                 seq_no,
5812                 subquery,
5813                 negate
5814     ) VALUES (
5815         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5816         'xsubq',
5817         COALESCE(NEW.parenthesize, FALSE),
5818         NEW.parent_expr,
5819         COALESCE(NEW.seq_no, 1),
5820                 NEW.subquery,
5821                 COALESCE(NEW.negate, false)
5822     );
5823
5824 CREATE OR REPLACE RULE query_expr_xsubq_update_rule AS
5825     ON UPDATE TO query.expr_xsubq
5826     DO INSTEAD
5827     UPDATE query.expression SET
5828         id = NEW.id,
5829         parenthesize = NEW.parenthesize,
5830         parent_expr = NEW.parent_expr,
5831         seq_no = NEW.seq_no,
5832                 subquery = NEW.subquery,
5833                 negate = NEW.negate
5834     WHERE
5835         id = OLD.id;
5836
5837 CREATE OR REPLACE RULE query_expr_xsubq_delete_rule AS
5838     ON DELETE TO query.expr_xsubq
5839     DO INSTEAD
5840     DELETE FROM query.expression WHERE id = OLD.id;
5841
5842 CREATE TABLE action.fieldset (
5843     id              SERIAL          PRIMARY KEY,
5844     owner           INT             NOT NULL REFERENCES actor.usr (id)
5845                                     DEFERRABLE INITIALLY DEFERRED,
5846     owning_lib      INT             NOT NULL REFERENCES actor.org_unit (id)
5847                                     DEFERRABLE INITIALLY DEFERRED,
5848     status          TEXT            NOT NULL
5849                                     CONSTRAINT valid_status CHECK ( status in
5850                                     ( 'PENDING', 'APPLIED', 'ERROR' )),
5851     creation_time   TIMESTAMPTZ     NOT NULL DEFAULT NOW(),
5852     scheduled_time  TIMESTAMPTZ,
5853     applied_time    TIMESTAMPTZ,
5854     classname       TEXT            NOT NULL, -- an IDL class name
5855     name            TEXT            NOT NULL,
5856     stored_query    INT             REFERENCES query.stored_query (id)
5857                                     DEFERRABLE INITIALLY DEFERRED,
5858     pkey_value      TEXT,
5859     CONSTRAINT lib_name_unique UNIQUE (owning_lib, name),
5860     CONSTRAINT fieldset_one_or_the_other CHECK (
5861         (stored_query IS NOT NULL AND pkey_value IS NULL) OR
5862         (pkey_value IS NOT NULL AND stored_query IS NULL)
5863     )
5864     -- the CHECK constraint means we can update the fields for a single
5865     -- row without all the extra overhead involved in a query
5866 );
5867
5868 CREATE INDEX action_fieldset_sched_time_idx ON action.fieldset( scheduled_time );
5869 CREATE INDEX action_owner_idx               ON action.fieldset( owner );
5870
5871 CREATE TABLE action.fieldset_col_val (
5872     id              SERIAL  PRIMARY KEY,
5873     fieldset        INT     NOT NULL REFERENCES action.fieldset
5874                                          ON DELETE CASCADE
5875                                          DEFERRABLE INITIALLY DEFERRED,
5876     col             TEXT    NOT NULL,  -- "field" from the idl ... the column on the table
5877     val             TEXT,              -- value for the column ... NULL means, well, NULL
5878     CONSTRAINT fieldset_col_once_per_set UNIQUE (fieldset, col)
5879 );
5880
5881 CREATE OR REPLACE FUNCTION action.apply_fieldset(
5882         fieldset_id IN INT,        -- id from action.fieldset
5883         table_name  IN TEXT,       -- table to be updated
5884         pkey_name   IN TEXT,       -- name of primary key column in that table
5885         query       IN TEXT        -- query constructed by qstore (for query-based
5886                                    --    fieldsets only; otherwise null
5887 )
5888 RETURNS TEXT AS $$
5889 DECLARE
5890         statement TEXT;
5891         fs_status TEXT;
5892         fs_pkey_value TEXT;
5893         fs_query TEXT;
5894         sep CHAR;
5895         status_code TEXT;
5896         msg TEXT;
5897         update_count INT;
5898         cv RECORD;
5899 BEGIN
5900         -- Sanity checks
5901         IF fieldset_id IS NULL THEN
5902                 RETURN 'Fieldset ID parameter is NULL';
5903         END IF;
5904         IF table_name IS NULL THEN
5905                 RETURN 'Table name parameter is NULL';
5906         END IF;
5907         IF pkey_name IS NULL THEN
5908                 RETURN 'Primary key name parameter is NULL';
5909         END IF;
5910         --
5911         statement := 'UPDATE ' || table_name || ' SET';
5912         --
5913         SELECT
5914                 status,
5915                 quote_literal( pkey_value )
5916         INTO
5917                 fs_status,
5918                 fs_pkey_value
5919         FROM
5920                 action.fieldset
5921         WHERE
5922                 id = fieldset_id;
5923         --
5924         IF fs_status IS NULL THEN
5925                 RETURN 'No fieldset found for id = ' || fieldset_id;
5926         ELSIF fs_status = 'APPLIED' THEN
5927                 RETURN 'Fieldset ' || fieldset_id || ' has already been applied';
5928         END IF;
5929         --
5930         sep := '';
5931         FOR cv IN
5932                 SELECT  col,
5933                                 val
5934                 FROM    action.fieldset_col_val
5935                 WHERE   fieldset = fieldset_id
5936         LOOP
5937                 statement := statement || sep || ' ' || cv.col
5938                                          || ' = ' || coalesce( quote_literal( cv.val ), 'NULL' );
5939                 sep := ',';
5940         END LOOP;
5941         --
5942         IF sep = '' THEN
5943                 RETURN 'Fieldset ' || fieldset_id || ' has no column values defined';
5944         END IF;
5945         --
5946         -- Add the WHERE clause.  This differs according to whether it's a
5947         -- single-row fieldset or a query-based fieldset.
5948         --
5949         IF query IS NULL        AND fs_pkey_value IS NULL THEN
5950                 RETURN 'Incomplete fieldset: neither a primary key nor a query available';
5951         ELSIF query IS NOT NULL AND fs_pkey_value IS NULL THEN
5952             fs_query := rtrim( query, ';' );
5953             statement := statement || ' WHERE ' || pkey_name || ' IN ( '
5954                          || fs_query || ' );';
5955         ELSIF query IS NULL     AND fs_pkey_value IS NOT NULL THEN
5956                 statement := statement || ' WHERE ' || pkey_name || ' = '
5957                                      || fs_pkey_value || ';';
5958         ELSE  -- both are not null
5959                 RETURN 'Ambiguous fieldset: both a primary key and a query provided';
5960         END IF;
5961         --
5962         -- Execute the update
5963         --
5964         BEGIN
5965                 EXECUTE statement;
5966                 GET DIAGNOSTICS update_count = ROW_COUNT;
5967                 --
5968                 IF UPDATE_COUNT > 0 THEN
5969                         status_code := 'APPLIED';
5970                         msg := NULL;
5971                 ELSE
5972                         status_code := 'ERROR';
5973                         msg := 'No eligible rows found for fieldset ' || fieldset_id;
5974         END IF;
5975         EXCEPTION WHEN OTHERS THEN
5976                 status_code := 'ERROR';
5977                 msg := 'Unable to apply fieldset ' || fieldset_id
5978                            || ': ' || sqlerrm;
5979         END;
5980         --
5981         -- Update fieldset status
5982         --
5983         UPDATE action.fieldset
5984         SET status       = status_code,
5985             applied_time = now()
5986         WHERE id = fieldset_id;
5987         --
5988         RETURN msg;
5989 END;
5990 $$ LANGUAGE plpgsql;
5991
5992 COMMENT ON FUNCTION action.apply_fieldset( INT, TEXT, TEXT, TEXT ) IS $$
5993 /**
5994  * Applies a specified fieldset, using a supplied table name and primary
5995  * key name.  The query parameter should be non-null only for
5996  * query-based fieldsets.
5997  *
5998  * Returns NULL if successful, or an error message if not.
5999  */
6000 $$;
6001
6002 CREATE INDEX uhr_hold_idx ON action.unfulfilled_hold_list (hold);
6003
6004 CREATE OR REPLACE VIEW action.unfulfilled_hold_loops AS
6005     SELECT  u.hold,
6006             c.circ_lib,
6007             count(*)
6008       FROM  action.unfulfilled_hold_list u
6009             JOIN asset.copy c ON (c.id = u.current_copy)
6010       GROUP BY 1,2;
6011
6012 CREATE OR REPLACE VIEW action.unfulfilled_hold_min_loop AS
6013     SELECT  hold,
6014             min(count)
6015       FROM  action.unfulfilled_hold_loops
6016       GROUP BY 1;
6017
6018 CREATE OR REPLACE VIEW action.unfulfilled_hold_innermost_loop AS
6019     SELECT  DISTINCT l.*
6020       FROM  action.unfulfilled_hold_loops l
6021             JOIN action.unfulfilled_hold_min_loop m USING (hold)
6022       WHERE l.count = m.min;
6023
6024 ALTER TABLE asset.copy
6025 ADD COLUMN dummy_isbn TEXT;
6026
6027 ALTER TABLE auditor.asset_copy_history
6028 ADD COLUMN dummy_isbn TEXT;
6029
6030 -- Add new column status_changed_date to asset.copy, with trigger to maintain it
6031 -- Add corresponding new column to auditor.asset_copy_history
6032
6033 ALTER TABLE asset.copy
6034         ADD COLUMN status_changed_time TIMESTAMPTZ;
6035
6036 ALTER TABLE auditor.asset_copy_history
6037         ADD COLUMN status_changed_time TIMESTAMPTZ;
6038
6039 CREATE OR REPLACE FUNCTION asset.acp_status_changed()
6040 RETURNS TRIGGER AS $$
6041 BEGIN
6042         IF NEW.status <> OLD.status THEN
6043                 NEW.status_changed_time := now();
6044         END IF;
6045         RETURN NEW;
6046 END;
6047 $$ LANGUAGE plpgsql;
6048
6049 CREATE TRIGGER acp_status_changed_trig
6050         BEFORE UPDATE ON asset.copy
6051         FOR EACH ROW EXECUTE PROCEDURE asset.acp_status_changed();
6052
6053 ALTER TABLE asset.copy
6054 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6055
6056 ALTER TABLE auditor.asset_copy_history
6057 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6058
6059 ALTER TABLE asset.copy ADD COLUMN floating BOOL NOT NULL DEFAULT FALSE;
6060 ALTER TABLE auditor.asset_copy_history ADD COLUMN floating BOOL;
6061
6062 DROP INDEX IF EXISTS asset.copy_barcode_key;
6063 CREATE UNIQUE INDEX copy_barcode_key ON asset.copy (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
6064
6065 -- Note: later we create a trigger a_opac_vis_mat_view_tgr
6066 -- AFTER INSERT OR UPDATE ON asset.copy
6067
6068 ALTER TABLE asset.copy ADD COLUMN cost NUMERIC(8,2);
6069 ALTER TABLE auditor.asset_copy_history ADD COLUMN cost NUMERIC(8,2);
6070
6071 -- Moke mostly parallel changes to action.circulation
6072 -- and action.aged_circulation
6073
6074 ALTER TABLE action.circulation
6075 ADD COLUMN workstation INT
6076     REFERENCES actor.workstation
6077         ON DELETE SET NULL
6078         DEFERRABLE INITIALLY DEFERRED;
6079
6080 ALTER TABLE action.aged_circulation
6081 ADD COLUMN workstation INT;
6082
6083 ALTER TABLE action.circulation
6084 ADD COLUMN parent_circ BIGINT
6085         REFERENCES action.circulation(id)
6086         DEFERRABLE INITIALLY DEFERRED;
6087
6088 CREATE UNIQUE INDEX circ_parent_idx
6089 ON action.circulation( parent_circ )
6090 WHERE parent_circ IS NOT NULL;
6091
6092 ALTER TABLE action.aged_circulation
6093 ADD COLUMN parent_circ BIGINT;
6094
6095 ALTER TABLE action.circulation
6096 ADD COLUMN checkin_workstation INT
6097         REFERENCES actor.workstation(id)
6098         ON DELETE SET NULL
6099         DEFERRABLE INITIALLY DEFERRED;
6100
6101 ALTER TABLE action.aged_circulation
6102 ADD COLUMN checkin_workstation INT;
6103
6104 ALTER TABLE action.circulation
6105 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6106
6107 ALTER TABLE action.aged_circulation
6108 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6109
6110 CREATE INDEX action_circulation_target_copy_idx
6111 ON action.circulation (target_copy);
6112
6113 CREATE INDEX action_aged_circulation_target_copy_idx
6114 ON action.aged_circulation (target_copy);
6115
6116 ALTER TABLE action.circulation
6117 DROP CONSTRAINT circulation_stop_fines_check;
6118
6119 ALTER TABLE action.circulation
6120         ADD CONSTRAINT circulation_stop_fines_check
6121         CHECK (stop_fines IN (
6122         'CHECKIN','CLAIMSRETURNED','LOST','MAXFINES','RENEW','LONGOVERDUE','CLAIMSNEVERCHECKEDOUT'));
6123
6124 -- Correct some long-standing misspellings involving variations of "recur"
6125
6126 ALTER TABLE action.circulation RENAME COLUMN recuring_fine TO recurring_fine;
6127 ALTER TABLE action.circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6128
6129 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine TO recurring_fine;
6130 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6131
6132 ALTER TABLE config.rule_recuring_fine RENAME TO rule_recurring_fine;
6133 ALTER TABLE config.rule_recuring_fine_id_seq RENAME TO rule_recurring_fine_id_seq;
6134
6135 ALTER TABLE config.rule_recurring_fine RENAME COLUMN recurance_interval TO recurrence_interval;
6136
6137 -- Might as well keep the comment in sync as well
6138 COMMENT ON TABLE config.rule_recurring_fine IS $$
6139 /*
6140  * Copyright (C) 2005  Georgia Public Library Service 
6141  * Mike Rylander <mrylander@gmail.com>
6142  *
6143  * Circulation Recurring Fine rules
6144  *
6145  * Each circulation is given a recurring fine amount based on one of
6146  * these rules.  The recurrence_interval should not be any shorter
6147  * than the interval between runs of the fine_processor.pl script
6148  * (which is run from CRON), or you could miss fines.
6149  * 
6150  *
6151  * ****
6152  *
6153  * This program is free software; you can redistribute it and/or
6154  * modify it under the terms of the GNU General Public License
6155  * as published by the Free Software Foundation; either version 2
6156  * of the License, or (at your option) any later version.
6157  *
6158  * This program is distributed in the hope that it will be useful,
6159  * but WITHOUT ANY WARRANTY; without even the implied warranty of
6160  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6161  * GNU General Public License for more details.
6162  */
6163 $$;
6164
6165 -- Extend the name change to some related views:
6166
6167 -- Drop a view temporarily in order to alter action.all_circulation, upon
6168 -- which it is dependent.  We will recreate the view later.
6169
6170 DROP VIEW IF EXISTS extend_reporter.full_circ_count;
6171
6172 -- You would think that CREATE OR REPLACE would be enough, but in testing
6173 -- PostgreSQL complained about renaming the columns in the view. So we
6174 -- drop the view first.
6175 DROP VIEW IF EXISTS action.all_circulation;
6176
6177 CREATE OR REPLACE VIEW action.all_circulation AS
6178     SELECT  id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6179         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6180         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6181         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6182         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6183         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6184       FROM  action.aged_circulation
6185             UNION ALL
6186     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,
6187         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,
6188         cn.record AS copy_bib_record, circ.xact_start, circ.xact_finish, circ.target_copy, circ.circ_lib, circ.circ_staff, circ.checkin_staff,
6189         circ.checkin_lib, circ.renewal_remaining, circ.due_date, circ.stop_fines_time, circ.checkin_time, circ.create_time, circ.duration,
6190         circ.fine_interval, circ.recurring_fine, circ.max_fine, circ.phone_renewal, circ.desk_renewal, circ.opac_renewal, circ.duration_rule,
6191         circ.recurring_fine_rule, circ.max_fine_rule, circ.stop_fines, circ.workstation, circ.checkin_workstation, circ.checkin_scan_time,
6192         circ.parent_circ
6193       FROM  action.circulation circ
6194         JOIN asset.copy cp ON (circ.target_copy = cp.id)
6195         JOIN asset.call_number cn ON (cp.call_number = cn.id)
6196         JOIN actor.usr p ON (circ.usr = p.id)
6197         LEFT JOIN actor.usr_address a ON (p.mailing_address = a.id)
6198         LEFT JOIN actor.usr_address b ON (p.billing_address = a.id);
6199
6200 -- Recreate the temporarily dropped view, having altered the action.all_circulation view:
6201
6202 CREATE OR REPLACE VIEW extend_reporter.full_circ_count AS
6203  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
6204    FROM asset."copy" cp
6205    LEFT JOIN extend_reporter.legacy_circ_count c USING (id)
6206    LEFT JOIN "action".circulation circ ON circ.target_copy = cp.id
6207    LEFT JOIN "action".aged_circulation acirc ON acirc.target_copy = cp.id
6208   GROUP BY cp.id;
6209
6210 CREATE UNIQUE INDEX only_one_concurrent_checkout_per_copy ON action.circulation(target_copy) WHERE checkin_time IS NULL;
6211
6212 ALTER TABLE action.circulation DROP CONSTRAINT action_circulation_target_copy_fkey;
6213
6214 CREATE OR REPLACE FUNCTION action.age_circ_on_delete () RETURNS TRIGGER AS $$
6215 DECLARE
6216 found char := 'N';
6217 BEGIN
6218
6219     -- If there are any renewals for this circulation, don't archive or delete
6220     -- it yet.   We'll do so later, when we archive and delete the renewals.
6221
6222     SELECT 'Y' INTO found
6223     FROM action.circulation
6224     WHERE parent_circ = OLD.id
6225     LIMIT 1;
6226
6227     IF found = 'Y' THEN
6228         RETURN NULL;  -- don't delete
6229         END IF;
6230
6231     -- Archive a copy of the old row to action.aged_circulation
6232
6233     INSERT INTO action.aged_circulation
6234         (id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6235         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6236         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6237         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6238         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6239         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ)
6240       SELECT
6241         id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6242         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6243         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6244         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6245         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6246         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6247         FROM action.all_circulation WHERE id = OLD.id;
6248
6249     RETURN OLD;
6250 END;
6251 $$ LANGUAGE 'plpgsql';
6252
6253 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND name = 'title';
6254
6255 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND truncation = 0;
6256
6257 -- Adding circ.holds.target_skip_me OU setting logic to the pre-matchpoint tests
6258
6259 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$
6260 DECLARE
6261     matchpoint_id        INT;
6262     user_object        actor.usr%ROWTYPE;
6263     age_protect_object    config.rule_age_hold_protect%ROWTYPE;
6264     standing_penalty    config.standing_penalty%ROWTYPE;
6265     transit_range_ou_type    actor.org_unit_type%ROWTYPE;
6266     transit_source        actor.org_unit%ROWTYPE;
6267     item_object        asset.copy%ROWTYPE;
6268     ou_skip              actor.org_unit_setting%ROWTYPE;
6269     result            action.matrix_test_result;
6270     hold_test        config.hold_matrix_matchpoint%ROWTYPE;
6271     hold_count        INT;
6272     hold_transit_prox    INT;
6273     frozen_hold_count    INT;
6274     context_org_list    INT[];
6275     done            BOOL := FALSE;
6276 BEGIN
6277     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6278     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( pickup_ou );
6279
6280     result.success := TRUE;
6281
6282     -- Fail if we couldn't find a user
6283     IF user_object.id IS NULL THEN
6284         result.fail_part := 'no_user';
6285         result.success := FALSE;
6286         done := TRUE;
6287         RETURN NEXT result;
6288         RETURN;
6289     END IF;
6290
6291     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6292
6293     -- Fail if we couldn't find a copy
6294     IF item_object.id IS NULL THEN
6295         result.fail_part := 'no_item';
6296         result.success := FALSE;
6297         done := TRUE;
6298         RETURN NEXT result;
6299         RETURN;
6300     END IF;
6301
6302     SELECT INTO matchpoint_id action.find_hold_matrix_matchpoint(pickup_ou, request_ou, match_item, match_user, match_requestor);
6303     result.matchpoint := matchpoint_id;
6304
6305     SELECT INTO ou_skip * FROM actor.org_unit_setting WHERE name = 'circ.holds.target_skip_me' AND org_unit = item_object.circ_lib;
6306
6307     -- Fail if the circ_lib for the item has circ.holds.target_skip_me set to true
6308     IF ou_skip.id IS NOT NULL AND ou_skip.value = 'true' THEN
6309         result.fail_part := 'circ.holds.target_skip_me';
6310         result.success := FALSE;
6311         done := TRUE;
6312         RETURN NEXT result;
6313         RETURN;
6314     END IF;
6315
6316     -- Fail if user is barred
6317     IF user_object.barred IS TRUE THEN
6318         result.fail_part := 'actor.usr.barred';
6319         result.success := FALSE;
6320         done := TRUE;
6321         RETURN NEXT result;
6322         RETURN;
6323     END IF;
6324
6325     -- Fail if we couldn't find any matchpoint (requires a default)
6326     IF matchpoint_id IS NULL THEN
6327         result.fail_part := 'no_matchpoint';
6328         result.success := FALSE;
6329         done := TRUE;
6330         RETURN NEXT result;
6331         RETURN;
6332     END IF;
6333
6334     SELECT INTO hold_test * FROM config.hold_matrix_matchpoint WHERE id = matchpoint_id;
6335
6336     IF hold_test.holdable IS FALSE THEN
6337         result.fail_part := 'config.hold_matrix_test.holdable';
6338         result.success := FALSE;
6339         done := TRUE;
6340         RETURN NEXT result;
6341     END IF;
6342
6343     IF hold_test.transit_range IS NOT NULL THEN
6344         SELECT INTO transit_range_ou_type * FROM actor.org_unit_type WHERE id = hold_test.transit_range;
6345         IF hold_test.distance_is_from_owner THEN
6346             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;
6347         ELSE
6348             SELECT INTO transit_source * FROM actor.org_unit WHERE id = item_object.circ_lib;
6349         END IF;
6350
6351         PERFORM * FROM actor.org_unit_descendants( transit_source.id, transit_range_ou_type.depth ) WHERE id = pickup_ou;
6352
6353         IF NOT FOUND THEN
6354             result.fail_part := 'transit_range';
6355             result.success := FALSE;
6356             done := TRUE;
6357             RETURN NEXT result;
6358         END IF;
6359     END IF;
6360  
6361     FOR standing_penalty IN
6362         SELECT  DISTINCT csp.*
6363           FROM  actor.usr_standing_penalty usp
6364                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6365           WHERE usr = match_user
6366                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6367                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6368                 AND csp.block_list LIKE '%HOLD%' LOOP
6369
6370         result.fail_part := standing_penalty.name;
6371         result.success := FALSE;
6372         done := TRUE;
6373         RETURN NEXT result;
6374     END LOOP;
6375
6376     IF hold_test.stop_blocked_user IS TRUE THEN
6377         FOR standing_penalty IN
6378             SELECT  DISTINCT csp.*
6379               FROM  actor.usr_standing_penalty usp
6380                     JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6381               WHERE usr = match_user
6382                     AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6383                     AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6384                     AND csp.block_list LIKE '%CIRC%' LOOP
6385     
6386             result.fail_part := standing_penalty.name;
6387             result.success := FALSE;
6388             done := TRUE;
6389             RETURN NEXT result;
6390         END LOOP;
6391     END IF;
6392
6393     IF hold_test.max_holds IS NOT NULL THEN
6394         SELECT    INTO hold_count COUNT(*)
6395           FROM    action.hold_request
6396           WHERE    usr = match_user
6397             AND fulfillment_time IS NULL
6398             AND cancel_time IS NULL
6399             AND CASE WHEN hold_test.include_frozen_holds THEN TRUE ELSE frozen IS FALSE END;
6400
6401         IF hold_count >= hold_test.max_holds THEN
6402             result.fail_part := 'config.hold_matrix_test.max_holds';
6403             result.success := FALSE;
6404             done := TRUE;
6405             RETURN NEXT result;
6406         END IF;
6407     END IF;
6408
6409     IF item_object.age_protect IS NOT NULL THEN
6410         SELECT INTO age_protect_object * FROM config.rule_age_hold_protect WHERE id = item_object.age_protect;
6411
6412         IF item_object.create_date + age_protect_object.age > NOW() THEN
6413             IF hold_test.distance_is_from_owner THEN
6414                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_cn_object.owning_lib AND to_org = pickup_ou;
6415             ELSE
6416                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_object.circ_lib AND to_org = pickup_ou;
6417             END IF;
6418
6419             IF hold_transit_prox > age_protect_object.prox THEN
6420                 result.fail_part := 'config.rule_age_hold_protect.prox';
6421                 result.success := FALSE;
6422                 done := TRUE;
6423                 RETURN NEXT result;
6424             END IF;
6425         END IF;
6426     END IF;
6427
6428     IF NOT done THEN
6429         RETURN NEXT result;
6430     END IF;
6431
6432     RETURN;
6433 END;
6434 $func$ LANGUAGE plpgsql;
6435
6436 -- New post-delete trigger to propagate deletions to parent(s)
6437
6438 CREATE OR REPLACE FUNCTION action.age_parent_circ_on_delete () RETURNS TRIGGER AS $$
6439 BEGIN
6440
6441     -- Having deleted a renewal, we can delete the original circulation (or a previous
6442     -- renewal, if that's what parent_circ is pointing to).  That deletion will trigger
6443     -- deletion of any prior parents, etc. recursively.
6444
6445     IF OLD.parent_circ IS NOT NULL THEN
6446         DELETE FROM action.circulation
6447         WHERE id = OLD.parent_circ;
6448     END IF;
6449
6450     RETURN OLD;
6451 END;
6452 $$ LANGUAGE 'plpgsql';
6453
6454 CREATE TRIGGER age_parent_circ AFTER DELETE ON action.circulation
6455 FOR EACH ROW EXECUTE PROCEDURE action.age_parent_circ_on_delete ();
6456
6457 -- This only gets inserted if there are no other id > 100 billing types
6458 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;
6459 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101) FROM config.billing_type_id_seq WHERE last_value < 101;
6460
6461 -- Populate xact_type column in the materialized version of billable_xact_summary
6462
6463 CREATE OR REPLACE FUNCTION money.mat_summary_create () RETURNS TRIGGER AS $$
6464 BEGIN
6465         INSERT INTO money.materialized_billable_xact_summary (id, usr, xact_start, xact_finish, total_paid, total_owed, balance_owed, xact_type)
6466                 VALUES ( NEW.id, NEW.usr, NEW.xact_start, NEW.xact_finish, 0.0, 0.0, 0.0, TG_ARGV[0]);
6467         RETURN NEW;
6468 END;
6469 $$ LANGUAGE PLPGSQL;
6470  
6471 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON action.circulation;
6472 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('circulation');
6473  
6474 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON money.grocery;
6475 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON money.grocery FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('grocery');
6476
6477 CREATE RULE money_payment_view_update AS ON UPDATE TO money.payment_view DO INSTEAD 
6478     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;
6479
6480 -- Generate the equivalent of compound subject entries from the existing rows
6481 -- so that we don't have to laboriously reindex them
6482
6483 --INSERT INTO config.metabib_field (field_class, name, format, xpath ) VALUES
6484 --    ( 'subject', 'complete', 'mods32', $$//mods32:mods/mods32:subject//text()$$ );
6485 --
6486 --CREATE INDEX metabib_subject_field_entry_source_idx ON metabib.subject_field_entry (source);
6487 --
6488 --INSERT INTO metabib.subject_field_entry (source, field, value)
6489 --    SELECT source, (
6490 --            SELECT id 
6491 --            FROM config.metabib_field
6492 --            WHERE field_class = 'subject' AND name = 'complete'
6493 --        ), 
6494 --        ARRAY_TO_STRING ( 
6495 --            ARRAY (
6496 --                SELECT value 
6497 --                FROM metabib.subject_field_entry msfe
6498 --                WHERE msfe.source = groupee.source
6499 --                ORDER BY source 
6500 --            ), ' ' 
6501 --        ) AS grouped
6502 --    FROM ( 
6503 --        SELECT source
6504 --        FROM metabib.subject_field_entry
6505 --        GROUP BY source
6506 --    ) AS groupee;
6507
6508 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_del () RETURNS TRIGGER AS $$
6509 DECLARE
6510         prev_billing    money.billing%ROWTYPE;
6511         old_billing     money.billing%ROWTYPE;
6512 BEGIN
6513         SELECT * INTO prev_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1 OFFSET 1;
6514         SELECT * INTO old_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1;
6515
6516         IF OLD.id = old_billing.id THEN
6517                 UPDATE  money.materialized_billable_xact_summary
6518                   SET   last_billing_ts = prev_billing.billing_ts,
6519                         last_billing_note = prev_billing.note,
6520                         last_billing_type = prev_billing.billing_type
6521                   WHERE id = OLD.xact;
6522         END IF;
6523
6524         IF NOT OLD.voided THEN
6525                 UPDATE  money.materialized_billable_xact_summary
6526                   SET   total_owed = total_owed - OLD.amount,
6527                         balance_owed = balance_owed + OLD.amount
6528                   WHERE id = OLD.xact;
6529         END IF;
6530
6531         RETURN OLD;
6532 END;
6533 $$ LANGUAGE PLPGSQL;
6534
6535 -- ARG! need to rid ourselves of the broken table definition ... this mechanism is not ideal, sorry.
6536 DROP TABLE IF EXISTS config.index_normalizer CASCADE;
6537
6538 CREATE OR REPLACE FUNCTION public.naco_normalize( TEXT, TEXT ) RETURNS TEXT AS $func$
6539         use Unicode::Normalize;
6540         use Encode;
6541
6542         # When working with Unicode data, the first step is to decode it to
6543         # a byte string; after that, lowercasing is safe
6544         my $txt = lc(decode_utf8(shift));
6545         my $sf = shift;
6546
6547         $txt = NFD($txt);
6548         $txt =~ s/\pM+//go;     # Remove diacritics
6549
6550         $txt =~ s/\xE6/AE/go;   # Convert ae digraph
6551         $txt =~ s/\x{153}/OE/go;# Convert oe digraph
6552         $txt =~ s/\xFE/TH/go;   # Convert Icelandic thorn
6553
6554         $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
6555         $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
6556
6557         $txt =~ tr/\x{0251}\x{03B1}\x{03B2}\x{0262}\x{03B3}/AABGG/;             # Convert Latin and Greek
6558         $txt =~ tr/\x{2113}\xF0\!\"\(\)\-\{\}\<\>\;\:\.\?\xA1\xBF\/\\\@\*\%\=\xB1\+\xAE\xA9\x{2117}\$\xA3\x{FFE1}\xB0\^\_\~\`/LD /;     # Convert Misc
6559         $txt =~ tr/\'\[\]\|//d;                                                 # Remove Misc
6560
6561         if ($sf && $sf =~ /^a/o) {
6562                 my $commapos = index($txt,',');
6563                 if ($commapos > -1) {
6564                         if ($commapos != length($txt) - 1) {
6565                                 my @list = split /,/, $txt;
6566                                 my $first = shift @list;
6567                                 $txt = $first . ',' . join(' ', @list);
6568                         } else {
6569                                 $txt =~ s/,/ /go;
6570                         }
6571                 }
6572         } else {
6573                 $txt =~ s/,/ /go;
6574         }
6575
6576         $txt =~ s/\s+/ /go;     # Compress multiple spaces
6577         $txt =~ s/^\s+//o;      # Remove leading space
6578         $txt =~ s/\s+$//o;      # Remove trailing space
6579
6580         # Encoding the outgoing string is good practice, but not strictly
6581         # necessary in this case because we've stripped everything from it
6582         return encode_utf8($txt);
6583 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6584
6585 -- Some handy functions, based on existing ones, to provide optional ingest normalization
6586
6587 CREATE OR REPLACE FUNCTION public.left_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6588         SELECT SUBSTRING($1,$2);
6589 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6590
6591 CREATE OR REPLACE FUNCTION public.right_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6592         SELECT SUBSTRING($1,1,$2);
6593 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6594
6595 CREATE OR REPLACE FUNCTION public.naco_normalize_keep_comma( TEXT ) RETURNS TEXT AS $func$
6596         SELECT public.naco_normalize($1,'a');
6597 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6598
6599 CREATE OR REPLACE FUNCTION public.split_date_range( TEXT ) RETURNS TEXT AS $func$
6600         SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' );
6601 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6602
6603 -- And ... a table in which to register them
6604
6605 CREATE TABLE config.index_normalizer (
6606         id              SERIAL  PRIMARY KEY,
6607         name            TEXT    UNIQUE NOT NULL,
6608         description     TEXT    UNIQUE NOT NULL,
6609         func            TEXT    NOT NULL,
6610         param_count     INT     NOT NULL DEFAULT 0
6611 );
6612
6613 CREATE TABLE config.metabib_field_index_norm_map (
6614         id      SERIAL  PRIMARY KEY,
6615         field   INT     NOT NULL REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6616         norm    INT     NOT NULL REFERENCES config.index_normalizer (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6617         params  TEXT,
6618         pos     INT     NOT NULL DEFAULT 0
6619 );
6620
6621 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6622         'NACO Normalize',
6623         'Apply NACO normalization rules to the extracted text.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
6624         'naco_normalize',
6625         0
6626 );
6627
6628 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6629         'Normalize date range',
6630         'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.',
6631         'split_date_range',
6632         1
6633 );
6634
6635 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6636         'NACO Normalize -- retain first comma',
6637         '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.',
6638         'naco_normalize_keep_comma',
6639         0
6640 );
6641
6642 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6643         'Strip Diacritics',
6644         'Convert text to NFD form and remove non-spacing combining marks.',
6645         'remove_diacritics',
6646         0
6647 );
6648
6649 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6650         'Up-case',
6651         'Convert text upper case.',
6652         'uppercase',
6653         0
6654 );
6655
6656 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6657         'Down-case',
6658         'Convert text lower case.',
6659         'lowercase',
6660         0
6661 );
6662
6663 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6664         'Extract Dewey-like number',
6665         'Extract a string of numeric characters ther resembles a DDC number.',
6666         'call_number_dewey',
6667         0
6668 );
6669
6670 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6671         'Left truncation',
6672         'Discard the specified number of characters from the left side of the string.',
6673         'left_trunc',
6674         1
6675 );
6676
6677 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6678         'Right truncation',
6679         'Include only the specified number of characters from the left side of the string.',
6680         'right_trunc',
6681         1
6682 );
6683
6684 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6685         'First word',
6686         'Include only the first space-separated word of a string.',
6687         'first_word',
6688         0
6689 );
6690
6691 INSERT INTO config.metabib_field_index_norm_map (field,norm)
6692         SELECT  m.id,
6693                 i.id
6694           FROM  config.metabib_field m,
6695                 config.index_normalizer i
6696           WHERE i.func IN ('naco_normalize','split_date_range');
6697
6698 CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
6699 DECLARE
6700     normalizer      RECORD;
6701     value           TEXT := '';
6702 BEGIN
6703
6704     value := NEW.value;
6705
6706     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
6707         FOR normalizer IN
6708             SELECT  n.func AS func,
6709                     n.param_count AS param_count,
6710                     m.params AS params
6711               FROM  config.index_normalizer n
6712                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
6713               WHERE field = NEW.field AND m.pos < 0
6714               ORDER BY m.pos LOOP
6715                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
6716                     quote_literal( value ) ||
6717                     CASE
6718                         WHEN normalizer.param_count > 0
6719                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
6720                             ELSE ''
6721                         END ||
6722                     ')' INTO value;
6723
6724         END LOOP;
6725
6726         NEW.value := value;
6727     END IF;
6728
6729     IF NEW.index_vector = ''::tsvector THEN
6730         RETURN NEW;
6731     END IF;
6732
6733     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
6734         FOR normalizer IN
6735             SELECT  n.func AS func,
6736                     n.param_count AS param_count,
6737                     m.params AS params
6738               FROM  config.index_normalizer n
6739                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
6740               WHERE field = NEW.field AND m.pos >= 0
6741               ORDER BY m.pos LOOP
6742                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
6743                     quote_literal( value ) ||
6744                     CASE
6745                         WHEN normalizer.param_count > 0
6746                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
6747                             ELSE ''
6748                         END ||
6749                     ')' INTO value;
6750
6751         END LOOP;
6752     END IF;
6753
6754     IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT > 8.2 THEN
6755         NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, value);
6756     ELSE
6757         NEW.index_vector = to_tsvector(TG_ARGV[0], value);
6758     END IF;
6759
6760     RETURN NEW;
6761 END;
6762 $$ LANGUAGE PLPGSQL;
6763
6764 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
6765
6766 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
6767
6768 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
6769     SELECT  ARRAY_TO_STRING(
6770                 oils_xpath(
6771                     $1 ||
6772                         CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END,
6773                     $2,
6774                     $4
6775                 ),
6776                 $3
6777             );
6778 $func$ LANGUAGE SQL IMMUTABLE;
6779
6780 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT ) RETURNS TEXT AS $func$
6781     SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] );
6782 $func$ LANGUAGE SQL IMMUTABLE;
6783
6784 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
6785     SELECT oils_xpath_string( $1, $2, '', $3 );
6786 $func$ LANGUAGE SQL IMMUTABLE;
6787
6788 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT ) RETURNS TEXT AS $func$
6789     SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] );
6790 $func$ LANGUAGE SQL IMMUTABLE;
6791
6792 CREATE TYPE metabib.field_entry_template AS (
6793         field_class     TEXT,
6794         field           INT,
6795         source          BIGINT,
6796         value           TEXT
6797 );
6798
6799 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $func$
6800   use strict;
6801
6802   use XML::LibXSLT;
6803   use XML::LibXML;
6804
6805   my $doc = shift;
6806   my $xslt = shift;
6807
6808   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
6809   # methods of parsing XML documents and stylesheets, in the hopes of broader
6810   # compatibility with distributions
6811   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
6812
6813   # Cache the XML parser, if we do not already have one
6814   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
6815     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
6816
6817   my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new();
6818
6819   # Cache the XSLT processor, if we do not already have one
6820   $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser
6821     unless ($_SHARED{'_xslt_process'}{parsers}{xslt});
6822
6823   my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} ||
6824     $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) );
6825
6826   $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet
6827     unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt});
6828
6829   return $stylesheet->output_string(
6830     $stylesheet->transform(
6831       $parser->parse_string($doc)
6832     )
6833   );
6834
6835 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6836
6837 -- Add two columns so that the following function will compile.
6838 -- Eventually the label column will be NOT NULL, but not yet.
6839 ALTER TABLE config.metabib_field ADD COLUMN label TEXT;
6840 ALTER TABLE config.metabib_field ADD COLUMN facet_xpath TEXT;
6841
6842 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( rid BIGINT, default_joiner TEXT ) RETURNS SETOF metabib.field_entry_template AS $func$
6843 DECLARE
6844     bib     biblio.record_entry%ROWTYPE;
6845     idx     config.metabib_field%ROWTYPE;
6846     xfrm        config.xml_transform%ROWTYPE;
6847     prev_xfrm   TEXT;
6848     transformed_xml TEXT;
6849     xml_node    TEXT;
6850     xml_node_list   TEXT[];
6851     facet_text  TEXT;
6852     raw_text    TEXT;
6853     curr_text   TEXT;
6854     joiner      TEXT := default_joiner; -- XXX will index defs supply a joiner?
6855     output_row  metabib.field_entry_template%ROWTYPE;
6856 BEGIN
6857
6858     -- Get the record
6859     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
6860
6861     -- Loop over the indexing entries
6862     FOR idx IN SELECT * FROM config.metabib_field ORDER BY format LOOP
6863
6864         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
6865
6866         -- See if we can skip the XSLT ... it's expensive
6867         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
6868             -- Can't skip the transform
6869             IF xfrm.xslt <> '---' THEN
6870                 transformed_xml := oils_xslt_process(bib.marc,xfrm.xslt);
6871             ELSE
6872                 transformed_xml := bib.marc;
6873             END IF;
6874
6875             prev_xfrm := xfrm.name;
6876         END IF;
6877
6878         xml_node_list := oils_xpath( idx.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
6879
6880         raw_text := NULL;
6881         FOR xml_node IN SELECT x FROM explode_array(xml_node_list) AS x LOOP
6882             CONTINUE WHEN xml_node !~ E'^\\s*<';
6883
6884             curr_text := ARRAY_TO_STRING(
6885                 oils_xpath( '//text()',
6886                     REGEXP_REPLACE( -- This escapes all &s not followed by "amp;".  Data ise returned from oils_xpath (above) in UTF-8, not entity encoded
6887                         REGEXP_REPLACE( -- This escapes embeded <s
6888                             xml_node,
6889                             $re$(>[^<]+)(<)([^>]+<)$re$,
6890                             E'\\1&lt;\\3',
6891                             'g'
6892                         ),
6893                         '&(?!amp;)',
6894                         '&amp;',
6895                         'g'
6896                     )
6897                 ),
6898                 ' '
6899             );
6900
6901             CONTINUE WHEN curr_text IS NULL OR curr_text = '';
6902
6903             IF raw_text IS NOT NULL THEN
6904                 raw_text := raw_text || joiner;
6905             END IF;
6906
6907             raw_text := COALESCE(raw_text,'') || curr_text;
6908
6909             -- insert raw node text for faceting
6910             IF idx.facet_field THEN
6911
6912                 IF idx.facet_xpath IS NOT NULL AND idx.facet_xpath <> '' THEN
6913                     facet_text := oils_xpath_string( idx.facet_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
6914                 ELSE
6915                     facet_text := curr_text;
6916                 END IF;
6917
6918                 output_row.field_class = idx.field_class;
6919                 output_row.field = -1 * idx.id;
6920                 output_row.source = rid;
6921                 output_row.value = BTRIM(REGEXP_REPLACE(facet_text, E'\\s+', ' ', 'g'));
6922
6923                 RETURN NEXT output_row;
6924             END IF;
6925
6926         END LOOP;
6927
6928         CONTINUE WHEN raw_text IS NULL OR raw_text = '';
6929
6930         -- insert combined node text for searching
6931         IF idx.search_field THEN
6932             output_row.field_class = idx.field_class;
6933             output_row.field = idx.id;
6934             output_row.source = rid;
6935             output_row.value = BTRIM(REGEXP_REPLACE(raw_text, E'\\s+', ' ', 'g'));
6936
6937             RETURN NEXT output_row;
6938         END IF;
6939
6940     END LOOP;
6941
6942 END;
6943 $func$ LANGUAGE PLPGSQL;
6944
6945 -- default to a space joiner
6946 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( BIGINT ) RETURNS SETOF metabib.field_entry_template AS $func$
6947         SELECT * FROM biblio.extract_metabib_field_entry($1, ' ');
6948 $func$ LANGUAGE SQL;
6949
6950 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
6951
6952 use MARC::Record;
6953 use MARC::File::XML (BinaryEncoding => 'UTF-8');
6954
6955 my $xml = shift;
6956 my $r = MARC::Record->new_from_xml( $xml );
6957
6958 return_next( { tag => 'LDR', value => $r->leader } );
6959
6960 for my $f ( $r->fields ) {
6961     if ($f->is_control_field) {
6962         return_next({ tag => $f->tag, value => $f->data });
6963     } else {
6964         for my $s ($f->subfields) {
6965             return_next({
6966                 tag      => $f->tag,
6967                 ind1     => $f->indicator(1),
6968                 ind2     => $f->indicator(2),
6969                 subfield => $s->[0],
6970                 value    => $s->[1]
6971             });
6972
6973             if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
6974                 my $trim = $f->indicator(2) || 0;
6975                 return_next({
6976                     tag      => 'tnf',
6977                     ind1     => $f->indicator(1),
6978                     ind2     => $f->indicator(2),
6979                     subfield => 'a',
6980                     value    => substr( $s->[1], $trim )
6981                 });
6982             }
6983         }
6984     }
6985 }
6986
6987 return undef;
6988
6989 $func$ LANGUAGE PLPERLU;
6990
6991 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( rid BIGINT ) RETURNS SETOF metabib.full_rec AS $func$
6992 DECLARE
6993     bib biblio.record_entry%ROWTYPE;
6994     output  metabib.full_rec%ROWTYPE;
6995     field   RECORD;
6996 BEGIN
6997     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
6998
6999     FOR field IN SELECT * FROM biblio.flatten_marc( bib.marc ) LOOP
7000         output.record := rid;
7001         output.ind1 := field.ind1;
7002         output.ind2 := field.ind2;
7003         output.tag := field.tag;
7004         output.subfield := field.subfield;
7005         IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields
7006             output.value := naco_normalize(field.value, field.subfield);
7007         ELSE
7008             output.value := field.value;
7009         END IF;
7010
7011         CONTINUE WHEN output.value IS NULL;
7012
7013         RETURN NEXT output;
7014     END LOOP;
7015 END;
7016 $func$ LANGUAGE PLPGSQL;
7017
7018 ALTER TABLE action.hold_request ADD COLUMN cut_in_line BOOL;
7019
7020 ALTER TABLE action.hold_request
7021 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
7022
7023 ALTER TABLE action.hold_request
7024 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
7025
7026 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_current_copy_fkey;
7027
7028 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_hold_type_check;
7029
7030 UPDATE config.index_normalizer SET param_count = 0 WHERE func = 'split_date_range';
7031
7032 ALTER TABLE actor.usr ADD COLUMN
7033         claims_never_checked_out_count  INT         NOT NULL DEFAULT 0;
7034
7035 CREATE INDEX actor_usr_usrgroup_idx ON actor.usr (usrgroup);
7036
7037 ALTER TABLE AUDITOR.actor_usr_history ADD COLUMN 
7038         claims_never_checked_out_count INT NOT NULL DEFAULT 0;
7039
7040 CREATE OR REPLACE FUNCTION action.circulation_claims_returned () RETURNS TRIGGER AS $$
7041 BEGIN
7042         IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN
7043                 IF NEW.stop_fines = 'CLAIMSRETURNED' THEN
7044                         UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr;
7045                 END IF;
7046                 IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN
7047                         UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr;
7048                 END IF;
7049                 IF NEW.stop_fines = 'LOST' THEN
7050                         UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy;
7051                 END IF;
7052         END IF;
7053         RETURN NEW;
7054 END;
7055 $$ LANGUAGE 'plpgsql';
7056
7057 -- Create new table acq.fund_allocation_percent
7058 -- Populate it from acq.fund_allocation
7059 -- Convert all percentages to amounts in acq.fund_allocation
7060
7061 CREATE TABLE acq.fund_allocation_percent
7062 (
7063     id                   SERIAL            PRIMARY KEY,
7064     funding_source       INT               NOT NULL REFERENCES acq.funding_source
7065                                                DEFERRABLE INITIALLY DEFERRED,
7066     org                  INT               NOT NULL REFERENCES actor.org_unit
7067                                                DEFERRABLE INITIALLY DEFERRED,
7068     fund_code            TEXT,
7069     percent              NUMERIC           NOT NULL,
7070     allocator            INTEGER           NOT NULL REFERENCES actor.usr
7071                                                DEFERRABLE INITIALLY DEFERRED,
7072     note                 TEXT,
7073     create_time          TIMESTAMPTZ       NOT NULL DEFAULT now(),
7074     CONSTRAINT logical_key UNIQUE( funding_source, org, fund_code ),
7075     CONSTRAINT percentage_range CHECK( percent >= 0 AND percent <= 100 )
7076 );
7077
7078 -- Trigger function to validate combination of org_unit and fund_code
7079
7080 CREATE OR REPLACE FUNCTION acq.fund_alloc_percent_val()
7081 RETURNS TRIGGER AS $$
7082 --
7083 DECLARE
7084 --
7085 dummy int := 0;
7086 --
7087 BEGIN
7088     SELECT
7089         1
7090     INTO
7091         dummy
7092     FROM
7093         acq.fund
7094     WHERE
7095         org = NEW.org
7096         AND code = NEW.fund_code
7097         LIMIT 1;
7098     --
7099     IF dummy = 1 then
7100         RETURN NEW;
7101     ELSE
7102         RAISE EXCEPTION 'No fund exists for org % and code %', NEW.org, NEW.fund_code;
7103     END IF;
7104 END;
7105 $$ LANGUAGE plpgsql;
7106
7107 CREATE TRIGGER acq_fund_alloc_percent_val_trig
7108     BEFORE INSERT OR UPDATE ON acq.fund_allocation_percent
7109     FOR EACH ROW EXECUTE PROCEDURE acq.fund_alloc_percent_val();
7110
7111 CREATE OR REPLACE FUNCTION acq.fap_limit_100()
7112 RETURNS TRIGGER AS $$
7113 DECLARE
7114 --
7115 total_percent numeric;
7116 --
7117 BEGIN
7118     SELECT
7119         sum( percent )
7120     INTO
7121         total_percent
7122     FROM
7123         acq.fund_allocation_percent AS fap
7124     WHERE
7125         fap.funding_source = NEW.funding_source;
7126     --
7127     IF total_percent > 100 THEN
7128         RAISE EXCEPTION 'Total percentages exceed 100 for funding_source %',
7129             NEW.funding_source;
7130     ELSE
7131         RETURN NEW;
7132     END IF;
7133 END;
7134 $$ LANGUAGE plpgsql;
7135
7136 CREATE TRIGGER acqfap_limit_100_trig
7137     AFTER INSERT OR UPDATE ON acq.fund_allocation_percent
7138     FOR EACH ROW EXECUTE PROCEDURE acq.fap_limit_100();
7139
7140 -- Populate new table from acq.fund_allocation
7141
7142 INSERT INTO acq.fund_allocation_percent
7143 (
7144     funding_source,
7145     org,
7146     fund_code,
7147     percent,
7148     allocator,
7149     note,
7150     create_time
7151 )
7152     SELECT
7153         fa.funding_source,
7154         fund.org,
7155         fund.code,
7156         fa.percent,
7157         fa.allocator,
7158         fa.note,
7159         fa.create_time
7160     FROM
7161         acq.fund_allocation AS fa
7162             INNER JOIN acq.fund AS fund
7163                 ON ( fa.fund = fund.id )
7164     WHERE
7165         fa.percent is not null
7166     ORDER BY
7167         fund.org;
7168
7169 -- Temporary function to convert percentages to amounts in acq.fund_allocation
7170
7171 -- Algorithm to apply to each funding source:
7172
7173 -- 1. Add up the credits.
7174 -- 2. Add up the percentages.
7175 -- 3. Multiply the sum of the percentages times the sum of the credits.  Drop any
7176 --    fractional cents from the result.  This is the total amount to be allocated.
7177 -- 4. For each allocation: multiply the percentage by the total allocation.  Drop any
7178 --    fractional cents to get a preliminary amount.
7179 -- 5. Add up the preliminary amounts for all the allocations.
7180 -- 6. Subtract the results of step 5 from the result of step 3.  The difference is the
7181 --    number of residual cents (resulting from having dropped fractional cents) that
7182 --    must be distributed across the funds in order to make the total of the amounts
7183 --    match the total allocation.
7184 -- 7. Make a second pass through the allocations, in decreasing order of the fractional
7185 --    cents that were dropped from their amounts in step 4.  Add one cent to the amount
7186 --    for each successive fund, until all the residual cents have been exhausted.
7187
7188 -- Result: the sum of the individual allocations now equals the total to be allocated,
7189 -- to the penny.  The individual amounts match the percentages as closely as possible,
7190 -- given the constraint that the total must match.
7191
7192 CREATE OR REPLACE FUNCTION acq.apply_percents()
7193 RETURNS VOID AS $$
7194 declare
7195 --
7196 tot              RECORD;
7197 fund             RECORD;
7198 tot_cents        INTEGER;
7199 src              INTEGER;
7200 id               INTEGER[];
7201 curr_id          INTEGER;
7202 pennies          NUMERIC[];
7203 curr_amount      NUMERIC;
7204 i                INTEGER;
7205 total_of_floors  INTEGER;
7206 total_percent    NUMERIC;
7207 total_allocation INTEGER;
7208 residue          INTEGER;
7209 --
7210 begin
7211         RAISE NOTICE 'Applying percents';
7212         FOR tot IN
7213                 SELECT
7214                         fsrc.funding_source,
7215                         sum( fsrc.amount ) AS total
7216                 FROM
7217                         acq.funding_source_credit AS fsrc
7218                 WHERE fsrc.funding_source IN
7219                         ( SELECT DISTINCT fa.funding_source
7220                           FROM acq.fund_allocation AS fa
7221                           WHERE fa.percent IS NOT NULL )
7222                 GROUP BY
7223                         fsrc.funding_source
7224         LOOP
7225                 tot_cents = floor( tot.total * 100 );
7226                 src = tot.funding_source;
7227                 RAISE NOTICE 'Funding source % total %',
7228                         src, tot_cents;
7229                 i := 0;
7230                 total_of_floors := 0;
7231                 total_percent := 0;
7232                 --
7233                 FOR fund in
7234                         SELECT
7235                                 fa.id,
7236                                 fa.percent,
7237                                 floor( fa.percent * tot_cents / 100 ) as floor_pennies
7238                         FROM
7239                                 acq.fund_allocation AS fa
7240                         WHERE
7241                                 fa.funding_source = src
7242                                 AND fa.percent IS NOT NULL
7243                         ORDER BY
7244                                 mod( fa.percent * tot_cents / 100, 1 ),
7245                                 fa.fund,
7246                                 fa.id
7247                 LOOP
7248                         RAISE NOTICE '   %: %',
7249                                 fund.id,
7250                                 fund.floor_pennies;
7251                         i := i + 1;
7252                         id[i] = fund.id;
7253                         pennies[i] = fund.floor_pennies;
7254                         total_percent := total_percent + fund.percent;
7255                         total_of_floors := total_of_floors + pennies[i];
7256                 END LOOP;
7257                 total_allocation := floor( total_percent * tot_cents /100 );
7258                 RAISE NOTICE 'Total before distributing residue: %', total_of_floors;
7259                 residue := total_allocation - total_of_floors;
7260                 RAISE NOTICE 'Residue: %', residue;
7261                 --
7262                 -- Post the calculated amounts, revising as needed to
7263                 -- distribute the rounding error
7264                 --
7265                 WHILE i > 0 LOOP
7266                         IF residue > 0 THEN
7267                                 pennies[i] = pennies[i] + 1;
7268                                 residue := residue - 1;
7269                         END IF;
7270                         --
7271                         -- Post amount
7272                         --
7273                         curr_id     := id[i];
7274                         curr_amount := trunc( pennies[i] / 100, 2 );
7275                         --
7276                         UPDATE
7277                                 acq.fund_allocation AS fa
7278                         SET
7279                                 amount = curr_amount,
7280                                 percent = NULL
7281                         WHERE
7282                                 fa.id = curr_id;
7283                         --
7284                         RAISE NOTICE '   ID % and amount %',
7285                                 curr_id,
7286                                 curr_amount;
7287                         i = i - 1;
7288                 END LOOP;
7289         END LOOP;
7290 end;
7291 $$ LANGUAGE 'plpgsql';
7292
7293 -- Run the temporary function
7294
7295 select * from acq.apply_percents();
7296
7297 -- Drop the temporary function now that we're done with it
7298
7299 DROP FUNCTION IF EXISTS acq.apply_percents();
7300
7301 -- Eliminate acq.fund_allocation.percent, which has been moved to the acq.fund_allocation_percent table.
7302
7303 -- If the following step fails, it's probably because there are still some non-null percent values in
7304 -- acq.fund_allocation.  They should have all been converted to amounts, and then set to null, by a
7305 -- previous upgrade step based on 0049.schema.acq_funding_allocation_percent.sql.  If there are any
7306 -- non-null values, then either that step didn't run, or it didn't work, or some non-null values
7307 -- slipped in afterwards.
7308
7309 -- To convert any remaining percents to amounts: create, run, and then drop the temporary stored
7310 -- procedure acq.apply_percents() as defined above.
7311
7312 ALTER TABLE acq.fund_allocation
7313 ALTER COLUMN amount SET NOT NULL;
7314
7315 CREATE OR REPLACE VIEW acq.fund_allocation_total AS
7316     SELECT  fund,
7317             SUM(a.amount * acq.exchange_ratio(s.currency_type, f.currency_type))::NUMERIC(100,2) AS amount
7318     FROM acq.fund_allocation a
7319          JOIN acq.fund f ON (a.fund = f.id)
7320          JOIN acq.funding_source s ON (a.funding_source = s.id)
7321     GROUP BY 1;
7322
7323 CREATE OR REPLACE VIEW acq.funding_source_allocation_total AS
7324     SELECT  funding_source,
7325             SUM(a.amount)::NUMERIC(100,2) AS amount
7326     FROM  acq.fund_allocation a
7327     GROUP BY 1;
7328
7329 ALTER TABLE acq.fund_allocation
7330 DROP COLUMN percent;
7331
7332 CREATE TABLE asset.copy_location_order
7333 (
7334         id              SERIAL           PRIMARY KEY,
7335         location        INT              NOT NULL
7336                                              REFERENCES asset.copy_location
7337                                              ON DELETE CASCADE
7338                                              DEFERRABLE INITIALLY DEFERRED,
7339         org             INT              NOT NULL
7340                                              REFERENCES actor.org_unit
7341                                              ON DELETE CASCADE
7342                                              DEFERRABLE INITIALLY DEFERRED,
7343         position        INT              NOT NULL DEFAULT 0,
7344         CONSTRAINT acplo_once_per_org UNIQUE ( location, org )
7345 );
7346
7347 ALTER TABLE money.credit_card_payment ADD COLUMN cc_processor TEXT;
7348
7349 -- If you ran this before its most recent incarnation:
7350 -- delete from config.upgrade_log where version = '0328';
7351 -- alter table money.credit_card_payment drop column cc_name;
7352
7353 ALTER TABLE money.credit_card_payment ADD COLUMN cc_first_name TEXT;
7354 ALTER TABLE money.credit_card_payment ADD COLUMN cc_last_name TEXT;
7355
7356 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$
7357 DECLARE
7358     current_group    permission.grp_tree%ROWTYPE;
7359     user_object    actor.usr%ROWTYPE;
7360     item_object    asset.copy%ROWTYPE;
7361     cn_object    asset.call_number%ROWTYPE;
7362     rec_descriptor    metabib.rec_descriptor%ROWTYPE;
7363     current_mp    config.circ_matrix_matchpoint%ROWTYPE;
7364     matchpoint    config.circ_matrix_matchpoint%ROWTYPE;
7365 BEGIN
7366     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7367     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7368     SELECT INTO cn_object * FROM asset.call_number WHERE id = item_object.call_number;
7369     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r JOIN asset.call_number c USING (record) WHERE c.id = item_object.call_number;
7370     SELECT INTO current_group * FROM permission.grp_tree WHERE id = user_object.profile;
7371
7372     LOOP 
7373         -- for each potential matchpoint for this ou and group ...
7374         FOR current_mp IN
7375             SELECT  m.*
7376               FROM  config.circ_matrix_matchpoint m
7377                     JOIN actor.org_unit_ancestors( context_ou ) d ON (m.org_unit = d.id)
7378                     LEFT JOIN actor.org_unit_proximity p ON (p.from_org = context_ou AND p.to_org = d.id)
7379               WHERE m.grp = current_group.id
7380                     AND m.active
7381                     AND (m.copy_owning_lib IS NULL OR cn_object.owning_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_owning_lib) ))
7382                     AND (m.copy_circ_lib   IS NULL OR item_object.circ_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_circ_lib)   ))
7383               ORDER BY    CASE WHEN p.prox        IS NULL THEN 999 ELSE p.prox END,
7384                     CASE WHEN m.copy_owning_lib IS NOT NULL
7385                         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 )
7386                         ELSE 0
7387                     END +
7388                     CASE WHEN m.copy_circ_lib IS NOT NULL
7389                         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 )
7390                         ELSE 0
7391                     END +
7392                     CASE WHEN m.is_renewal = renewal        THEN 128 ELSE 0 END +
7393                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 64 ELSE 0 END +
7394                     CASE WHEN m.circ_modifier    IS NOT NULL THEN 32 ELSE 0 END +
7395                     CASE WHEN m.marc_type        IS NOT NULL THEN 16 ELSE 0 END +
7396                     CASE WHEN m.marc_form        IS NOT NULL THEN 8 ELSE 0 END +
7397                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 4 ELSE 0 END +
7398                     CASE WHEN m.ref_flag        IS NOT NULL THEN 2 ELSE 0 END +
7399                     CASE WHEN m.usr_age_lower_bound    IS NOT NULL THEN 0.5 ELSE 0 END +
7400                     CASE WHEN m.usr_age_upper_bound    IS NOT NULL THEN 0.5 ELSE 0 END DESC LOOP
7401
7402             IF current_mp.is_renewal IS NOT NULL THEN
7403                 CONTINUE WHEN current_mp.is_renewal <> renewal;
7404             END IF;
7405
7406             IF current_mp.circ_modifier IS NOT NULL THEN
7407                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
7408             END IF;
7409
7410             IF current_mp.marc_type IS NOT NULL THEN
7411                 IF item_object.circ_as_type IS NOT NULL THEN
7412                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
7413                 ELSE
7414                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
7415                 END IF;
7416             END IF;
7417
7418             IF current_mp.marc_form IS NOT NULL THEN
7419                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
7420             END IF;
7421
7422             IF current_mp.marc_vr_format IS NOT NULL THEN
7423                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
7424             END IF;
7425
7426             IF current_mp.ref_flag IS NOT NULL THEN
7427                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
7428             END IF;
7429
7430             IF current_mp.juvenile_flag IS NOT NULL THEN
7431                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
7432             END IF;
7433
7434             IF current_mp.usr_age_lower_bound IS NOT NULL THEN
7435                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_lower_bound < age(user_object.dob);
7436             END IF;
7437
7438             IF current_mp.usr_age_upper_bound IS NOT NULL THEN
7439                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_upper_bound > age(user_object.dob);
7440             END IF;
7441
7442
7443             -- everything was undefined or matched
7444             matchpoint = current_mp;
7445
7446             EXIT WHEN matchpoint.id IS NOT NULL;
7447         END LOOP;
7448
7449         EXIT WHEN current_group.parent IS NULL OR matchpoint.id IS NOT NULL;
7450
7451         SELECT INTO current_group * FROM permission.grp_tree WHERE id = current_group.parent;
7452     END LOOP;
7453
7454     RETURN matchpoint;
7455 END;
7456 $func$ LANGUAGE plpgsql;
7457
7458 CREATE TYPE action.hold_stats AS (
7459     hold_count              INT,
7460     copy_count              INT,
7461     available_count         INT,
7462     total_copy_ratio        FLOAT,
7463     available_copy_ratio    FLOAT
7464 );
7465
7466 CREATE OR REPLACE FUNCTION action.copy_related_hold_stats (copy_id INT) RETURNS action.hold_stats AS $func$
7467 DECLARE
7468     output          action.hold_stats%ROWTYPE;
7469     hold_count      INT := 0;
7470     copy_count      INT := 0;
7471     available_count INT := 0;
7472     hold_map_data   RECORD;
7473 BEGIN
7474
7475     output.hold_count := 0;
7476     output.copy_count := 0;
7477     output.available_count := 0;
7478
7479     SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
7480       FROM  action.hold_copy_map m
7481             JOIN action.hold_request h ON (m.hold = h.id)
7482       WHERE m.target_copy = copy_id
7483             AND NOT h.frozen;
7484
7485     output.hold_count := hold_count;
7486
7487     IF output.hold_count > 0 THEN
7488         FOR hold_map_data IN
7489             SELECT  DISTINCT m.target_copy,
7490                     acp.status
7491               FROM  action.hold_copy_map m
7492                     JOIN asset.copy acp ON (m.target_copy = acp.id)
7493                     JOIN action.hold_request h ON (m.hold = h.id)
7494               WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
7495         LOOP
7496             output.copy_count := output.copy_count + 1;
7497             IF hold_map_data.status IN (0,7,12) THEN
7498                 output.available_count := output.available_count + 1;
7499             END IF;
7500         END LOOP;
7501         output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
7502         output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
7503
7504     END IF;
7505
7506     RETURN output;
7507
7508 END;
7509 $func$ LANGUAGE PLPGSQL;
7510
7511 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN total_copy_hold_ratio FLOAT;
7512 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN available_copy_hold_ratio FLOAT;
7513
7514 ALTER TABLE config.circ_matrix_matchpoint DROP CONSTRAINT ep_once_per_grp_loc_mod_marc;
7515
7516 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_circ_lib   INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7517 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_owning_lib INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7518
7519 ALTER TABLE config.circ_matrix_matchpoint ADD CONSTRAINT ep_once_per_grp_loc_mod_marc UNIQUE (
7520     grp, org_unit, circ_modifier, marc_type, marc_form, marc_vr_format, ref_flag,
7521     juvenile_flag, usr_age_lower_bound, usr_age_upper_bound, is_renewal, copy_circ_lib,
7522     copy_owning_lib
7523 );
7524
7525 -- Return the correct fail_part when the item can't be found
7526 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$
7527 DECLARE
7528     user_object        actor.usr%ROWTYPE;
7529     standing_penalty    config.standing_penalty%ROWTYPE;
7530     item_object        asset.copy%ROWTYPE;
7531     item_status_object    config.copy_status%ROWTYPE;
7532     item_location_object    asset.copy_location%ROWTYPE;
7533     result            action.matrix_test_result;
7534     circ_test        config.circ_matrix_matchpoint%ROWTYPE;
7535     out_by_circ_mod        config.circ_matrix_circ_mod_test%ROWTYPE;
7536     circ_mod_map        config.circ_matrix_circ_mod_test_map%ROWTYPE;
7537     hold_ratio          action.hold_stats%ROWTYPE;
7538     penalty_type         TEXT;
7539     tmp_grp         INT;
7540     items_out        INT;
7541     context_org_list        INT[];
7542     done            BOOL := FALSE;
7543 BEGIN
7544     result.success := TRUE;
7545
7546     -- Fail if the user is BARRED
7547     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7548
7549     -- Fail if we couldn't find the user 
7550     IF user_object.id IS NULL THEN
7551         result.fail_part := 'no_user';
7552         result.success := FALSE;
7553         done := TRUE;
7554         RETURN NEXT result;
7555         RETURN;
7556     END IF;
7557
7558     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7559
7560     -- Fail if we couldn't find the item 
7561     IF item_object.id IS NULL THEN
7562         result.fail_part := 'no_item';
7563         result.success := FALSE;
7564         done := TRUE;
7565         RETURN NEXT result;
7566         RETURN;
7567     END IF;
7568
7569     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, match_item, match_user, renewal);
7570     result.matchpoint := circ_test.id;
7571
7572     -- Fail if we couldn't find a matchpoint
7573     IF result.matchpoint IS NULL THEN
7574         result.fail_part := 'no_matchpoint';
7575         result.success := FALSE;
7576         done := TRUE;
7577         RETURN NEXT result;
7578     END IF;
7579
7580     IF user_object.barred IS TRUE THEN
7581         result.fail_part := 'actor.usr.barred';
7582         result.success := FALSE;
7583         done := TRUE;
7584         RETURN NEXT result;
7585     END IF;
7586
7587     -- Fail if the item can't circulate
7588     IF item_object.circulate IS FALSE THEN
7589         result.fail_part := 'asset.copy.circulate';
7590         result.success := FALSE;
7591         done := TRUE;
7592         RETURN NEXT result;
7593     END IF;
7594
7595     -- Fail if the item isn't in a circulateable status on a non-renewal
7596     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN
7597         result.fail_part := 'asset.copy.status';
7598         result.success := FALSE;
7599         done := TRUE;
7600         RETURN NEXT result;
7601     ELSIF renewal AND item_object.status <> 1 THEN
7602         result.fail_part := 'asset.copy.status';
7603         result.success := FALSE;
7604         done := TRUE;
7605         RETURN NEXT result;
7606     END IF;
7607
7608     -- Fail if the item can't circulate because of the shelving location
7609     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
7610     IF item_location_object.circulate IS FALSE THEN
7611         result.fail_part := 'asset.copy_location.circulate';
7612         result.success := FALSE;
7613         done := TRUE;
7614         RETURN NEXT result;
7615     END IF;
7616
7617     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( circ_test.org_unit );
7618
7619     -- Fail if the test is set to hard non-circulating
7620     IF circ_test.circulate IS FALSE THEN
7621         result.fail_part := 'config.circ_matrix_test.circulate';
7622         result.success := FALSE;
7623         done := TRUE;
7624         RETURN NEXT result;
7625     END IF;
7626
7627     -- Fail if the total copy-hold ratio is too low
7628     IF circ_test.total_copy_hold_ratio IS NOT NULL THEN
7629         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
7630         IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_test.total_copy_hold_ratio THEN
7631             result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio';
7632             result.success := FALSE;
7633             done := TRUE;
7634             RETURN NEXT result;
7635         END IF;
7636     END IF;
7637
7638     -- Fail if the available copy-hold ratio is too low
7639     IF circ_test.available_copy_hold_ratio IS NOT NULL THEN
7640         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
7641         IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_test.available_copy_hold_ratio THEN
7642             result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio';
7643             result.success := FALSE;
7644             done := TRUE;
7645             RETURN NEXT result;
7646         END IF;
7647     END IF;
7648
7649     IF renewal THEN
7650         penalty_type = '%RENEW%';
7651     ELSE
7652         penalty_type = '%CIRC%';
7653     END IF;
7654
7655     FOR standing_penalty IN
7656         SELECT  DISTINCT csp.*
7657           FROM  actor.usr_standing_penalty usp
7658                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
7659           WHERE usr = match_user
7660                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
7661                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
7662                 AND csp.block_list LIKE penalty_type LOOP
7663
7664         result.fail_part := standing_penalty.name;
7665         result.success := FALSE;
7666         done := TRUE;
7667         RETURN NEXT result;
7668     END LOOP;
7669
7670     -- Fail if the user has too many items with specific circ_modifiers checked out
7671     FOR out_by_circ_mod IN SELECT * FROM config.circ_matrix_circ_mod_test WHERE matchpoint = circ_test.id LOOP
7672         SELECT  INTO items_out COUNT(*)
7673           FROM  action.circulation circ
7674             JOIN asset.copy cp ON (cp.id = circ.target_copy)
7675           WHERE circ.usr = match_user
7676                AND circ.circ_lib IN ( SELECT * FROM explode_array(context_org_list) )
7677             AND circ.checkin_time IS NULL
7678             AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
7679             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);
7680         IF items_out >= out_by_circ_mod.items_out THEN
7681             result.fail_part := 'config.circ_matrix_circ_mod_test';
7682             result.success := FALSE;
7683             done := TRUE;
7684             RETURN NEXT result;
7685         END IF;
7686     END LOOP;
7687
7688     -- If we passed everything, return the successful matchpoint id
7689     IF NOT done THEN
7690         RETURN NEXT result;
7691     END IF;
7692
7693     RETURN;
7694 END;
7695 $func$ LANGUAGE plpgsql;
7696
7697 CREATE TABLE config.remote_account (
7698     id          SERIAL  PRIMARY KEY,
7699     label       TEXT    NOT NULL,
7700     host        TEXT    NOT NULL,   -- name or IP, :port optional
7701     username    TEXT,               -- optional, since we could default to $USER
7702     password    TEXT,               -- optional, since we could use SSH keys, or anonymous login.
7703     account     TEXT,               -- aka profile or FTP "account" command
7704     path        TEXT,               -- aka directory
7705     owner       INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
7706     last_activity TIMESTAMP WITH TIME ZONE
7707 );
7708
7709 CREATE TABLE acq.edi_account (      -- similar tables can extend remote_account for other parts of EG
7710     provider    INT     NOT NULL REFERENCES acq.provider          (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
7711     in_dir      TEXT,   -- incoming messages dir (probably different than config.remote_account.path, the outgoing dir)
7712         vendcode    TEXT,
7713         vendacct    TEXT
7714
7715 ) INHERITS (config.remote_account);
7716
7717 ALTER TABLE acq.edi_account ADD PRIMARY KEY (id);
7718
7719 CREATE TABLE acq.claim_type (
7720         id             SERIAL           PRIMARY KEY,
7721         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
7722                                                  DEFERRABLE INITIALLY DEFERRED,
7723         code           TEXT             NOT NULL,
7724         description    TEXT             NOT NULL,
7725         CONSTRAINT claim_type_once_per_org UNIQUE ( org_unit, code )
7726 );
7727
7728 CREATE TABLE acq.claim (
7729         id             SERIAL           PRIMARY KEY,
7730         type           INT              NOT NULL REFERENCES acq.claim_type
7731                                                  DEFERRABLE INITIALLY DEFERRED,
7732         lineitem_detail BIGINT          NOT NULL REFERENCES acq.lineitem_detail
7733                                                  DEFERRABLE INITIALLY DEFERRED
7734 );
7735
7736 CREATE TABLE acq.claim_policy (
7737         id              SERIAL       PRIMARY KEY,
7738         org_unit        INT          NOT NULL REFERENCES actor.org_unit
7739                                      DEFERRABLE INITIALLY DEFERRED,
7740         name            TEXT         NOT NULL,
7741         description     TEXT         NOT NULL,
7742         CONSTRAINT name_once_per_org UNIQUE (org_unit, name)
7743 );
7744
7745 -- Add a san column for EDI. 
7746 -- See: http://isbn.org/standards/home/isbn/us/san/san-qa.asp
7747
7748 ALTER TABLE acq.provider ADD COLUMN san INT;
7749
7750 ALTER TABLE acq.provider ALTER COLUMN san TYPE TEXT USING lpad(text(san), 7, '0');
7751
7752 -- null edi_default is OK... it has to be, since we have no values in acq.edi_account yet
7753 ALTER TABLE acq.provider ADD COLUMN edi_default INT REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
7754
7755 ALTER TABLE acq.provider
7756         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
7757
7758 ALTER TABLE acq.provider
7759         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
7760
7761 ALTER TABLE acq.provider
7762         ADD COLUMN url TEXT;
7763
7764 ALTER TABLE acq.provider
7765         ADD COLUMN email TEXT;
7766
7767 ALTER TABLE acq.provider
7768         ADD COLUMN phone TEXT;
7769
7770 ALTER TABLE acq.provider
7771         ADD COLUMN fax_phone TEXT;
7772
7773 ALTER TABLE acq.provider
7774         ADD COLUMN default_claim_policy INT
7775                 REFERENCES acq.claim_policy
7776                 DEFERRABLE INITIALLY DEFERRED;
7777
7778 ALTER TABLE action.transit_copy
7779 ADD COLUMN prev_dest INTEGER REFERENCES actor.org_unit( id )
7780                                                          DEFERRABLE INITIALLY DEFERRED;
7781
7782 DROP SCHEMA IF EXISTS booking CASCADE;
7783
7784 CREATE SCHEMA booking;
7785
7786 CREATE TABLE booking.resource_type (
7787         id             SERIAL          PRIMARY KEY,
7788         name           TEXT            NOT NULL,
7789         fine_interval  INTERVAL,
7790         fine_amount    DECIMAL(8,2)    NOT NULL DEFAULT 0,
7791         owner          INT             NOT NULL
7792                                        REFERENCES actor.org_unit( id )
7793                                        DEFERRABLE INITIALLY DEFERRED,
7794         catalog_item   BOOLEAN         NOT NULL DEFAULT FALSE,
7795         transferable   BOOLEAN         NOT NULL DEFAULT FALSE,
7796     record         BIGINT          REFERENCES biblio.record_entry (id)
7797                                        DEFERRABLE INITIALLY DEFERRED,
7798     max_fine       NUMERIC(8,2),
7799     elbow_room     INTERVAL,
7800     CONSTRAINT brt_name_or_record_once_per_owner UNIQUE(owner, name, record)
7801 );
7802
7803 CREATE TABLE booking.resource (
7804         id             SERIAL           PRIMARY KEY,
7805         owner          INT              NOT NULL
7806                                         REFERENCES actor.org_unit(id)
7807                                         DEFERRABLE INITIALLY DEFERRED,
7808         type           INT              NOT NULL
7809                                         REFERENCES booking.resource_type(id)
7810                                         DEFERRABLE INITIALLY DEFERRED,
7811         overbook       BOOLEAN          NOT NULL DEFAULT FALSE,
7812         barcode        TEXT             NOT NULL,
7813         deposit        BOOLEAN          NOT NULL DEFAULT FALSE,
7814         deposit_amount DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
7815         user_fee       DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
7816         CONSTRAINT br_unique UNIQUE (owner, barcode)
7817 );
7818
7819 -- For non-catalog items: hijack barcode for name/description
7820
7821 CREATE TABLE booking.resource_attr (
7822         id              SERIAL          PRIMARY KEY,
7823         owner           INT             NOT NULL
7824                                         REFERENCES actor.org_unit(id)
7825                                         DEFERRABLE INITIALLY DEFERRED,
7826         name            TEXT            NOT NULL,
7827         resource_type   INT             NOT NULL
7828                                         REFERENCES booking.resource_type(id)
7829                                         ON DELETE CASCADE
7830                                         DEFERRABLE INITIALLY DEFERRED,
7831         required        BOOLEAN         NOT NULL DEFAULT FALSE,
7832         CONSTRAINT bra_name_once_per_type UNIQUE(resource_type, name)
7833 );
7834
7835 CREATE TABLE booking.resource_attr_value (
7836         id               SERIAL         PRIMARY KEY,
7837         owner            INT            NOT NULL
7838                                         REFERENCES actor.org_unit(id)
7839                                         DEFERRABLE INITIALLY DEFERRED,
7840         attr             INT            NOT NULL
7841                                         REFERENCES booking.resource_attr(id)
7842                                         DEFERRABLE INITIALLY DEFERRED,
7843         valid_value      TEXT           NOT NULL,
7844         CONSTRAINT brav_logical_key UNIQUE(owner, attr, valid_value)
7845 );
7846
7847 CREATE TABLE booking.resource_attr_map (
7848         id               SERIAL         PRIMARY KEY,
7849         resource         INT            NOT NULL
7850                                         REFERENCES booking.resource(id)
7851                                         ON DELETE CASCADE
7852                                         DEFERRABLE INITIALLY DEFERRED,
7853         resource_attr    INT            NOT NULL
7854                                         REFERENCES booking.resource_attr(id)
7855                                         ON DELETE CASCADE
7856                                         DEFERRABLE INITIALLY DEFERRED,
7857         value            INT            NOT NULL
7858                                         REFERENCES booking.resource_attr_value(id)
7859                                         DEFERRABLE INITIALLY DEFERRED,
7860         CONSTRAINT bram_one_value_per_attr UNIQUE(resource, resource_attr)
7861 );
7862
7863 CREATE TABLE booking.reservation (
7864         request_time     TIMESTAMPTZ   NOT NULL DEFAULT now(),
7865         start_time       TIMESTAMPTZ,
7866         end_time         TIMESTAMPTZ,
7867         capture_time     TIMESTAMPTZ,
7868         cancel_time      TIMESTAMPTZ,
7869         pickup_time      TIMESTAMPTZ,
7870         return_time      TIMESTAMPTZ,
7871         booking_interval INTERVAL,
7872         fine_interval    INTERVAL,
7873         fine_amount      DECIMAL(8,2),
7874         target_resource_type  INT       NOT NULL
7875                                         REFERENCES booking.resource_type(id)
7876                                         ON DELETE CASCADE
7877                                         DEFERRABLE INITIALLY DEFERRED,
7878         target_resource  INT            REFERENCES booking.resource(id)
7879                                         ON DELETE CASCADE
7880                                         DEFERRABLE INITIALLY DEFERRED,
7881         current_resource INT            REFERENCES booking.resource(id)
7882                                         ON DELETE CASCADE
7883                                         DEFERRABLE INITIALLY DEFERRED,
7884         request_lib      INT            NOT NULL
7885                                         REFERENCES actor.org_unit(id)
7886                                         DEFERRABLE INITIALLY DEFERRED,
7887         pickup_lib       INT            REFERENCES actor.org_unit(id)
7888                                         DEFERRABLE INITIALLY DEFERRED,
7889         capture_staff    INT            REFERENCES actor.usr(id)
7890                                         DEFERRABLE INITIALLY DEFERRED,
7891     max_fine         NUMERIC(8,2)
7892 ) INHERITS (money.billable_xact);
7893
7894 ALTER TABLE booking.reservation ADD PRIMARY KEY (id);
7895
7896 ALTER TABLE booking.reservation
7897         ADD CONSTRAINT booking_reservation_usr_fkey
7898         FOREIGN KEY (usr) REFERENCES actor.usr (id)
7899         DEFERRABLE INITIALLY DEFERRED;
7900
7901 CREATE TABLE booking.reservation_attr_value_map (
7902         id               SERIAL         PRIMARY KEY,
7903         reservation      INT            NOT NULL
7904                                         REFERENCES booking.reservation(id)
7905                                         ON DELETE CASCADE
7906                                         DEFERRABLE INITIALLY DEFERRED,
7907         attr_value       INT            NOT NULL
7908                                         REFERENCES booking.resource_attr_value(id)
7909                                         ON DELETE CASCADE
7910                                         DEFERRABLE INITIALLY DEFERRED,
7911         CONSTRAINT bravm_logical_key UNIQUE(reservation, attr_value)
7912 );
7913
7914 CREATE FUNCTION auditor.create_auditor_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7915 BEGIN
7916     EXECUTE $$
7917         CREATE SEQUENCE auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
7918     $$;
7919         RETURN TRUE;
7920 END;
7921 $creator$ LANGUAGE 'plpgsql';
7922
7923 CREATE FUNCTION auditor.create_auditor_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7924 BEGIN
7925     EXECUTE $$
7926         CREATE TABLE auditor.$$ || sch || $$_$$ || tbl || $$_history (
7927             audit_id    BIGINT                          PRIMARY KEY,
7928             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
7929             audit_action        TEXT                            NOT NULL,
7930             LIKE $$ || sch || $$.$$ || tbl || $$
7931         );
7932     $$;
7933         RETURN TRUE;
7934 END;
7935 $creator$ LANGUAGE 'plpgsql';
7936
7937 CREATE FUNCTION auditor.create_auditor_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7938 BEGIN
7939     EXECUTE $$
7940         CREATE FUNCTION auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ()
7941         RETURNS TRIGGER AS $func$
7942         BEGIN
7943             INSERT INTO auditor.$$ || sch || $$_$$ || tbl || $$_history
7944                 SELECT  nextval('auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
7945                     now(),
7946                     SUBSTR(TG_OP,1,1),
7947                     OLD.*;
7948             RETURN NULL;
7949         END;
7950         $func$ LANGUAGE 'plpgsql';
7951     $$;
7952     RETURN TRUE;
7953 END;
7954 $creator$ LANGUAGE 'plpgsql';
7955
7956 CREATE FUNCTION auditor.create_auditor_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7957 BEGIN
7958     EXECUTE $$
7959         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
7960             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
7961             EXECUTE PROCEDURE auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ();
7962     $$;
7963         RETURN TRUE;
7964 END;
7965 $creator$ LANGUAGE 'plpgsql';
7966
7967 CREATE FUNCTION auditor.create_auditor_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7968 BEGIN
7969     EXECUTE $$
7970         CREATE VIEW auditor.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
7971             SELECT      -1, now() as audit_time, '-' as audit_action, *
7972               FROM      $$ || sch || $$.$$ || tbl || $$
7973                 UNION ALL
7974             SELECT      *
7975               FROM      auditor.$$ || sch || $$_$$ || tbl || $$_history;
7976     $$;
7977         RETURN TRUE;
7978 END;
7979 $creator$ LANGUAGE 'plpgsql';
7980
7981 DROP FUNCTION IF EXISTS auditor.create_auditor (TEXT, TEXT);
7982
7983 -- The main event
7984
7985 CREATE FUNCTION auditor.create_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7986 BEGIN
7987     PERFORM auditor.create_auditor_seq(sch, tbl);
7988     PERFORM auditor.create_auditor_history(sch, tbl);
7989     PERFORM auditor.create_auditor_func(sch, tbl);
7990     PERFORM auditor.create_auditor_update_trigger(sch, tbl);
7991     PERFORM auditor.create_auditor_lifecycle(sch, tbl);
7992         RETURN TRUE;
7993 END;
7994 $creator$ LANGUAGE 'plpgsql';
7995
7996 -- represents a circ chain summary
7997 CREATE TYPE action.circ_chain_summary AS (
7998     num_circs INTEGER,
7999     start_time TIMESTAMP WITH TIME ZONE,
8000     checkout_workstation TEXT,
8001     last_renewal_time TIMESTAMP WITH TIME ZONE, -- NULL if no renewals
8002     last_stop_fines TEXT,
8003     last_stop_fines_time TIMESTAMP WITH TIME ZONE,
8004     last_renewal_workstation TEXT, -- NULL if no renewals
8005     last_checkin_workstation TEXT,
8006     last_checkin_time TIMESTAMP WITH TIME ZONE,
8007     last_checkin_scan_time TIMESTAMP WITH TIME ZONE
8008 );
8009
8010 CREATE OR REPLACE FUNCTION action.circ_chain ( ctx_circ_id INTEGER ) RETURNS SETOF action.circulation AS $$
8011 DECLARE
8012     tmp_circ action.circulation%ROWTYPE;
8013     circ_0 action.circulation%ROWTYPE;
8014 BEGIN
8015
8016     SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id;
8017
8018     IF tmp_circ IS NULL THEN
8019         RETURN NEXT tmp_circ;
8020     END IF;
8021     circ_0 := tmp_circ;
8022
8023     -- find the front of the chain
8024     WHILE TRUE LOOP
8025         SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ;
8026         IF tmp_circ IS NULL THEN
8027             EXIT;
8028         END IF;
8029         circ_0 := tmp_circ;
8030     END LOOP;
8031
8032     -- now send the circs to the caller, oldest to newest
8033     tmp_circ := circ_0;
8034     WHILE TRUE LOOP
8035         IF tmp_circ IS NULL THEN
8036             EXIT;
8037         END IF;
8038         RETURN NEXT tmp_circ;
8039         SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id;
8040     END LOOP;
8041
8042 END;
8043 $$ LANGUAGE 'plpgsql';
8044
8045 CREATE OR REPLACE FUNCTION action.summarize_circ_chain ( ctx_circ_id INTEGER ) RETURNS action.circ_chain_summary AS $$
8046
8047 DECLARE
8048
8049     -- first circ in the chain
8050     circ_0 action.circulation%ROWTYPE;
8051
8052     -- last circ in the chain
8053     circ_n action.circulation%ROWTYPE;
8054
8055     -- circ chain under construction
8056     chain action.circ_chain_summary;
8057     tmp_circ action.circulation%ROWTYPE;
8058
8059 BEGIN
8060     
8061     chain.num_circs := 0;
8062     FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP
8063
8064         IF chain.num_circs = 0 THEN
8065             circ_0 := tmp_circ;
8066         END IF;
8067
8068         chain.num_circs := chain.num_circs + 1;
8069         circ_n := tmp_circ;
8070     END LOOP;
8071
8072     chain.start_time := circ_0.xact_start;
8073     chain.last_stop_fines := circ_n.stop_fines;
8074     chain.last_stop_fines_time := circ_n.stop_fines_time;
8075     chain.last_checkin_time := circ_n.checkin_time;
8076     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
8077     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
8078     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
8079
8080     IF chain.num_circs > 1 THEN
8081         chain.last_renewal_time := circ_n.xact_start;
8082         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
8083     END IF;
8084
8085     RETURN chain;
8086
8087 END;
8088 $$ LANGUAGE 'plpgsql';
8089
8090 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('reservation');
8091 CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update ();
8092 CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete ();
8093
8094 ALTER TABLE config.standing_penalty
8095         ADD COLUMN org_depth   INTEGER;
8096
8097 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
8098 DECLARE
8099     user_object         actor.usr%ROWTYPE;
8100     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
8101     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
8102     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
8103     max_fines           permission.grp_penalty_threshold%ROWTYPE;
8104     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
8105     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
8106     tmp_grp             INT;
8107     items_overdue       INT;
8108     items_out           INT;
8109     context_org_list    INT[];
8110     current_fines        NUMERIC(8,2) := 0.0;
8111     tmp_fines            NUMERIC(8,2);
8112     tmp_groc            RECORD;
8113     tmp_circ            RECORD;
8114     tmp_org             actor.org_unit%ROWTYPE;
8115     tmp_penalty         config.standing_penalty%ROWTYPE;
8116     tmp_depth           INTEGER;
8117 BEGIN
8118     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8119
8120     -- Max fines
8121     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8122
8123     -- Fail if the user has a high fine balance
8124     LOOP
8125         tmp_grp := user_object.profile;
8126         LOOP
8127             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
8128
8129             IF max_fines.threshold IS NULL THEN
8130                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8131             ELSE
8132                 EXIT;
8133             END IF;
8134
8135             IF tmp_grp IS NULL THEN
8136                 EXIT;
8137             END IF;
8138         END LOOP;
8139
8140         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8141             EXIT;
8142         END IF;
8143
8144         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8145
8146     END LOOP;
8147
8148     IF max_fines.threshold IS NOT NULL THEN
8149
8150         FOR existing_sp_row IN
8151                 SELECT  *
8152                   FROM  actor.usr_standing_penalty
8153                   WHERE usr = match_user
8154                         AND org_unit = max_fines.org_unit
8155                         AND (stop_date IS NULL or stop_date > NOW())
8156                         AND standing_penalty = 1
8157                 LOOP
8158             RETURN NEXT existing_sp_row;
8159         END LOOP;
8160
8161         SELECT  SUM(f.balance_owed) INTO current_fines
8162           FROM  money.materialized_billable_xact_summary f
8163                 JOIN (
8164                     SELECT  r.id
8165                       FROM  booking.reservation r
8166                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8167                       WHERE usr = match_user
8168                             AND xact_finish IS NULL
8169                                 UNION ALL
8170                     SELECT  g.id
8171                       FROM  money.grocery g
8172                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8173                       WHERE usr = match_user
8174                             AND xact_finish IS NULL
8175                                 UNION ALL
8176                     SELECT  circ.id
8177                       FROM  action.circulation circ
8178                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8179                       WHERE usr = match_user
8180                             AND xact_finish IS NULL ) l USING (id);
8181
8182         IF current_fines >= max_fines.threshold THEN
8183             new_sp_row.usr := match_user;
8184             new_sp_row.org_unit := max_fines.org_unit;
8185             new_sp_row.standing_penalty := 1;
8186             RETURN NEXT new_sp_row;
8187         END IF;
8188     END IF;
8189
8190     -- Start over for max overdue
8191     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8192
8193     -- Fail if the user has too many overdue items
8194     LOOP
8195         tmp_grp := user_object.profile;
8196         LOOP
8197
8198             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
8199
8200             IF max_overdue.threshold IS NULL THEN
8201                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8202             ELSE
8203                 EXIT;
8204             END IF;
8205
8206             IF tmp_grp IS NULL THEN
8207                 EXIT;
8208             END IF;
8209         END LOOP;
8210
8211         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8212             EXIT;
8213         END IF;
8214
8215         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8216
8217     END LOOP;
8218
8219     IF max_overdue.threshold IS NOT NULL THEN
8220
8221         FOR existing_sp_row IN
8222                 SELECT  *
8223                   FROM  actor.usr_standing_penalty
8224                   WHERE usr = match_user
8225                         AND org_unit = max_overdue.org_unit
8226                         AND (stop_date IS NULL or stop_date > NOW())
8227                         AND standing_penalty = 2
8228                 LOOP
8229             RETURN NEXT existing_sp_row;
8230         END LOOP;
8231
8232         SELECT  INTO items_overdue COUNT(*)
8233           FROM  action.circulation circ
8234                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
8235           WHERE circ.usr = match_user
8236             AND circ.checkin_time IS NULL
8237             AND circ.due_date < NOW()
8238             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
8239
8240         IF items_overdue >= max_overdue.threshold::INT THEN
8241             new_sp_row.usr := match_user;
8242             new_sp_row.org_unit := max_overdue.org_unit;
8243             new_sp_row.standing_penalty := 2;
8244             RETURN NEXT new_sp_row;
8245         END IF;
8246     END IF;
8247
8248     -- Start over for max out
8249     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8250
8251     -- Fail if the user has too many checked out items
8252     LOOP
8253         tmp_grp := user_object.profile;
8254         LOOP
8255             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
8256
8257             IF max_items_out.threshold IS NULL THEN
8258                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8259             ELSE
8260                 EXIT;
8261             END IF;
8262
8263             IF tmp_grp IS NULL THEN
8264                 EXIT;
8265             END IF;
8266         END LOOP;
8267
8268         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8269             EXIT;
8270         END IF;
8271
8272         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8273
8274     END LOOP;
8275
8276
8277     -- Fail if the user has too many items checked out
8278     IF max_items_out.threshold IS NOT NULL THEN
8279
8280         FOR existing_sp_row IN
8281                 SELECT  *
8282                   FROM  actor.usr_standing_penalty
8283                   WHERE usr = match_user
8284                         AND org_unit = max_items_out.org_unit
8285                         AND (stop_date IS NULL or stop_date > NOW())
8286                         AND standing_penalty = 3
8287                 LOOP
8288             RETURN NEXT existing_sp_row;
8289         END LOOP;
8290
8291         SELECT  INTO items_out COUNT(*)
8292           FROM  action.circulation circ
8293                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
8294           WHERE circ.usr = match_user
8295                 AND circ.checkin_time IS NULL
8296                 AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL);
8297
8298            IF items_out >= max_items_out.threshold::INT THEN
8299             new_sp_row.usr := match_user;
8300             new_sp_row.org_unit := max_items_out.org_unit;
8301             new_sp_row.standing_penalty := 3;
8302             RETURN NEXT new_sp_row;
8303            END IF;
8304     END IF;
8305
8306     -- Start over for collections warning
8307     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8308
8309     -- Fail if the user has a collections-level fine balance
8310     LOOP
8311         tmp_grp := user_object.profile;
8312         LOOP
8313             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
8314
8315             IF max_fines.threshold IS NULL THEN
8316                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8317             ELSE
8318                 EXIT;
8319             END IF;
8320
8321             IF tmp_grp IS NULL THEN
8322                 EXIT;
8323             END IF;
8324         END LOOP;
8325
8326         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8327             EXIT;
8328         END IF;
8329
8330         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8331
8332     END LOOP;
8333
8334     IF max_fines.threshold IS NOT NULL THEN
8335
8336         FOR existing_sp_row IN
8337                 SELECT  *
8338                   FROM  actor.usr_standing_penalty
8339                   WHERE usr = match_user
8340                         AND org_unit = max_fines.org_unit
8341                         AND (stop_date IS NULL or stop_date > NOW())
8342                         AND standing_penalty = 4
8343                 LOOP
8344             RETURN NEXT existing_sp_row;
8345         END LOOP;
8346
8347         SELECT  SUM(f.balance_owed) INTO current_fines
8348           FROM  money.materialized_billable_xact_summary f
8349                 JOIN (
8350                     SELECT  r.id
8351                       FROM  booking.reservation r
8352                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8353                       WHERE usr = match_user
8354                             AND xact_finish IS NULL
8355                                 UNION ALL
8356                     SELECT  g.id
8357                       FROM  money.grocery g
8358                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8359                       WHERE usr = match_user
8360                             AND xact_finish IS NULL
8361                                 UNION ALL
8362                     SELECT  circ.id
8363                       FROM  action.circulation circ
8364                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8365                       WHERE usr = match_user
8366                             AND xact_finish IS NULL ) l USING (id);
8367
8368         IF current_fines >= max_fines.threshold THEN
8369             new_sp_row.usr := match_user;
8370             new_sp_row.org_unit := max_fines.org_unit;
8371             new_sp_row.standing_penalty := 4;
8372             RETURN NEXT new_sp_row;
8373         END IF;
8374     END IF;
8375
8376     -- Start over for in collections
8377     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8378
8379     -- Remove the in-collections penalty if the user has paid down enough
8380     -- This penalty is different, because this code is not responsible for creating 
8381     -- new in-collections penalties, only for removing them
8382     LOOP
8383         tmp_grp := user_object.profile;
8384         LOOP
8385             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id;
8386
8387             IF max_fines.threshold IS NULL THEN
8388                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8389             ELSE
8390                 EXIT;
8391             END IF;
8392
8393             IF tmp_grp IS NULL THEN
8394                 EXIT;
8395             END IF;
8396         END LOOP;
8397
8398         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8399             EXIT;
8400         END IF;
8401
8402         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8403
8404     END LOOP;
8405
8406     IF max_fines.threshold IS NOT NULL THEN
8407
8408         -- first, see if the user had paid down to the threshold
8409         SELECT  SUM(f.balance_owed) INTO current_fines
8410           FROM  money.materialized_billable_xact_summary f
8411                 JOIN (
8412                     SELECT  r.id
8413                       FROM  booking.reservation r
8414                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8415                       WHERE usr = match_user
8416                             AND xact_finish IS NULL
8417                                 UNION ALL
8418                     SELECT  g.id
8419                       FROM  money.grocery g
8420                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8421                       WHERE usr = match_user
8422                             AND xact_finish IS NULL
8423                                 UNION ALL
8424                     SELECT  circ.id
8425                       FROM  action.circulation circ
8426                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8427                       WHERE usr = match_user
8428                             AND xact_finish IS NULL ) l USING (id);
8429
8430         IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN
8431             -- patron has paid down enough
8432
8433             SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30;
8434
8435             IF tmp_penalty.org_depth IS NOT NULL THEN
8436
8437                 -- since this code is not responsible for applying the penalty, it can't 
8438                 -- guarantee the current context org will match the org at which the penalty 
8439                 --- was applied.  search up the org tree until we hit the configured penalty depth
8440                 SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8441                 SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8442
8443                 WHILE tmp_depth >= tmp_penalty.org_depth LOOP
8444
8445                     FOR existing_sp_row IN
8446                             SELECT  *
8447                             FROM  actor.usr_standing_penalty
8448                             WHERE usr = match_user
8449                                     AND org_unit = tmp_org.id
8450                                     AND (stop_date IS NULL or stop_date > NOW())
8451                                     AND standing_penalty = 30 
8452                             LOOP
8453
8454                         -- Penalty exists, return it for removal
8455                         RETURN NEXT existing_sp_row;
8456                     END LOOP;
8457
8458                     IF tmp_org.parent_ou IS NULL THEN
8459                         EXIT;
8460                     END IF;
8461
8462                     SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8463                     SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8464                 END LOOP;
8465
8466             ELSE
8467
8468                 -- no penalty depth is defined, look for exact matches
8469
8470                 FOR existing_sp_row IN
8471                         SELECT  *
8472                         FROM  actor.usr_standing_penalty
8473                         WHERE usr = match_user
8474                                 AND org_unit = max_fines.org_unit
8475                                 AND (stop_date IS NULL or stop_date > NOW())
8476                                 AND standing_penalty = 30 
8477                         LOOP
8478                     -- Penalty exists, return it for removal
8479                     RETURN NEXT existing_sp_row;
8480                 END LOOP;
8481             END IF;
8482     
8483         END IF;
8484
8485     END IF;
8486
8487     RETURN;
8488 END;
8489 $func$ LANGUAGE plpgsql;
8490
8491 -- Create a default row in acq.fiscal_calendar
8492 -- Add a column in actor.org_unit to point to it
8493
8494 INSERT INTO acq.fiscal_calendar ( id, name ) VALUES ( 1, 'Default' );
8495
8496 ALTER TABLE actor.org_unit
8497 ADD COLUMN fiscal_calendar INT NOT NULL
8498         REFERENCES acq.fiscal_calendar( id )
8499         DEFERRABLE INITIALLY DEFERRED
8500         DEFAULT 1;
8501
8502 ALTER TABLE auditor.actor_org_unit_history
8503         ADD COLUMN fiscal_calendar INT;
8504
8505 ALTER TABLE acq.funding_source_credit
8506 ADD COLUMN deadline_date TIMESTAMPTZ;
8507
8508 ALTER TABLE acq.funding_source_credit
8509 ADD COLUMN effective_date TIMESTAMPTZ NOT NULL DEFAULT now();
8510
8511 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS','Patron has been referred to a collections agency');
8512
8513 CREATE TABLE acq.fund_transfer (
8514         id               SERIAL         PRIMARY KEY,
8515         src_fund         INT            NOT NULL REFERENCES acq.fund( id )
8516                                         DEFERRABLE INITIALLY DEFERRED,
8517         src_amount       NUMERIC        NOT NULL,
8518         dest_fund        INT            REFERENCES acq.fund( id )
8519                                         DEFERRABLE INITIALLY DEFERRED,
8520         dest_amount      NUMERIC,
8521         transfer_time    TIMESTAMPTZ    NOT NULL DEFAULT now(),
8522         transfer_user    INT            NOT NULL REFERENCES actor.usr( id )
8523                                         DEFERRABLE INITIALLY DEFERRED,
8524         note             TEXT,
8525     funding_source_credit INTEGER   NOT NULL
8526                                         REFERENCES acq.funding_source_credit(id)
8527                                         DEFERRABLE INITIALLY DEFERRED
8528 );
8529
8530 CREATE INDEX acqftr_usr_idx
8531 ON acq.fund_transfer( transfer_user );
8532
8533 COMMENT ON TABLE acq.fund_transfer IS $$
8534 /*
8535  * Copyright (C) 2009  Georgia Public Library Service
8536  * Scott McKellar <scott@esilibrary.com>
8537  *
8538  * Fund Transfer
8539  *
8540  * Each row represents the transfer of money from a source fund
8541  * to a destination fund.  There should be corresponding entries
8542  * in acq.fund_allocation.  The purpose of acq.fund_transfer is
8543  * to record how much money moved from which fund to which other
8544  * fund.
8545  * 
8546  * The presence of two amount fields, rather than one, reflects
8547  * the possibility that the two funds are denominated in different
8548  * currencies.  If they use the same currency type, the two
8549  * amounts should be the same.
8550  *
8551  * ****
8552  *
8553  * This program is free software; you can redistribute it and/or
8554  * modify it under the terms of the GNU General Public License
8555  * as published by the Free Software Foundation; either version 2
8556  * of the License, or (at your option) any later version.
8557  *
8558  * This program is distributed in the hope that it will be useful,
8559  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8560  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8561  * GNU General Public License for more details.
8562  */
8563 $$;
8564
8565 CREATE TABLE acq.claim_event_type (
8566         id             SERIAL           PRIMARY KEY,
8567         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8568                                                  DEFERRABLE INITIALLY DEFERRED,
8569         code           TEXT             NOT NULL,
8570         description    TEXT             NOT NULL,
8571         library_initiated BOOL          NOT NULL DEFAULT FALSE,
8572         CONSTRAINT event_type_once_per_org UNIQUE ( org_unit, code )
8573 );
8574
8575 CREATE TABLE acq.claim_event (
8576         id             BIGSERIAL        PRIMARY KEY,
8577         type           INT              NOT NULL REFERENCES acq.claim_event_type
8578                                                  DEFERRABLE INITIALLY DEFERRED,
8579         claim          SERIAL           NOT NULL REFERENCES acq.claim
8580                                                  DEFERRABLE INITIALLY DEFERRED,
8581         event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
8582         creator        INT              NOT NULL REFERENCES actor.usr
8583                                                  DEFERRABLE INITIALLY DEFERRED,
8584         note           TEXT
8585 );
8586
8587 CREATE INDEX claim_event_claim_date_idx ON acq.claim_event( claim, event_date );
8588
8589 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
8590         src_usr  IN INTEGER,
8591         dest_usr IN INTEGER
8592 ) RETURNS VOID AS $$
8593 DECLARE
8594         suffix TEXT;
8595         renamable_row RECORD;
8596 BEGIN
8597
8598         UPDATE actor.usr SET
8599                 active = FALSE,
8600                 card = NULL,
8601                 mailing_address = NULL,
8602                 billing_address = NULL
8603         WHERE id = src_usr;
8604
8605         -- acq.*
8606         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
8607         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
8608         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
8609         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
8610         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
8611         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
8612         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
8613
8614         -- Update with a rename to avoid collisions
8615         FOR renamable_row in
8616                 SELECT id, name
8617                 FROM   acq.picklist
8618                 WHERE  owner = src_usr
8619         LOOP
8620                 suffix := ' (' || src_usr || ')';
8621                 LOOP
8622                         BEGIN
8623                                 UPDATE  acq.picklist
8624                                 SET     owner = dest_usr, name = name || suffix
8625                                 WHERE   id = renamable_row.id;
8626                         EXCEPTION WHEN unique_violation THEN
8627                                 suffix := suffix || ' ';
8628                                 CONTINUE;
8629                         END;
8630                         EXIT;
8631                 END LOOP;
8632         END LOOP;
8633
8634         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
8635         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
8636         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
8637         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
8638         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
8639         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
8640         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
8641         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
8642
8643         -- action.*
8644         DELETE FROM action.circulation WHERE usr = src_usr;
8645         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
8646         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
8647         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
8648         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
8649         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
8650         DELETE FROM action.hold_request WHERE usr = src_usr;
8651         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
8652         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
8653         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
8654         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
8655         DELETE FROM action.survey_response WHERE usr = src_usr;
8656         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
8657
8658         -- actor.*
8659         DELETE FROM actor.card WHERE usr = src_usr;
8660         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
8661
8662         -- The following update is intended to avoid transient violations of a foreign
8663         -- key constraint, whereby actor.usr_address references itself.  It may not be
8664         -- necessary, but it does no harm.
8665         UPDATE actor.usr_address SET replaces = NULL
8666                 WHERE usr = src_usr AND replaces IS NOT NULL;
8667         DELETE FROM actor.usr_address WHERE usr = src_usr;
8668         DELETE FROM actor.usr_note WHERE usr = src_usr;
8669         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
8670         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
8671         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
8672         DELETE FROM actor.usr_setting WHERE usr = src_usr;
8673         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
8674         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
8675
8676         -- asset.*
8677         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
8678         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
8679         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
8680         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
8681         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
8682         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
8683
8684         -- auditor.*
8685         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
8686         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
8687         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
8688         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
8689         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
8690         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
8691         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
8692         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
8693
8694         -- biblio.*
8695         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
8696         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
8697         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
8698         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
8699
8700         -- container.*
8701         -- Update buckets with a rename to avoid collisions
8702         FOR renamable_row in
8703                 SELECT id, name
8704                 FROM   container.biblio_record_entry_bucket
8705                 WHERE  owner = src_usr
8706         LOOP
8707                 suffix := ' (' || src_usr || ')';
8708                 LOOP
8709                         BEGIN
8710                                 UPDATE  container.biblio_record_entry_bucket
8711                                 SET     owner = dest_usr, name = name || suffix
8712                                 WHERE   id = renamable_row.id;
8713                         EXCEPTION WHEN unique_violation THEN
8714                                 suffix := suffix || ' ';
8715                                 CONTINUE;
8716                         END;
8717                         EXIT;
8718                 END LOOP;
8719         END LOOP;
8720
8721         FOR renamable_row in
8722                 SELECT id, name
8723                 FROM   container.call_number_bucket
8724                 WHERE  owner = src_usr
8725         LOOP
8726                 suffix := ' (' || src_usr || ')';
8727                 LOOP
8728                         BEGIN
8729                                 UPDATE  container.call_number_bucket
8730                                 SET     owner = dest_usr, name = name || suffix
8731                                 WHERE   id = renamable_row.id;
8732                         EXCEPTION WHEN unique_violation THEN
8733                                 suffix := suffix || ' ';
8734                                 CONTINUE;
8735                         END;
8736                         EXIT;
8737                 END LOOP;
8738         END LOOP;
8739
8740         FOR renamable_row in
8741                 SELECT id, name
8742                 FROM   container.copy_bucket
8743                 WHERE  owner = src_usr
8744         LOOP
8745                 suffix := ' (' || src_usr || ')';
8746                 LOOP
8747                         BEGIN
8748                                 UPDATE  container.copy_bucket
8749                                 SET     owner = dest_usr, name = name || suffix
8750                                 WHERE   id = renamable_row.id;
8751                         EXCEPTION WHEN unique_violation THEN
8752                                 suffix := suffix || ' ';
8753                                 CONTINUE;
8754                         END;
8755                         EXIT;
8756                 END LOOP;
8757         END LOOP;
8758
8759         FOR renamable_row in
8760                 SELECT id, name
8761                 FROM   container.user_bucket
8762                 WHERE  owner = src_usr
8763         LOOP
8764                 suffix := ' (' || src_usr || ')';
8765                 LOOP
8766                         BEGIN
8767                                 UPDATE  container.user_bucket
8768                                 SET     owner = dest_usr, name = name || suffix
8769                                 WHERE   id = renamable_row.id;
8770                         EXCEPTION WHEN unique_violation THEN
8771                                 suffix := suffix || ' ';
8772                                 CONTINUE;
8773                         END;
8774                         EXIT;
8775                 END LOOP;
8776         END LOOP;
8777
8778         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
8779
8780         -- money.*
8781         DELETE FROM money.billable_xact WHERE usr = src_usr;
8782         DELETE FROM money.collections_tracker WHERE usr = src_usr;
8783         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
8784
8785         -- permission.*
8786         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
8787         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
8788         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
8789         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
8790
8791         -- reporter.*
8792         -- Update with a rename to avoid collisions
8793         BEGIN
8794                 FOR renamable_row in
8795                         SELECT id, name
8796                         FROM   reporter.output_folder
8797                         WHERE  owner = src_usr
8798                 LOOP
8799                         suffix := ' (' || src_usr || ')';
8800                         LOOP
8801                                 BEGIN
8802                                         UPDATE  reporter.output_folder
8803                                         SET     owner = dest_usr, name = name || suffix
8804                                         WHERE   id = renamable_row.id;
8805                                 EXCEPTION WHEN unique_violation THEN
8806                                         suffix := suffix || ' ';
8807                                         CONTINUE;
8808                                 END;
8809                                 EXIT;
8810                         END LOOP;
8811                 END LOOP;
8812         EXCEPTION WHEN undefined_table THEN
8813                 -- do nothing
8814         END;
8815
8816         BEGIN
8817                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
8818         EXCEPTION WHEN undefined_table THEN
8819                 -- do nothing
8820         END;
8821
8822         -- Update with a rename to avoid collisions
8823         BEGIN
8824                 FOR renamable_row in
8825                         SELECT id, name
8826                         FROM   reporter.report_folder
8827                         WHERE  owner = src_usr
8828                 LOOP
8829                         suffix := ' (' || src_usr || ')';
8830                         LOOP
8831                                 BEGIN
8832                                         UPDATE  reporter.report_folder
8833                                         SET     owner = dest_usr, name = name || suffix
8834                                         WHERE   id = renamable_row.id;
8835                                 EXCEPTION WHEN unique_violation THEN
8836                                         suffix := suffix || ' ';
8837                                         CONTINUE;
8838                                 END;
8839                                 EXIT;
8840                         END LOOP;
8841                 END LOOP;
8842         EXCEPTION WHEN undefined_table THEN
8843                 -- do nothing
8844         END;
8845
8846         BEGIN
8847                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
8848         EXCEPTION WHEN undefined_table THEN
8849                 -- do nothing
8850         END;
8851
8852         BEGIN
8853                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
8854         EXCEPTION WHEN undefined_table THEN
8855                 -- do nothing
8856         END;
8857
8858         -- Update with a rename to avoid collisions
8859         BEGIN
8860                 FOR renamable_row in
8861                         SELECT id, name
8862                         FROM   reporter.template_folder
8863                         WHERE  owner = src_usr
8864                 LOOP
8865                         suffix := ' (' || src_usr || ')';
8866                         LOOP
8867                                 BEGIN
8868                                         UPDATE  reporter.template_folder
8869                                         SET     owner = dest_usr, name = name || suffix
8870                                         WHERE   id = renamable_row.id;
8871                                 EXCEPTION WHEN unique_violation THEN
8872                                         suffix := suffix || ' ';
8873                                         CONTINUE;
8874                                 END;
8875                                 EXIT;
8876                         END LOOP;
8877                 END LOOP;
8878         EXCEPTION WHEN undefined_table THEN
8879         -- do nothing
8880         END;
8881
8882         -- vandelay.*
8883         -- Update with a rename to avoid collisions
8884         FOR renamable_row in
8885                 SELECT id, name
8886                 FROM   vandelay.queue
8887                 WHERE  owner = src_usr
8888         LOOP
8889                 suffix := ' (' || src_usr || ')';
8890                 LOOP
8891                         BEGIN
8892                                 UPDATE  vandelay.queue
8893                                 SET     owner = dest_usr, name = name || suffix
8894                                 WHERE   id = renamable_row.id;
8895                         EXCEPTION WHEN unique_violation THEN
8896                                 suffix := suffix || ' ';
8897                                 CONTINUE;
8898                         END;
8899                         EXIT;
8900                 END LOOP;
8901         END LOOP;
8902
8903 END;
8904 $$ LANGUAGE plpgsql;
8905
8906 -- INSERT INTO config.copy_status (id,name) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'));
8907
8908 ALTER TABLE acq.fund
8909 ADD COLUMN rollover BOOL NOT NULL DEFAULT FALSE;
8910
8911 ALTER TABLE acq.fund
8912         ADD COLUMN propagate BOOLEAN NOT NULL DEFAULT TRUE;
8913
8914 -- A fund can't roll over if it doesn't propagate from one year to the next
8915
8916 ALTER TABLE acq.fund
8917         ADD CONSTRAINT acq_fund_rollover_implies_propagate CHECK
8918         ( propagate OR NOT rollover );
8919
8920 ALTER TABLE acq.fund
8921         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
8922
8923 ALTER TABLE acq.fund
8924     ADD COLUMN balance_warning_percent INT
8925     CONSTRAINT balance_warning_percent_limit
8926         CHECK( balance_warning_percent <= 100 );
8927
8928 ALTER TABLE acq.fund
8929     ADD COLUMN balance_stop_percent INT
8930     CONSTRAINT balance_stop_percent_limit
8931         CHECK( balance_stop_percent <= 100 );
8932
8933 CREATE VIEW acq.ordered_funding_source_credit AS
8934         SELECT
8935                 CASE WHEN deadline_date IS NULL THEN
8936                         2
8937                 ELSE
8938                         1
8939                 END AS sort_priority,
8940                 CASE WHEN deadline_date IS NULL THEN
8941                         effective_date
8942                 ELSE
8943                         deadline_date
8944                 END AS sort_date,
8945                 id,
8946                 funding_source,
8947                 amount,
8948                 note
8949         FROM
8950                 acq.funding_source_credit;
8951
8952 COMMENT ON VIEW acq.ordered_funding_source_credit IS $$
8953 /*
8954  * Copyright (C) 2009  Georgia Public Library Service
8955  * Scott McKellar <scott@gmail.com>
8956  *
8957  * The acq.ordered_funding_source_credit view is a prioritized
8958  * ordering of funding source credits.  When ordered by the first
8959  * three columns, this view defines the order in which the various
8960  * credits are to be tapped for spending, subject to the allocations
8961  * in the acq.fund_allocation table.
8962  *
8963  * The first column reflects the principle that we should spend
8964  * money with deadlines before spending money without deadlines.
8965  *
8966  * The second column reflects the principle that we should spend the
8967  * oldest money first.  For money with deadlines, that means that we
8968  * spend first from the credit with the earliest deadline.  For
8969  * money without deadlines, we spend first from the credit with the
8970  * earliest effective date.  
8971  *
8972  * The third column is a tie breaker to ensure a consistent
8973  * ordering.
8974  *
8975  * ****
8976  *
8977  * This program is free software; you can redistribute it and/or
8978  * modify it under the terms of the GNU General Public License
8979  * as published by the Free Software Foundation; either version 2
8980  * of the License, or (at your option) any later version.
8981  *
8982  * This program is distributed in the hope that it will be useful,
8983  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8984  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8985  * GNU General Public License for more details.
8986  */
8987 $$;
8988
8989 CREATE OR REPLACE VIEW money.billable_xact_summary_location_view AS
8990     SELECT  m.*, COALESCE(c.circ_lib, g.billing_location, r.pickup_lib) AS billing_location
8991       FROM  money.materialized_billable_xact_summary m
8992             LEFT JOIN action.circulation c ON (c.id = m.id)
8993             LEFT JOIN money.grocery g ON (g.id = m.id)
8994             LEFT JOIN booking.reservation r ON (r.id = m.id);
8995
8996 CREATE TABLE config.marc21_rec_type_map (
8997     code        TEXT    PRIMARY KEY,
8998     type_val    TEXT    NOT NULL,
8999     blvl_val    TEXT    NOT NULL
9000 );
9001
9002 CREATE TABLE config.marc21_ff_pos_map (
9003     id          SERIAL  PRIMARY KEY,
9004     fixed_field TEXT    NOT NULL,
9005     tag         TEXT    NOT NULL,
9006     rec_type    TEXT    NOT NULL,
9007     start_pos   INT     NOT NULL,
9008     length      INT     NOT NULL,
9009     default_val TEXT    NOT NULL DEFAULT ' '
9010 );
9011
9012 CREATE TABLE config.marc21_physical_characteristic_type_map (
9013     ptype_key   TEXT    PRIMARY KEY,
9014     label       TEXT    NOT NULL -- I18N
9015 );
9016
9017 CREATE TABLE config.marc21_physical_characteristic_subfield_map (
9018     id          SERIAL  PRIMARY KEY,
9019     ptype_key   TEXT    NOT NULL REFERENCES config.marc21_physical_characteristic_type_map (ptype_key) ON DELETE CASCADE ON UPDATE CASCADE,
9020     subfield    TEXT    NOT NULL,
9021     start_pos   INT     NOT NULL,
9022     length      INT     NOT NULL,
9023     label       TEXT    NOT NULL -- I18N
9024 );
9025
9026 CREATE TABLE config.marc21_physical_characteristic_value_map (
9027     id              SERIAL  PRIMARY KEY,
9028     value           TEXT    NOT NULL,
9029     ptype_subfield  INT     NOT NULL REFERENCES config.marc21_physical_characteristic_subfield_map (id),
9030     label           TEXT    NOT NULL -- I18N
9031 );
9032
9033 ----------------------------------
9034 -- MARC21 record structure data --
9035 ----------------------------------
9036
9037 -- Record type map
9038 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm');
9039 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi');
9040 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi');
9041 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi');
9042 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi');
9043 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi');
9044 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi');
9045 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi');
9046
9047 ------ Physical Characteristics
9048
9049 -- Map
9050 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map');
9051 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD');
9052 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas');
9053 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram');
9054 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map');
9055 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile');
9056 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model');
9057 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');
9058 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section');
9059 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9060 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View');
9061 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9062 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color');
9063 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');
9064 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9065 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium');
9066 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9067 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9068 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9069 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9070 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9071 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9072 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9073 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9074 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');
9075 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');
9076 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');
9077 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');
9078 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9079 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');
9080 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9081 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction');
9082 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9083 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');
9084 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9085 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9086 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','g','6','1','Production/reproduction details');
9087 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');
9088 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy');
9089 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');
9090 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film');
9091 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9092 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9093 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative');
9094 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9095 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9096 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9097 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');
9098
9099 -- Electronic Resource
9100 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource');
9101 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD');
9102 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');
9103 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');
9104 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');
9105 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');
9106 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');
9107 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');
9108 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');
9109 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');
9110 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote');
9111 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9112 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9113 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color');
9114 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');
9115 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');
9116 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9117 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Gray scale');
9118 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9119 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');
9120 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9121 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9122 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions');
9123 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.');
9124 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.');
9125 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.');
9126 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.');
9127 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.');
9128 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');
9129 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.');
9130 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9131 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 in.');
9132 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9133 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','f','5','1','Sound');
9134 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)');
9135 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound');
9136 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9137 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth');
9138 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9139 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple');
9140 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');
9141 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats');
9142 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');
9143 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');
9144 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9145 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)');
9146 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent');
9147 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');
9148 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present');
9149 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9150 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source');
9151 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');
9152 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');
9153 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');
9154 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)');
9155 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9156 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');
9157 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9158 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','k','12','1','Level of compression');
9159 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed');
9160 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless');
9161 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy');
9162 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9163 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9164 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality');
9165 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access');
9166 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');
9167 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation');
9168 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement');
9169 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9170
9171 -- Globe
9172 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe');
9173 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD');
9174 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');
9175 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');
9176 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');
9177 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');
9178 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9179 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9180 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','d','3','1','Color');
9181 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');
9182 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9183 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium');
9184 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9185 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9186 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9187 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9188 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9189 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9190 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9191 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9192 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9193 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9194 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction');
9195 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9196 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');
9197 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9198 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9199
9200 -- Tactile Material
9201 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material');
9202 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD');
9203 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon');
9204 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Braille');
9205 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9206 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');
9207 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9208 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9209 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing');
9210 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');
9211 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');
9212 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');
9213 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');
9214 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');
9215 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');
9216 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');
9217 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9218 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9219 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','e','4','1','Level of contraction');
9220 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted');
9221 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted');
9222 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9223 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');
9224 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9225 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9226 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format');
9227 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');
9228 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');
9229 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');
9230 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph');
9231 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');
9232 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');
9233 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');
9234 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');
9235 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');
9236 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');
9237 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline');
9238 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');
9239 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');
9240 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9241 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9242 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics');
9243 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');
9244 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');
9245 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');
9246 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9247 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9248
9249 -- Projected Graphic
9250 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic');
9251 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD');
9252 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');
9253 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip');
9254 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');
9255 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');
9256 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide');
9257 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency');
9258 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9259 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color');
9260 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');
9261 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9262 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');
9263 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9264 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');
9265 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9266 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9267 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion');
9268 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9269 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9270 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');
9271 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');
9272 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');
9273 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9274 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9275 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9276 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');
9277 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');
9278 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');
9279 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9280 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound');
9281 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');
9282 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');
9283 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');
9284 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');
9285 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');
9286 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');
9287 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');
9288 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9289 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9290 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9291 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9292 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions');
9293 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.');
9294 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.');
9295 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.');
9296 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.');
9297 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.');
9298 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.');
9299 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.');
9300 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.)');
9301 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.)');
9302 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.)');
9303 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.)');
9304 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9305 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.)');
9306 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.)');
9307 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.)');
9308 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.)');
9309 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9310 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','i','8','1','Secondary support material');
9311 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard');
9312 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9313 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9314 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal');
9315 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');
9316 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');
9317 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');
9318 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9319 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9320
9321 -- Microform
9322 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform');
9323 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD');
9324 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');
9325 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');
9326 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');
9327 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');
9328 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche');
9329 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');
9330 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque');
9331 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9332 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9333 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','d','3','1','Positive/negative');
9334 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9335 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9336 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9337 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9338 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions');
9339 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.');
9340 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.');
9341 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.');
9342 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.');
9343 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.');
9344 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.)');
9345 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.)');
9346 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.)');
9347 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.)');
9348 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9349 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9350 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');
9351 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)');
9352 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)');
9353 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)');
9354 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)');
9355 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-)');
9356 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9357 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Reduction ratio varies');
9358 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color');
9359 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');
9360 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9361 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9362 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9363 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9364 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film');
9365 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');
9366 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo');
9367 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular');
9368 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9369 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');
9370 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9371 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9372 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)');
9373 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');
9374 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');
9375 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');
9376 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');
9377 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9378 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film');
9379 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');
9380 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');
9381 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');
9382 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');
9383 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');
9384 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');
9385 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');
9386 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');
9387 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');
9388 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9389 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9390
9391 -- Non-projected Graphic
9392 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic');
9393 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD');
9394 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage');
9395 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing');
9396 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting');
9397 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');
9398 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative');
9399 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint');
9400 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture');
9401 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print');
9402 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');
9403 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart');
9404 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');
9405 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9406 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9407 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color');
9408 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');
9409 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');
9410 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9411 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');
9412 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9413 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9414 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9415 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material');
9416 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9417 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');
9418 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');
9419 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9420 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9421 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9422 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9423 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9424 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');
9425 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9426 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9427 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9428 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9429 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9430 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9431 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
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 ('k','f','5','1','Secondary support material');
9434 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9435 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');
9436 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');
9437 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9438 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9439 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9440 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9441 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9442 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');
9443 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9444 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9445 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9446 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9447 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9448 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9449 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9450 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9451
9452 -- Motion Picture
9453 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture');
9454 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD');
9455 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');
9456 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');
9457 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');
9458 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9459 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9460 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','d','3','1','Color');
9461 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Black-and-white');
9462 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9463 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hand-colored');
9464 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9465 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9466 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9467 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format');
9468 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');
9469 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)');
9470 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D');
9471 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)');
9472 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');
9473 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');
9474 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9475 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9476 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');
9477 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');
9478 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');
9479 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9480 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound');
9481 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');
9482 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');
9483 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');
9484 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');
9485 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');
9486 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');
9487 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');
9488 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9489 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9490 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9491 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9492 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions');
9493 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.');
9494 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.');
9495 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.');
9496 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.');
9497 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.');
9498 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.');
9499 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.');
9500 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9501 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9502 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','i','8','1','Configuration of playback channels');
9503 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9504 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9505 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');
9506 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');
9507 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9508 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9509 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9510 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','j','9','1','Production elements');
9511 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');
9512 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims');
9513 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes');
9514 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes');
9515 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');
9516 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');
9517 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');
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 ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9520
9521 -- Remote-sensing Image
9522 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image');
9523 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD');
9524 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9525 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude of sensor');
9526 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface');
9527 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne');
9528 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne');
9529 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');
9530 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
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 ('r','e','4','1','Attitude of sensor');
9533 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');
9534 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');
9535 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical');
9536 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');
9537 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9538 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover');
9539 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%');
9540 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%');
9541 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%');
9542 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%');
9543 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%');
9544 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%');
9545 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%');
9546 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%');
9547 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%');
9548 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%');
9549 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');
9550 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9551 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type');
9552 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon');
9553 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');
9554 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');
9555 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');
9556 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');
9557 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');
9558 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');
9559 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');
9560 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');
9561 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');
9562 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9563 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9564 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category');
9565 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological');
9566 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');
9567 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');
9568 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');
9569 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');
9570 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9571 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9572 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type');
9573 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active');
9574 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive');
9575 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9576 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9577 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type');
9578 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');
9579 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');
9580 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');
9581 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');
9582 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');
9583 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)');
9584 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');
9585 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations');
9586 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');
9587 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)');
9588 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)');
9589 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)');
9590 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');
9591 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');
9592 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');
9593 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');
9594 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');
9595 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');
9596 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');
9597 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');
9598 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');
9599 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');
9600 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');
9601 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');
9602 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');
9603 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');
9604 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');
9605 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');
9606 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');
9607 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');
9608 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');
9609 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');
9610 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');
9611 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)');
9612 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');
9613 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger');
9614 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic');
9615 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');
9616 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');
9617 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9618 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9619
9620 -- Sound Recording
9621 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording');
9622 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD');
9623 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');
9624 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder');
9625 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');
9626 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');
9627 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll');
9628 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');
9629 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');
9630 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9631 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');
9632 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9633 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed');
9634 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');
9635 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');
9636 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');
9637 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');
9638 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');
9639 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');
9640 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');
9641 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');
9642 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');
9643 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');
9644 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');
9645 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');
9646 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');
9647 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');
9648 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9649 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9650 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','e','4','1','Configuration of playback channels');
9651 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9652 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic');
9653 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9654 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9655 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9656 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','f','5','1','Groove width or pitch');
9657 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');
9658 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');
9659 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');
9660 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
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 ('s','g','6','1','Dimensions');
9663 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.');
9664 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.');
9665 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.');
9666 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.');
9667 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.');
9668 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.');
9669 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.)');
9670 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.');
9671 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');
9672 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.');
9673 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.');
9674 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9675 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9676 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width');
9677 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.');
9678 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.');
9679 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');
9680 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.');
9681 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.');
9682 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9683 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9684 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration ');
9685 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');
9686 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');
9687 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');
9688 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');
9689 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');
9690 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');
9691 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');
9692 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9693 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9694 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback');
9695 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');
9696 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');
9697 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');
9698 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');
9699 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');
9700 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');
9701 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');
9702 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');
9703 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');
9704 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9705 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9706 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage');
9707 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');
9708 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');
9709 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');
9710 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');
9711 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9712 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9713
9714 -- Videorecording
9715 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording');
9716 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD');
9717 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge');
9718 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9719 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette');
9720 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel');
9721 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9722 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9723 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','d','3','1','Color');
9724 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');
9725 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9726 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9727 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');
9728 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9729 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9730 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format');
9731 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta');
9732 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS');
9733 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');
9734 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ');
9735 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');
9736 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex');
9737 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc');
9738 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED');
9739 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam');
9740 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');
9741 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');
9742 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');
9743 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');
9744 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.');
9745 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.');
9746 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9747 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD');
9748 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9749 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');
9750 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');
9751 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');
9752 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9753 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound');
9754 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');
9755 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');
9756 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');
9757 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');
9758 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');
9759 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');
9760 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');
9761 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9762 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9763 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9764 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9765 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions');
9766 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.');
9767 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.');
9768 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.');
9769 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.');
9770 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.');
9771 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.');
9772 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9773 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9774 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel');
9775 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9776 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9777 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');
9778 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');
9779 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9780 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9781 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9782
9783 -- Fixed Field position data -- 0-based!
9784 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' ');
9785 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' ');
9786 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' ');
9787 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' ');
9788 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' ');
9789 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' ');
9790 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SER', 5, 1, ' ');
9791 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' ');
9792 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' ');
9793 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' ');
9794 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' ');
9795 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' ');
9796 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SER', 22, 1, ' ');
9797 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' ');
9798 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm');
9799 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm');
9800 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm');
9801 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c');
9802 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm');
9803 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm');
9804 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's');
9805 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm');
9806 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' ');
9807 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' ');
9808 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 7, 4, ' ');
9809 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 8, 3, ' ');
9810 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 24, 4, ' ');
9811 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 25, 3, ' ');
9812 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' ');
9813 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' ');
9814 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' ');
9815 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' ');
9816 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' ');
9817 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' ');
9818 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' ');
9819 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' ');
9820 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' ');
9821 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' ');
9822 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' ');
9823 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' ');
9824 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' ');
9825 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' ');
9826 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' ');
9827 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' ');
9828 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' ');
9829 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' ');
9830 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' ');
9831 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' ');
9832 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' ');
9833 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' ');
9834 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' ');
9835 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' ');
9836 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' ');
9837 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' ');
9838 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' ');
9839 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' ');
9840 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' ');
9841 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' ');
9842 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9');
9843 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' ');
9844 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' ');
9845 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' ');
9846 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' ');
9847 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' ');
9848 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' ');
9849 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' ');
9850 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' ');
9851 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' ');
9852 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' ');
9853 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' ');
9854 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' ');
9855 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' ');
9856 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' ');
9857 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' ');
9858 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c');
9859 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' ');
9860 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' ');
9861 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' ');
9862 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' ');
9863 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' ');
9864 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' ');
9865 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' ');
9866 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' ');
9867 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' ');
9868 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0');
9869 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0');
9870 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' ');
9871 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' ');
9872 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' ');
9873 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' ');
9874 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' ');
9875 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' ');
9876 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' ');
9877 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' ');
9878 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' ');
9879 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' ');
9880 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' ');
9881 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' ');
9882 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' ');
9883 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' ');
9884 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' ');
9885 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' ');
9886 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' ');
9887 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' ');
9888 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' ');
9889 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' ');
9890 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' ');
9891 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' ');
9892 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' ');
9893 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' ');
9894 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' ');
9895 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' ');
9896 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0');
9897 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0');
9898 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0');
9899 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0');
9900 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' ');
9901 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' ');
9902 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' ');
9903 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' ');
9904 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' ');
9905 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' ');
9906 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' ');
9907 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' ');
9908 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0');
9909 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0');
9910 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' ');
9911 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' ');
9912 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' ');
9913 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' ');
9914 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' ');
9915 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' ');
9916 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' ');
9917 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' ');
9918 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');
9919 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');
9920 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' ');
9921 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' ');
9922 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a');
9923 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm');
9924 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e');
9925 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p');
9926 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i');
9927 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c');
9928 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a');
9929 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g');
9930
9931 CREATE OR REPLACE FUNCTION biblio.marc21_record_type( rid BIGINT ) RETURNS config.marc21_rec_type_map AS $func$
9932 DECLARE
9933         ldr         RECORD;
9934         tval        TEXT;
9935         tval_rec    RECORD;
9936         bval        TEXT;
9937         bval_rec    RECORD;
9938     retval      config.marc21_rec_type_map%ROWTYPE;
9939 BEGIN
9940     SELECT * INTO ldr FROM metabib.full_rec WHERE record = rid AND tag = 'LDR' LIMIT 1;
9941
9942     IF ldr.id IS NULL THEN
9943         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
9944         RETURN retval;
9945     END IF;
9946
9947     SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
9948     SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
9949
9950
9951     tval := SUBSTRING( ldr.value, tval_rec.start_pos + 1, tval_rec.length );
9952     bval := SUBSTRING( ldr.value, bval_rec.start_pos + 1, bval_rec.length );
9953
9954     -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr.value;
9955
9956     SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
9957
9958
9959     IF retval.code IS NULL THEN
9960         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
9961     END IF;
9962
9963     RETURN retval;
9964 END;
9965 $func$ LANGUAGE PLPGSQL;
9966
9967 CREATE OR REPLACE FUNCTION biblio.marc21_extract_fixed_field( rid BIGINT, ff TEXT ) RETURNS TEXT AS $func$
9968 DECLARE
9969     rtype       TEXT;
9970     ff_pos      RECORD;
9971     tag_data    RECORD;
9972     val         TEXT;
9973 BEGIN
9974     rtype := (biblio.marc21_record_type( rid )).code;
9975     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP
9976         FOR tag_data IN SELECT * FROM metabib.full_rec WHERE tag = UPPER(ff_pos.tag) AND record = rid LOOP
9977             val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
9978             RETURN val;
9979         END LOOP;
9980         val := REPEAT( ff_pos.default_val, ff_pos.length );
9981         RETURN val;
9982     END LOOP;
9983
9984     RETURN NULL;
9985 END;
9986 $func$ LANGUAGE PLPGSQL;
9987
9988 CREATE TYPE biblio.marc21_physical_characteristics AS ( id INT, record BIGINT, ptype TEXT, subfield INT, value INT );
9989 CREATE OR REPLACE FUNCTION biblio.marc21_physical_characteristics( rid BIGINT ) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
9990 DECLARE
9991     rowid   INT := 0;
9992     _007    RECORD;
9993     ptype   config.marc21_physical_characteristic_type_map%ROWTYPE;
9994     psf     config.marc21_physical_characteristic_subfield_map%ROWTYPE;
9995     pval    config.marc21_physical_characteristic_value_map%ROWTYPE;
9996     retval  biblio.marc21_physical_characteristics%ROWTYPE;
9997 BEGIN
9998
9999     SELECT * INTO _007 FROM metabib.full_rec WHERE record = rid AND tag = '007' LIMIT 1;
10000
10001     IF _007.id IS NOT NULL THEN
10002         SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007.value, 1, 1 );
10003
10004         IF ptype.ptype_key IS NOT NULL THEN
10005             FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP
10006                 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 );
10007
10008                 IF pval.id IS NOT NULL THEN
10009                     rowid := rowid + 1;
10010                     retval.id := rowid;
10011                     retval.record := rid;
10012                     retval.ptype := ptype.ptype_key;
10013                     retval.subfield := psf.id;
10014                     retval.value := pval.id;
10015                     RETURN NEXT retval;
10016                 END IF;
10017
10018             END LOOP;
10019         END IF;
10020     END IF;
10021
10022     RETURN;
10023 END;
10024 $func$ LANGUAGE PLPGSQL;
10025
10026 DROP VIEW IF EXISTS money.open_usr_circulation_summary;
10027 DROP VIEW IF EXISTS money.open_usr_summary;
10028 DROP VIEW IF EXISTS money.open_billable_xact_summary;
10029
10030 -- The view should supply defaults for numeric (amount) columns
10031 CREATE OR REPLACE VIEW money.billable_xact_summary AS
10032     SELECT  xact.id,
10033         xact.usr,
10034         xact.xact_start,
10035         xact.xact_finish,
10036         COALESCE(credit.amount, 0.0::numeric) AS total_paid,
10037         credit.payment_ts AS last_payment_ts,
10038         credit.note AS last_payment_note,
10039         credit.payment_type AS last_payment_type,
10040         COALESCE(debit.amount, 0.0::numeric) AS total_owed,
10041         debit.billing_ts AS last_billing_ts,
10042         debit.note AS last_billing_note,
10043         debit.billing_type AS last_billing_type,
10044         COALESCE(debit.amount, 0.0::numeric) - COALESCE(credit.amount, 0.0::numeric) AS balance_owed,
10045         p.relname AS xact_type
10046       FROM  money.billable_xact xact
10047         JOIN pg_class p ON xact.tableoid = p.oid
10048         LEFT JOIN (
10049             SELECT  billing.xact,
10050                 sum(billing.amount) AS amount,
10051                 max(billing.billing_ts) AS billing_ts,
10052                 last(billing.note) AS note,
10053                 last(billing.billing_type) AS billing_type
10054               FROM  money.billing
10055               WHERE billing.voided IS FALSE
10056               GROUP BY billing.xact
10057             ) debit ON xact.id = debit.xact
10058         LEFT JOIN (
10059             SELECT  payment_view.xact,
10060                 sum(payment_view.amount) AS amount,
10061                 max(payment_view.payment_ts) AS payment_ts,
10062                 last(payment_view.note) AS note,
10063                 last(payment_view.payment_type) AS payment_type
10064               FROM  money.payment_view
10065               WHERE payment_view.voided IS FALSE
10066               GROUP BY payment_view.xact
10067             ) credit ON xact.id = credit.xact
10068       ORDER BY debit.billing_ts, credit.payment_ts;
10069
10070 CREATE OR REPLACE VIEW money.open_billable_xact_summary AS 
10071     SELECT * FROM money.billable_xact_summary_location_view
10072     WHERE xact_finish IS NULL;
10073
10074 CREATE OR REPLACE VIEW money.open_usr_circulation_summary AS
10075     SELECT 
10076         usr,
10077         SUM(total_paid) AS total_paid,
10078         SUM(total_owed) AS total_owed,
10079         SUM(balance_owed) AS balance_owed
10080     FROM  money.materialized_billable_xact_summary
10081     WHERE xact_type = 'circulation' AND xact_finish IS NULL
10082     GROUP BY usr;
10083
10084 CREATE OR REPLACE VIEW money.usr_summary AS
10085     SELECT 
10086         usr, 
10087         sum(total_paid) AS total_paid, 
10088         sum(total_owed) AS total_owed, 
10089         sum(balance_owed) AS balance_owed
10090     FROM money.materialized_billable_xact_summary
10091     GROUP BY usr;
10092
10093 CREATE OR REPLACE VIEW money.open_usr_summary AS
10094     SELECT 
10095         usr, 
10096         sum(total_paid) AS total_paid, 
10097         sum(total_owed) AS total_owed, 
10098         sum(balance_owed) AS balance_owed
10099     FROM money.materialized_billable_xact_summary
10100     WHERE xact_finish IS NULL
10101     GROUP BY usr;
10102
10103 -- 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;
10104
10105 CREATE TABLE config.biblio_fingerprint (
10106         id                      SERIAL  PRIMARY KEY,
10107         name            TEXT    NOT NULL, 
10108         xpath           TEXT    NOT NULL,
10109     first_word  BOOL    NOT NULL DEFAULT FALSE,
10110         format          TEXT    NOT NULL DEFAULT 'marcxml'
10111 );
10112
10113 INSERT INTO config.biblio_fingerprint (name, xpath, format)
10114     VALUES (
10115         'Title',
10116         '//marc:datafield[@tag="700"]/marc:subfield[@code="t"]|' ||
10117             '//marc:datafield[@tag="240"]/marc:subfield[@code="a"]|' ||
10118             '//marc:datafield[@tag="242"]/marc:subfield[@code="a"]|' ||
10119             '//marc:datafield[@tag="246"]/marc:subfield[@code="a"]|' ||
10120             '//marc:datafield[@tag="245"]/marc:subfield[@code="a"]',
10121         'marcxml'
10122     );
10123
10124 INSERT INTO config.biblio_fingerprint (name, xpath, format, first_word)
10125     VALUES (
10126         'Author',
10127         '//marc:datafield[@tag="700" and ./*[@code="t"]]/marc:subfield[@code="a"]|'
10128             '//marc:datafield[@tag="100"]/marc:subfield[@code="a"]|'
10129             '//marc:datafield[@tag="110"]/marc:subfield[@code="a"]|'
10130             '//marc:datafield[@tag="111"]/marc:subfield[@code="a"]|'
10131             '//marc:datafield[@tag="260"]/marc:subfield[@code="b"]',
10132         'marcxml',
10133         TRUE
10134     );
10135
10136 CREATE OR REPLACE FUNCTION biblio.extract_quality ( marc TEXT, best_lang TEXT, best_type TEXT ) RETURNS INT AS $func$
10137 DECLARE
10138     qual        INT;
10139     ldr         TEXT;
10140     tval        TEXT;
10141     tval_rec    RECORD;
10142     bval        TEXT;
10143     bval_rec    RECORD;
10144     type_map    RECORD;
10145     ff_pos      RECORD;
10146     ff_tag_data TEXT;
10147 BEGIN
10148
10149     IF marc IS NULL OR marc = '' THEN
10150         RETURN NULL;
10151     END IF;
10152
10153     -- First, the count of tags
10154     qual := ARRAY_UPPER(oils_xpath('*[local-name()="datafield"]', marc), 1);
10155
10156     -- now go through a bunch of pain to get the record type
10157     IF best_type IS NOT NULL THEN
10158         ldr := (oils_xpath('//*[local-name()="leader"]/text()', marc))[1];
10159
10160         IF ldr IS NOT NULL THEN
10161             SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10162             SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10163
10164
10165             tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length );
10166             bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length );
10167
10168             -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr;
10169
10170             SELECT * INTO type_map FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10171
10172             IF type_map.code IS NOT NULL THEN
10173                 IF best_type = type_map.code THEN
10174                     qual := qual + qual / 2;
10175                 END IF;
10176
10177                 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
10178                     ff_tag_data := SUBSTRING((oils_xpath('//*[@tag="' || ff_pos.tag || '"]/text()',marc))[1], ff_pos.start_pos + 1, ff_pos.length);
10179                     IF ff_tag_data = best_lang THEN
10180                             qual := qual + 100;
10181                     END IF;
10182                 END LOOP;
10183             END IF;
10184         END IF;
10185     END IF;
10186
10187     -- Now look for some quality metrics
10188     -- DCL record?
10189     IF ARRAY_UPPER(oils_xpath('//*[@tag="040"]/*[@code="a" and contains(.,"DLC")]', marc), 1) = 1 THEN
10190         qual := qual + 10;
10191     END IF;
10192
10193     -- From OCLC?
10194     IF (oils_xpath('//*[@tag="003"]/text()', marc))[1] ~* E'oclo?c' THEN
10195         qual := qual + 10;
10196     END IF;
10197
10198     RETURN qual;
10199
10200 END;
10201 $func$ LANGUAGE PLPGSQL;
10202
10203 CREATE OR REPLACE FUNCTION biblio.extract_fingerprint ( marc text ) RETURNS TEXT AS $func$
10204 DECLARE
10205     idx     config.biblio_fingerprint%ROWTYPE;
10206     xfrm        config.xml_transform%ROWTYPE;
10207     prev_xfrm   TEXT;
10208     transformed_xml TEXT;
10209     xml_node    TEXT;
10210     xml_node_list   TEXT[];
10211     raw_text    TEXT;
10212     output_text TEXT := '';
10213 BEGIN
10214
10215     IF marc IS NULL OR marc = '' THEN
10216         RETURN NULL;
10217     END IF;
10218
10219     -- Loop over the indexing entries
10220     FOR idx IN SELECT * FROM config.biblio_fingerprint ORDER BY format, id LOOP
10221
10222         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
10223
10224         -- See if we can skip the XSLT ... it's expensive
10225         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
10226             -- Can't skip the transform
10227             IF xfrm.xslt <> '---' THEN
10228                 transformed_xml := oils_xslt_process(marc,xfrm.xslt);
10229             ELSE
10230                 transformed_xml := marc;
10231             END IF;
10232
10233             prev_xfrm := xfrm.name;
10234         END IF;
10235
10236         raw_text := COALESCE(
10237             naco_normalize(
10238                 ARRAY_TO_STRING(
10239                     oils_xpath(
10240                         '//text()',
10241                         (oils_xpath(
10242                             idx.xpath,
10243                             transformed_xml,
10244                             ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]
10245                         ))[1]
10246                     ),
10247                     ''
10248                 )
10249             ),
10250             ''
10251         );
10252
10253         raw_text := REGEXP_REPLACE(raw_text, E'\\[.+?\\]', E'');
10254         raw_text := REGEXP_REPLACE(raw_text, E'\\mthe\\M|\\man?d?d\\M', E'', 'g'); -- arg! the pain!
10255
10256         IF idx.first_word IS TRUE THEN
10257             raw_text := REGEXP_REPLACE(raw_text, E'^(\\w+).*?$', E'\\1');
10258         END IF;
10259
10260         output_text := output_text || REGEXP_REPLACE(raw_text, E'\\s+', '', 'g');
10261
10262     END LOOP;
10263
10264     RETURN output_text;
10265
10266 END;
10267 $func$ LANGUAGE PLPGSQL;
10268
10269 -- BEFORE UPDATE OR INSERT trigger for biblio.record_entry
10270 CREATE OR REPLACE FUNCTION biblio.fingerprint_trigger () RETURNS TRIGGER AS $func$
10271 BEGIN
10272
10273     -- For TG_ARGV, first param is language (like 'eng'), second is record type (like 'BKS')
10274
10275     IF NEW.deleted IS TRUE THEN -- we don't much care, then, do we?
10276         RETURN NEW;
10277     END IF;
10278
10279     NEW.fingerprint := biblio.extract_fingerprint(NEW.marc);
10280     NEW.quality := biblio.extract_quality(NEW.marc, TG_ARGV[0], TG_ARGV[1]);
10281
10282     RETURN NEW;
10283
10284 END;
10285 $func$ LANGUAGE PLPGSQL;
10286
10287 CREATE TABLE config.internal_flag (
10288     name    TEXT    PRIMARY KEY,
10289     value   TEXT,
10290     enabled BOOL    NOT NULL DEFAULT FALSE
10291 );
10292 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_insert');
10293 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.force_on_same_marc');
10294 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.skip_located_uri');
10295 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_located_uri');
10296 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_full_rec');
10297 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_rec_descriptor');
10298 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_field_entry');
10299 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_authority_linking');
10300
10301 CREATE TABLE authority.bib_linking (
10302     id          BIGSERIAL   PRIMARY KEY,
10303     bib         BIGINT      NOT NULL REFERENCES biblio.record_entry (id),
10304     authority   BIGINT      NOT NULL REFERENCES authority.record_entry (id)
10305 );
10306 CREATE INDEX authority_bl_bib_idx ON authority.bib_linking ( bib );
10307 CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON authority.bib_linking ( authority, bib );
10308
10309 CREATE OR REPLACE FUNCTION public.remove_paren_substring( TEXT ) RETURNS TEXT AS $func$
10310     SELECT regexp_replace($1, $$\([^)]+\)$$, '', 'g');
10311 $func$ LANGUAGE SQL STRICT IMMUTABLE;
10312
10313 CREATE OR REPLACE FUNCTION biblio.map_authority_linking (bibid BIGINT, marc TEXT) RETURNS BIGINT AS $func$
10314     DELETE FROM authority.bib_linking WHERE bib = $1;
10315     INSERT INTO authority.bib_linking (bib, authority)
10316         SELECT  y.bib,
10317                 y.authority
10318           FROM (    SELECT  DISTINCT $1 AS bib,
10319                             BTRIM(remove_paren_substring(txt))::BIGINT AS authority
10320                       FROM  explode_array(oils_xpath('//*[@code="0"]/text()',$2)) x(txt)
10321                       WHERE BTRIM(remove_paren_substring(txt)) ~ $re$^\d+$$re$
10322                 ) y JOIN authority.record_entry r ON r.id = y.authority;
10323     SELECT $1;
10324 $func$ LANGUAGE SQL;
10325
10326 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_rec_descriptor( bib_id BIGINT ) RETURNS VOID AS $func$
10327 BEGIN
10328     DELETE FROM metabib.rec_descriptor WHERE record = bib_id;
10329     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)
10330         SELECT  bib_id,
10331                 biblio.marc21_extract_fixed_field( bib_id, 'Type' ),
10332                 biblio.marc21_extract_fixed_field( bib_id, 'Form' ),
10333                 biblio.marc21_extract_fixed_field( bib_id, 'BLvl' ),
10334                 biblio.marc21_extract_fixed_field( bib_id, 'Ctrl' ),
10335                 biblio.marc21_extract_fixed_field( bib_id, 'ELvl' ),
10336                 biblio.marc21_extract_fixed_field( bib_id, 'Audn' ),
10337                 biblio.marc21_extract_fixed_field( bib_id, 'LitF' ),
10338                 biblio.marc21_extract_fixed_field( bib_id, 'TMat' ),
10339                 biblio.marc21_extract_fixed_field( bib_id, 'Desc' ),
10340                 biblio.marc21_extract_fixed_field( bib_id, 'DtSt' ),
10341                 biblio.marc21_extract_fixed_field( bib_id, 'Lang' ),
10342                 (   SELECT  v.value
10343                       FROM  biblio.marc21_physical_characteristics( bib_id) p
10344                             JOIN config.marc21_physical_characteristic_subfield_map s ON (s.id = p.subfield)
10345                             JOIN config.marc21_physical_characteristic_value_map v ON (v.id = p.value)
10346                       WHERE p.ptype = 'v' AND s.subfield = 'e'    ),
10347                 biblio.marc21_extract_fixed_field( bib_id, 'Date1'),
10348                 biblio.marc21_extract_fixed_field( bib_id, 'Date2');
10349
10350     RETURN;
10351 END;
10352 $func$ LANGUAGE PLPGSQL;
10353
10354 CREATE TABLE config.metabib_class (
10355     name    TEXT    PRIMARY KEY,
10356     label   TEXT    NOT NULL UNIQUE
10357 );
10358
10359 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
10360 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') );
10361 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') );
10362 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
10363 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
10364
10365 CREATE TABLE metabib.facet_entry (
10366         id              BIGSERIAL       PRIMARY KEY,
10367         source          BIGINT          NOT NULL,
10368         field           INT             NOT NULL,
10369         value           TEXT            NOT NULL
10370 );
10371
10372 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_field_entries( bib_id BIGINT ) RETURNS VOID AS $func$
10373 DECLARE
10374     fclass          RECORD;
10375     ind_data        metabib.field_entry_template%ROWTYPE;
10376 BEGIN
10377     FOR fclass IN SELECT * FROM config.metabib_class LOOP
10378         -- RAISE NOTICE 'Emptying out %', fclass.name;
10379         EXECUTE $$DELETE FROM metabib.$$ || fclass.name || $$_field_entry WHERE source = $$ || bib_id;
10380     END LOOP;
10381
10382     DELETE FROM metabib.facet_entry WHERE source = bib_id;
10383
10384     FOR ind_data IN SELECT * FROM biblio.extract_metabib_field_entry( bib_id ) LOOP
10385         IF ind_data.field < 0 THEN
10386             ind_data.field = -1 * ind_data.field;
10387             INSERT INTO metabib.facet_entry (field, source, value)
10388                 VALUES (ind_data.field, ind_data.source, ind_data.value);
10389         ELSE
10390             EXECUTE $$
10391                 INSERT INTO metabib.$$ || ind_data.field_class || $$_field_entry (field, source, value)
10392                     VALUES ($$ ||
10393                         quote_literal(ind_data.field) || $$, $$ ||
10394                         quote_literal(ind_data.source) || $$, $$ ||
10395                         quote_literal(ind_data.value) ||
10396                     $$);$$;
10397         END IF;
10398
10399     END LOOP;
10400
10401     RETURN;
10402 END;
10403 $func$ LANGUAGE PLPGSQL;
10404
10405 CREATE OR REPLACE FUNCTION biblio.extract_located_uris( bib_id BIGINT, marcxml TEXT, editor_id INT ) RETURNS VOID AS $func$
10406 DECLARE
10407     uris            TEXT[];
10408     uri_xml         TEXT;
10409     uri_label       TEXT;
10410     uri_href        TEXT;
10411     uri_use         TEXT;
10412     uri_owner       TEXT;
10413     uri_owner_id    INT;
10414     uri_id          INT;
10415     uri_cn_id       INT;
10416     uri_map_id      INT;
10417 BEGIN
10418
10419     uris := oils_xpath('//*[@tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]',marcxml);
10420     IF ARRAY_UPPER(uris,1) > 0 THEN
10421         FOR i IN 1 .. ARRAY_UPPER(uris, 1) LOOP
10422             -- First we pull info out of the 856
10423             uri_xml     := uris[i];
10424
10425             uri_href    := (oils_xpath('//*[@code="u"]/text()',uri_xml))[1];
10426             CONTINUE WHEN uri_href IS NULL;
10427
10428             uri_label   := (oils_xpath('//*[@code="y"]/text()|//*[@code="3"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10429             CONTINUE WHEN uri_label IS NULL;
10430
10431             uri_owner   := (oils_xpath('//*[@code="9"]/text()|//*[@code="w"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10432             CONTINUE WHEN uri_owner IS NULL;
10433
10434             uri_use     := (oils_xpath('//*[@code="z"]/text()|//*[@code="2"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10435
10436             uri_owner := REGEXP_REPLACE(uri_owner, $re$^.*?\((\w+)\).*$$re$, E'\\1');
10437
10438             SELECT id INTO uri_owner_id FROM actor.org_unit WHERE shortname = uri_owner;
10439             CONTINUE WHEN NOT FOUND;
10440
10441             -- now we look for a matching uri
10442             SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10443             IF NOT FOUND THEN -- create one
10444                 INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use);
10445                 SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10446             END IF;
10447
10448             -- we need a call number to link through
10449             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;
10450             IF NOT FOUND THEN
10451                 INSERT INTO asset.call_number (owning_lib, record, create_date, edit_date, creator, editor, label)
10452                     VALUES (uri_owner_id, bib_id, 'now', 'now', editor_id, editor_id, '##URI##');
10453                 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;
10454             END IF;
10455
10456             -- now, link them if they're not already
10457             SELECT id INTO uri_map_id FROM asset.uri_call_number_map WHERE call_number = uri_cn_id AND uri = uri_id;
10458             IF NOT FOUND THEN
10459                 INSERT INTO asset.uri_call_number_map (call_number, uri) VALUES (uri_cn_id, uri_id);
10460             END IF;
10461
10462         END LOOP;
10463     END IF;
10464
10465     RETURN;
10466 END;
10467 $func$ LANGUAGE PLPGSQL;
10468
10469 CREATE OR REPLACE FUNCTION metabib.remap_metarecord_for_bib( bib_id BIGINT, fp TEXT ) RETURNS BIGINT AS $func$
10470 DECLARE
10471     source_count    INT;
10472     old_mr          BIGINT;
10473     tmp_mr          metabib.metarecord%ROWTYPE;
10474     deleted_mrs     BIGINT[];
10475 BEGIN
10476
10477     DELETE FROM metabib.metarecord_source_map WHERE source = bib_id; -- Rid ourselves of the search-estimate-killing linkage
10478
10479     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
10480
10481         IF old_mr IS NULL AND fp = tmp_mr.fingerprint THEN -- Find the first fingerprint-matching
10482             old_mr := tmp_mr.id;
10483         ELSE
10484             SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = tmp_mr.id;
10485             IF source_count = 0 THEN -- No other records
10486                 deleted_mrs := ARRAY_APPEND(deleted_mrs, tmp_mr.id);
10487                 DELETE FROM metabib.metarecord WHERE id = tmp_mr.id;
10488             END IF;
10489         END IF;
10490
10491     END LOOP;
10492
10493     IF old_mr IS NULL THEN -- we found no suitable, preexisting MR based on old source maps
10494         SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; -- is there one for our current fingerprint?
10495         IF old_mr IS NULL THEN -- nope, create one and grab its id
10496             INSERT INTO metabib.metarecord ( fingerprint, master_record ) VALUES ( fp, bib_id );
10497             SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp;
10498         ELSE -- indeed there is. update it with a null cache and recalcualated master record
10499             UPDATE  metabib.metarecord
10500               SET   mods = NULL,
10501                     master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
10502               WHERE id = old_mr;
10503         END IF;
10504     ELSE -- there was one we already attached to, update its mods cache and master_record
10505         UPDATE  metabib.metarecord
10506           SET   mods = NULL,
10507                 master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
10508           WHERE id = old_mr;
10509     END IF;
10510
10511     INSERT INTO metabib.metarecord_source_map (metarecord, source) VALUES (old_mr, bib_id); -- new source mapping
10512
10513     IF ARRAY_UPPER(deleted_mrs,1) > 0 THEN
10514         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
10515     END IF;
10516
10517     RETURN old_mr;
10518
10519 END;
10520 $func$ LANGUAGE PLPGSQL;
10521
10522 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_full_rec( bib_id BIGINT ) RETURNS VOID AS $func$
10523 BEGIN
10524     DELETE FROM metabib.real_full_rec WHERE record = bib_id;
10525     INSERT INTO metabib.real_full_rec (record, tag, ind1, ind2, subfield, value)
10526         SELECT record, tag, ind1, ind2, subfield, value FROM biblio.flatten_marc( bib_id );
10527
10528     RETURN;
10529 END;
10530 $func$ LANGUAGE PLPGSQL;
10531
10532 -- AFTER UPDATE OR INSERT trigger for biblio.record_entry
10533 CREATE OR REPLACE FUNCTION biblio.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
10534 BEGIN
10535
10536     IF NEW.deleted IS TRUE THEN -- If this bib is deleted
10537         DELETE FROM metabib.metarecord_source_map WHERE source = NEW.id; -- Rid ourselves of the search-estimate-killing linkage
10538         DELETE FROM authority.bib_linking WHERE bib = NEW.id; -- Avoid updating fields in bibs that are no longer visible
10539         RETURN NEW; -- and we're done
10540     END IF;
10541
10542     IF TG_OP = 'UPDATE' THEN -- re-ingest?
10543         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
10544
10545         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
10546             RETURN NEW;
10547         END IF;
10548     END IF;
10549
10550     -- Record authority linking
10551     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled;
10552     IF NOT FOUND THEN
10553         PERFORM biblio.map_authority_linking( NEW.id, NEW.marc );
10554     END IF;
10555
10556     -- Flatten and insert the mfr data
10557     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled;
10558     IF NOT FOUND THEN
10559         PERFORM metabib.reingest_metabib_full_rec(NEW.id);
10560         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled;
10561         IF NOT FOUND THEN
10562             PERFORM metabib.reingest_metabib_rec_descriptor(NEW.id);
10563         END IF;
10564     END IF;
10565
10566     -- Gather and insert the field entry data
10567     PERFORM metabib.reingest_metabib_field_entries(NEW.id);
10568
10569     -- Located URI magic
10570     IF TG_OP = 'INSERT' THEN
10571         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
10572         IF NOT FOUND THEN
10573             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
10574         END IF;
10575     ELSE
10576         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
10577         IF NOT FOUND THEN
10578             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
10579         END IF;
10580     END IF;
10581
10582     -- (re)map metarecord-bib linking
10583     IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag
10584         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled;
10585         IF NOT FOUND THEN
10586             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
10587         END IF;
10588     ELSE -- we're doing an update, and we're not deleted, remap
10589         PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
10590     END IF;
10591
10592     RETURN NEW;
10593 END;
10594 $func$ LANGUAGE PLPGSQL;
10595
10596 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
10597 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 ();
10598
10599 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_rec_delete_tgr ON biblio.record_entry;
10600
10601 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT )
10602 RETURNS SETOF RECORD AS $func$
10603 DECLARE
10604     xpath_list  TEXT[];
10605     select_list TEXT[];
10606     where_list  TEXT[];
10607     q           TEXT;
10608     out_record  RECORD;
10609     empty_test  RECORD;
10610 BEGIN
10611     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
10612
10613     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
10614
10615     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
10616         select_list := ARRAY_APPEND(
10617             select_list,
10618             $sel$
10619             EXPLODE_ARRAY(
10620                 COALESCE(
10621                     NULLIF(
10622                         oils_xpath(
10623                             $sel$ ||
10624                                 quote_literal(
10625                                     CASE
10626                                         WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
10627                                         ELSE xpath_list[i] || '//text()'
10628                                     END
10629                                 ) ||
10630                             $sel$,
10631                             $sel$ || document_field || $sel$
10632                         ),
10633                        '{}'::TEXT[]
10634                     ),
10635                     '{NULL}'::TEXT[]
10636                 )
10637             ) AS c_$sel$ || i
10638         );
10639         where_list := ARRAY_APPEND(
10640             where_list,
10641             'c_' || i || ' IS NOT NULL'
10642         );
10643     END LOOP;
10644
10645     q := $q$
10646 SELECT * FROM (
10647     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
10648 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' AND ' );
10649     -- RAISE NOTICE 'query: %', q;
10650
10651     FOR out_record IN EXECUTE q LOOP
10652         RETURN NEXT out_record;
10653     END LOOP;
10654
10655     RETURN;
10656 END;
10657 $func$ LANGUAGE PLPGSQL;
10658
10659 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
10660 DECLARE
10661
10662     owning_lib      TEXT;
10663     circ_lib        TEXT;
10664     call_number     TEXT;
10665     copy_number     TEXT;
10666     status          TEXT;
10667     location        TEXT;
10668     circulate       TEXT;
10669     deposit         TEXT;
10670     deposit_amount  TEXT;
10671     ref             TEXT;
10672     holdable        TEXT;
10673     price           TEXT;
10674     barcode         TEXT;
10675     circ_modifier   TEXT;
10676     circ_as_type    TEXT;
10677     alert_message   TEXT;
10678     opac_visible    TEXT;
10679     pub_note        TEXT;
10680     priv_note       TEXT;
10681
10682     attr_def        RECORD;
10683     tmp_attr_set    RECORD;
10684     attr_set        vandelay.import_item%ROWTYPE;
10685
10686     xpath           TEXT;
10687
10688 BEGIN
10689
10690     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
10691
10692     IF FOUND THEN
10693
10694         attr_set.definition := attr_def.id; 
10695     
10696         -- Build the combined XPath
10697     
10698         owning_lib :=
10699             CASE
10700                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
10701                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
10702                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
10703             END;
10704     
10705         circ_lib :=
10706             CASE
10707                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
10708                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
10709                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
10710             END;
10711     
10712         call_number :=
10713             CASE
10714                 WHEN attr_def.call_number IS NULL THEN 'null()'
10715                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
10716                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
10717             END;
10718     
10719         copy_number :=
10720             CASE
10721                 WHEN attr_def.copy_number IS NULL THEN 'null()'
10722                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
10723                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
10724             END;
10725     
10726         status :=
10727             CASE
10728                 WHEN attr_def.status IS NULL THEN 'null()'
10729                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
10730                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
10731             END;
10732     
10733         location :=
10734             CASE
10735                 WHEN attr_def.location IS NULL THEN 'null()'
10736                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
10737                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
10738             END;
10739     
10740         circulate :=
10741             CASE
10742                 WHEN attr_def.circulate IS NULL THEN 'null()'
10743                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
10744                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
10745             END;
10746     
10747         deposit :=
10748             CASE
10749                 WHEN attr_def.deposit IS NULL THEN 'null()'
10750                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
10751                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
10752             END;
10753     
10754         deposit_amount :=
10755             CASE
10756                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
10757                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
10758                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
10759             END;
10760     
10761         ref :=
10762             CASE
10763                 WHEN attr_def.ref IS NULL THEN 'null()'
10764                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
10765                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
10766             END;
10767     
10768         holdable :=
10769             CASE
10770                 WHEN attr_def.holdable IS NULL THEN 'null()'
10771                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
10772                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
10773             END;
10774     
10775         price :=
10776             CASE
10777                 WHEN attr_def.price IS NULL THEN 'null()'
10778                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
10779                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
10780             END;
10781     
10782         barcode :=
10783             CASE
10784                 WHEN attr_def.barcode IS NULL THEN 'null()'
10785                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
10786                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
10787             END;
10788     
10789         circ_modifier :=
10790             CASE
10791                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
10792                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
10793                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
10794             END;
10795     
10796         circ_as_type :=
10797             CASE
10798                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
10799                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
10800                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
10801             END;
10802     
10803         alert_message :=
10804             CASE
10805                 WHEN attr_def.alert_message IS NULL THEN 'null()'
10806                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
10807                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
10808             END;
10809     
10810         opac_visible :=
10811             CASE
10812                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
10813                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
10814                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
10815             END;
10816
10817         pub_note :=
10818             CASE
10819                 WHEN attr_def.pub_note IS NULL THEN 'null()'
10820                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
10821                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
10822             END;
10823         priv_note :=
10824             CASE
10825                 WHEN attr_def.priv_note IS NULL THEN 'null()'
10826                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
10827                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
10828             END;
10829     
10830     
10831         xpath := 
10832             owning_lib      || '|' || 
10833             circ_lib        || '|' || 
10834             call_number     || '|' || 
10835             copy_number     || '|' || 
10836             status          || '|' || 
10837             location        || '|' || 
10838             circulate       || '|' || 
10839             deposit         || '|' || 
10840             deposit_amount  || '|' || 
10841             ref             || '|' || 
10842             holdable        || '|' || 
10843             price           || '|' || 
10844             barcode         || '|' || 
10845             circ_modifier   || '|' || 
10846             circ_as_type    || '|' || 
10847             alert_message   || '|' || 
10848             pub_note        || '|' || 
10849             priv_note       || '|' || 
10850             opac_visible;
10851
10852         -- RAISE NOTICE 'XPath: %', xpath;
10853         
10854         FOR tmp_attr_set IN
10855                 SELECT  *
10856                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
10857                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
10858                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
10859                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
10860         LOOP
10861     
10862             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
10863             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
10864
10865             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
10866             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
10867     
10868             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
10869             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
10870             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
10871     
10872             SELECT  id INTO attr_set.location
10873               FROM  asset.copy_location
10874               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
10875                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
10876     
10877             attr_set.circulate      :=
10878                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
10879                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
10880
10881             attr_set.deposit        :=
10882                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
10883                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
10884
10885             attr_set.holdable       :=
10886                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
10887                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
10888
10889             attr_set.opac_visible   :=
10890                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
10891                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
10892
10893             attr_set.ref            :=
10894                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
10895                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
10896     
10897             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
10898             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
10899             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
10900     
10901             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
10902             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
10903             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
10904             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
10905             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
10906             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
10907             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
10908             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
10909     
10910             RETURN NEXT attr_set;
10911     
10912         END LOOP;
10913     
10914     END IF;
10915
10916     RETURN;
10917
10918 END;
10919 $$ LANGUAGE PLPGSQL;
10920
10921 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
10922 DECLARE
10923     attr_def    BIGINT;
10924     item_data   vandelay.import_item%ROWTYPE;
10925 BEGIN
10926
10927     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
10928
10929     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
10930         INSERT INTO vandelay.import_item (
10931             record,
10932             definition,
10933             owning_lib,
10934             circ_lib,
10935             call_number,
10936             copy_number,
10937             status,
10938             location,
10939             circulate,
10940             deposit,
10941             deposit_amount,
10942             ref,
10943             holdable,
10944             price,
10945             barcode,
10946             circ_modifier,
10947             circ_as_type,
10948             alert_message,
10949             pub_note,
10950             priv_note,
10951             opac_visible
10952         ) VALUES (
10953             NEW.id,
10954             item_data.definition,
10955             item_data.owning_lib,
10956             item_data.circ_lib,
10957             item_data.call_number,
10958             item_data.copy_number,
10959             item_data.status,
10960             item_data.location,
10961             item_data.circulate,
10962             item_data.deposit,
10963             item_data.deposit_amount,
10964             item_data.ref,
10965             item_data.holdable,
10966             item_data.price,
10967             item_data.barcode,
10968             item_data.circ_modifier,
10969             item_data.circ_as_type,
10970             item_data.alert_message,
10971             item_data.pub_note,
10972             item_data.priv_note,
10973             item_data.opac_visible
10974         );
10975     END LOOP;
10976
10977     RETURN NULL;
10978 END;
10979 $func$ LANGUAGE PLPGSQL;
10980
10981 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
10982 BEGIN
10983     EXECUTE $$
10984         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
10985     $$;
10986         RETURN TRUE;
10987 END;
10988 $creator$ LANGUAGE 'plpgsql';
10989
10990 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
10991 BEGIN
10992     EXECUTE $$
10993         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
10994             audit_id    BIGINT                          PRIMARY KEY,
10995             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
10996             audit_action        TEXT                            NOT NULL,
10997             LIKE $$ || sch || $$.$$ || tbl || $$
10998         );
10999     $$;
11000         RETURN TRUE;
11001 END;
11002 $creator$ LANGUAGE 'plpgsql';
11003
11004 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11005 BEGIN
11006     EXECUTE $$
11007         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11008         RETURNS TRIGGER AS $func$
11009         BEGIN
11010             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11011                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11012                     now(),
11013                     SUBSTR(TG_OP,1,1),
11014                     OLD.*;
11015             RETURN NULL;
11016         END;
11017         $func$ LANGUAGE 'plpgsql';
11018     $$;
11019         RETURN TRUE;
11020 END;
11021 $creator$ LANGUAGE 'plpgsql';
11022
11023 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11024 BEGIN
11025     EXECUTE $$
11026         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11027             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11028             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11029     $$;
11030         RETURN TRUE;
11031 END;
11032 $creator$ LANGUAGE 'plpgsql';
11033
11034 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11035 BEGIN
11036     EXECUTE $$
11037         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11038             SELECT      -1, now() as audit_time, '-' as audit_action, *
11039               FROM      $$ || sch || $$.$$ || tbl || $$
11040                 UNION ALL
11041             SELECT      *
11042               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11043     $$;
11044         RETURN TRUE;
11045 END;
11046 $creator$ LANGUAGE 'plpgsql';
11047
11048 -- The main event
11049
11050 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11051 BEGIN
11052     PERFORM acq.create_acq_seq(sch, tbl);
11053     PERFORM acq.create_acq_history(sch, tbl);
11054     PERFORM acq.create_acq_func(sch, tbl);
11055     PERFORM acq.create_acq_update_trigger(sch, tbl);
11056     PERFORM acq.create_acq_lifecycle(sch, tbl);
11057     RETURN TRUE;
11058 END;
11059 $creator$ LANGUAGE 'plpgsql';
11060
11061 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
11062 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
11063
11064 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
11065 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
11066
11067 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11068     SELECT  fund.id AS fund,
11069             fund_debit.encumbrance AS encumbrance,
11070             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11071       FROM acq.fund AS fund
11072                         LEFT JOIN acq.fund_debit AS fund_debit
11073                                 ON ( fund.id = fund_debit.fund )
11074       GROUP BY 1,2;
11075
11076 CREATE TABLE acq.debit_attribution (
11077         id                     INT         NOT NULL PRIMARY KEY,
11078         fund_debit             INT         NOT NULL
11079                                            REFERENCES acq.fund_debit
11080                                            DEFERRABLE INITIALLY DEFERRED,
11081     debit_amount           NUMERIC     NOT NULL,
11082         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11083                                            DEFERRABLE INITIALLY DEFERRED,
11084     credit_amount          NUMERIC
11085 );
11086
11087 CREATE INDEX acq_attribution_debit_idx
11088         ON acq.debit_attribution( fund_debit );
11089
11090 CREATE INDEX acq_attribution_credit_idx
11091         ON acq.debit_attribution( funding_source_credit );
11092
11093 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11094 /*
11095 Function to attribute expenditures and encumbrances to funding source credits,
11096 and thereby to funding sources.
11097
11098 Read the debits in chonological order, attributing each one to one or
11099 more funding source credits.  Constraints:
11100
11101 1. Don't attribute more to a credit than the amount of the credit.
11102
11103 2. For a given fund, don't attribute more to a funding source than the
11104 source has allocated to that fund.
11105
11106 3. Attribute debits to credits with deadlines before attributing them to
11107 credits without deadlines.  Otherwise attribute to the earliest credits
11108 first, based on the deadline date when present, or on the effective date
11109 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11110 This ordering is defined by an ORDER BY clause on the view
11111 acq.ordered_funding_source_credit.
11112
11113 Start by truncating the table acq.debit_attribution.  Then insert a row
11114 into that table for each attribution.  If a debit cannot be fully
11115 attributed, insert a row for the unattributable balance, with the 
11116 funding_source_credit and credit_amount columns NULL.
11117 */
11118 DECLARE
11119         curr_fund_source_bal RECORD;
11120         seqno                INT;     -- sequence num for credits applicable to a fund
11121         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11122         fc                   RECORD;  -- used for loading t_fund_credit table
11123         sc                   RECORD;  -- used for loading t_fund_credit table
11124         --
11125         -- Used exclusively in the main loop:
11126         --
11127         deb                 RECORD;   -- current row from acq.fund_debit table
11128         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11129         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11130         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11131         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11132         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11133         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11134         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11135         attrib_count        INT;      -- populates id of acq.debit_attribution
11136 BEGIN
11137         --
11138         -- Load a temporary table.  For each combination of fund and funding source,
11139         -- load an entry with the total amount allocated to that fund by that source.
11140         -- This sum may reflect transfers as well as original allocations.  We will
11141         -- reduce this balance whenever we attribute debits to it.
11142         --
11143         CREATE TEMP TABLE t_fund_source_bal
11144         ON COMMIT DROP AS
11145                 SELECT
11146                         fund AS fund,
11147                         funding_source AS source,
11148                         sum( amount ) AS balance
11149                 FROM
11150                         acq.fund_allocation
11151                 GROUP BY
11152                         fund,
11153                         funding_source
11154                 HAVING
11155                         sum( amount ) > 0;
11156         --
11157         CREATE INDEX t_fund_source_bal_idx
11158                 ON t_fund_source_bal( fund, source );
11159         -------------------------------------------------------------------------------
11160         --
11161         -- Load another temporary table.  For each fund, load zero or more
11162         -- funding source credits from which that fund can get money.
11163         --
11164         CREATE TEMP TABLE t_fund_credit (
11165                 fund        INT,
11166                 seq         INT,
11167                 credit      INT
11168         ) ON COMMIT DROP;
11169         --
11170         FOR fc IN
11171                 SELECT DISTINCT fund
11172                 FROM acq.fund_allocation
11173                 ORDER BY fund
11174         LOOP                  -- Loop over the funds
11175                 seqno := 1;
11176                 FOR sc IN
11177                         SELECT
11178                                 ofsc.id
11179                         FROM
11180                                 acq.ordered_funding_source_credit AS ofsc
11181                         WHERE
11182                                 ofsc.funding_source IN
11183                                 (
11184                                         SELECT funding_source
11185                                         FROM acq.fund_allocation
11186                                         WHERE fund = fc.fund
11187                                 )
11188                 ORDER BY
11189                     ofsc.sort_priority,
11190                     ofsc.sort_date,
11191                     ofsc.id
11192                 LOOP                        -- Add each credit to the list
11193                         INSERT INTO t_fund_credit (
11194                                 fund,
11195                                 seq,
11196                                 credit
11197                         ) VALUES (
11198                                 fc.fund,
11199                                 seqno,
11200                                 sc.id
11201                         );
11202                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11203                         seqno := seqno + 1;
11204                 END LOOP;     -- Loop over credits for a given fund
11205         END LOOP;         -- Loop over funds
11206         --
11207         CREATE INDEX t_fund_credit_idx
11208                 ON t_fund_credit( fund, seq );
11209         -------------------------------------------------------------------------------
11210         --
11211         -- Load yet another temporary table.  This one is a list of funding source
11212         -- credits, with their balances.  We shall reduce those balances as we
11213         -- attribute debits to them.
11214         --
11215         CREATE TEMP TABLE t_credit
11216         ON COMMIT DROP AS
11217         SELECT
11218             fsc.id AS credit,
11219             fsc.funding_source AS source,
11220             fsc.amount AS balance,
11221             fs.currency_type AS currency_type
11222         FROM
11223             acq.funding_source_credit AS fsc,
11224             acq.funding_source fs
11225         WHERE
11226             fsc.funding_source = fs.id
11227                         AND fsc.amount > 0;
11228         --
11229         CREATE INDEX t_credit_idx
11230                 ON t_credit( credit );
11231         --
11232         -------------------------------------------------------------------------------
11233         --
11234         -- Now that we have loaded the lookup tables: loop through the debits,
11235         -- attributing each one to one or more funding source credits.
11236         -- 
11237         truncate table acq.debit_attribution;
11238         --
11239         attrib_count := 0;
11240         FOR deb in
11241                 SELECT
11242                         fd.id,
11243                         fd.fund,
11244                         fd.amount,
11245                         f.currency_type,
11246                         fd.encumbrance
11247                 FROM
11248                         acq.fund_debit fd,
11249                         acq.fund f
11250                 WHERE
11251                         fd.fund = f.id
11252                 ORDER BY
11253                         fd.id
11254         LOOP
11255                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11256                 --
11257                 debit_balance := deb.amount;
11258                 --
11259                 -- Loop over the funding source credits that are eligible
11260                 -- to pay for this debit
11261                 --
11262                 FOR fund_credit IN
11263                         SELECT
11264                                 credit
11265                         FROM
11266                                 t_fund_credit
11267                         WHERE
11268                                 fund = deb.fund
11269                         ORDER BY
11270                                 seq
11271                 LOOP
11272                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11273                         --
11274                         -- Look up the balance for this credit.  If it's zero, then
11275                         -- it's not useful, so treat it as if you didn't find it.
11276                         -- (Actually there shouldn't be any zero balances in the table,
11277                         -- but we check just to make sure.)
11278                         --
11279                         SELECT *
11280                         INTO curr_credit_bal
11281                         FROM t_credit
11282                         WHERE
11283                                 credit = fund_credit.credit
11284                                 AND balance > 0;
11285                         --
11286                         IF curr_credit_bal IS NULL THEN
11287                                 --
11288                                 -- This credit is exhausted; try the next one.
11289                                 --
11290                                 CONTINUE;
11291                         END IF;
11292                         --
11293                         --
11294                         -- At this point we have an applicable credit with some money left.
11295                         -- Now see if the relevant funding_source has any money left.
11296                         --
11297                         -- Look up the balance of the allocation for this combination of
11298                         -- fund and source.  If you find such an entry, but it has a zero
11299                         -- balance, then it's not useful, so treat it as unfound.
11300                         -- (Actually there shouldn't be any zero balances in the table,
11301                         -- but we check just to make sure.)
11302                         --
11303                         SELECT *
11304                         INTO curr_fund_source_bal
11305                         FROM t_fund_source_bal
11306                         WHERE
11307                                 fund = deb.fund
11308                                 AND source = curr_credit_bal.source
11309                                 AND balance > 0;
11310                         --
11311                         IF curr_fund_source_bal IS NULL THEN
11312                                 --
11313                                 -- This fund/source doesn't exist or is already exhausted,
11314                                 -- so we can't use this credit.  Go on to the next one.
11315                                 --
11316                                 CONTINUE;
11317                         END IF;
11318                         --
11319                         -- Convert the available balances to the currency of the fund
11320                         --
11321                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11322                                 curr_credit_bal.currency_type, deb.currency_type );
11323                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11324                                 curr_credit_bal.currency_type, deb.currency_type );
11325                         --
11326                         -- Determine how much we can attribute to this credit: the minimum
11327                         -- of the debit amount, the fund/source balance, and the
11328                         -- credit balance
11329                         --
11330                         --RAISE NOTICE '   deb bal %', debit_balance;
11331                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11332                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11333                         --
11334                         conv_attr_amount := NULL;
11335                         attr_amount := debit_balance;
11336                         --
11337                         IF attr_amount > conv_alloc_balance THEN
11338                                 attr_amount := conv_alloc_balance;
11339                                 conv_attr_amount := curr_fund_source_bal.balance;
11340                         END IF;
11341                         IF attr_amount > conv_cred_balance THEN
11342                                 attr_amount := conv_cred_balance;
11343                                 conv_attr_amount := curr_credit_bal.balance;
11344                         END IF;
11345                         --
11346                         -- If we're attributing all of one of the balances, then that's how
11347                         -- much we will deduct from the balances, and we already captured
11348                         -- that amount above.  Otherwise we must convert the amount of the
11349                         -- attribution from the currency of the fund back to the currency of
11350                         -- the funding source.
11351                         --
11352                         IF conv_attr_amount IS NULL THEN
11353                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11354                                         deb.currency_type, curr_credit_bal.currency_type );
11355                         END IF;
11356                         --
11357                         -- Insert a row to record the attribution
11358                         --
11359                         attrib_count := attrib_count + 1;
11360                         INSERT INTO acq.debit_attribution (
11361                                 id,
11362                                 fund_debit,
11363                                 debit_amount,
11364                                 funding_source_credit,
11365                                 credit_amount
11366                         ) VALUES (
11367                                 attrib_count,
11368                                 deb.id,
11369                                 attr_amount,
11370                                 curr_credit_bal.credit,
11371                                 conv_attr_amount
11372                         );
11373                         --
11374                         -- Subtract the attributed amount from the various balances
11375                         --
11376                         debit_balance := debit_balance - attr_amount;
11377                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11378                         --
11379                         IF curr_fund_source_bal.balance <= 0 THEN
11380                                 --
11381                                 -- This allocation is exhausted.  Delete it so
11382                                 -- that we don't waste time looking at it again.
11383                                 --
11384                                 DELETE FROM t_fund_source_bal
11385                                 WHERE
11386                                         fund = curr_fund_source_bal.fund
11387                                         AND source = curr_fund_source_bal.source;
11388                         ELSE
11389                                 UPDATE t_fund_source_bal
11390                                 SET balance = balance - conv_attr_amount
11391                                 WHERE
11392                                         fund = curr_fund_source_bal.fund
11393                                         AND source = curr_fund_source_bal.source;
11394                         END IF;
11395                         --
11396                         IF curr_credit_bal.balance <= 0 THEN
11397                                 --
11398                                 -- This funding source credit is exhausted.  Delete it
11399                                 -- so that we don't waste time looking at it again.
11400                                 --
11401                                 --DELETE FROM t_credit
11402                                 --WHERE
11403                                 --      credit = curr_credit_bal.credit;
11404                                 --
11405                                 DELETE FROM t_fund_credit
11406                                 WHERE
11407                                         credit = curr_credit_bal.credit;
11408                         ELSE
11409                                 UPDATE t_credit
11410                                 SET balance = curr_credit_bal.balance
11411                                 WHERE
11412                                         credit = curr_credit_bal.credit;
11413                         END IF;
11414                         --
11415                         -- Are we done with this debit yet?
11416                         --
11417                         IF debit_balance <= 0 THEN
11418                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11419                         END IF;
11420                 END LOOP;       -- End loop over credits
11421                 --
11422                 IF debit_balance <> 0 THEN
11423                         --
11424                         -- We weren't able to attribute this debit, or at least not
11425                         -- all of it.  Insert a row for the unattributed balance.
11426                         --
11427                         attrib_count := attrib_count + 1;
11428                         INSERT INTO acq.debit_attribution (
11429                                 id,
11430                                 fund_debit,
11431                                 debit_amount,
11432                                 funding_source_credit,
11433                                 credit_amount
11434                         ) VALUES (
11435                                 attrib_count,
11436                                 deb.id,
11437                                 debit_balance,
11438                                 NULL,
11439                                 NULL
11440                         );
11441                 END IF;
11442         END LOOP;   -- End of loop over debits
11443 END;
11444 $$ LANGUAGE 'plpgsql';
11445
11446 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11447 DECLARE
11448     query TEXT;
11449     output TEXT;
11450 BEGIN
11451     query := $q$
11452         SELECT  regexp_replace(
11453                     oils_xpath_string(
11454                         $q$ || quote_literal($3) || $q$,
11455                         marc,
11456                         ' '
11457                     ),
11458                     $q$ || quote_literal($4) || $q$,
11459                     '',
11460                     'g')
11461           FROM  $q$ || $1 || $q$
11462           WHERE id = $q$ || $2;
11463
11464     EXECUTE query INTO output;
11465
11466     -- RAISE NOTICE 'query: %, output; %', query, output;
11467
11468     RETURN output;
11469 END;
11470 $$ LANGUAGE PLPGSQL IMMUTABLE;
11471
11472 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
11473     SELECT extract_marc_field($1,$2,$3,'');
11474 $$ LANGUAGE SQL IMMUTABLE;
11475
11476 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
11477 DECLARE
11478     moved_objects INT := 0;
11479     source_cn     asset.call_number%ROWTYPE;
11480     target_cn     asset.call_number%ROWTYPE;
11481     metarec       metabib.metarecord%ROWTYPE;
11482     hold          action.hold_request%ROWTYPE;
11483     ser_rec       serial.record_entry%ROWTYPE;
11484     uri_count     INT := 0;
11485     counter       INT := 0;
11486     uri_datafield TEXT;
11487     uri_text      TEXT := '';
11488 BEGIN
11489
11490     -- move any 856 entries on records that have at least one MARC-mapped URI entry
11491     SELECT  INTO uri_count COUNT(*)
11492       FROM  asset.uri_call_number_map m
11493             JOIN asset.call_number cn ON (m.call_number = cn.id)
11494       WHERE cn.record = source_record;
11495
11496     IF uri_count > 0 THEN
11497
11498         SELECT  COUNT(*) INTO counter
11499           FROM  oils_xpath_table(
11500                     'id',
11501                     'marc',
11502                     'biblio.record_entry',
11503                     '//*[@tag="856"]',
11504                     'id=' || source_record
11505                 ) as t(i int,c text);
11506
11507         FOR i IN 1 .. counter LOOP
11508             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
11509                         ' tag="856"' || 
11510                         ' ind1="' || FIRST(ind1) || '"'  || 
11511                         ' ind2="' || FIRST(ind2) || '">' || 
11512                         array_to_string(
11513                             array_accum(
11514                                 '<subfield code="' || subfield || '">' ||
11515                                 regexp_replace(
11516                                     regexp_replace(
11517                                         regexp_replace(data,'&','&amp;','g'),
11518                                         '>', '&gt;', 'g'
11519                                     ),
11520                                     '<', '&lt;', 'g'
11521                                 ) || '</subfield>'
11522                             ), ''
11523                         ) || '</datafield>' INTO uri_datafield
11524               FROM  oils_xpath_table(
11525                         'id',
11526                         'marc',
11527                         'biblio.record_entry',
11528                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
11529                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
11530                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
11531                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
11532                         'id=' || source_record
11533                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
11534
11535             uri_text := uri_text || uri_datafield;
11536         END LOOP;
11537
11538         IF uri_text <> '' THEN
11539             UPDATE  biblio.record_entry
11540               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
11541               WHERE id = target_record;
11542         END IF;
11543
11544     END IF;
11545
11546     -- Find and move metarecords to the target record
11547     SELECT  INTO metarec *
11548       FROM  metabib.metarecord
11549       WHERE master_record = source_record;
11550
11551     IF FOUND THEN
11552         UPDATE  metabib.metarecord
11553           SET   master_record = target_record,
11554             mods = NULL
11555           WHERE id = metarec.id;
11556
11557         moved_objects := moved_objects + 1;
11558     END IF;
11559
11560     -- Find call numbers attached to the source ...
11561     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
11562
11563         SELECT  INTO target_cn *
11564           FROM  asset.call_number
11565           WHERE label = source_cn.label
11566             AND owning_lib = source_cn.owning_lib
11567             AND record = target_record;
11568
11569         -- ... and if there's a conflicting one on the target ...
11570         IF FOUND THEN
11571
11572             -- ... move the copies to that, and ...
11573             UPDATE  asset.copy
11574               SET   call_number = target_cn.id
11575               WHERE call_number = source_cn.id;
11576
11577             -- ... move V holds to the move-target call number
11578             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
11579
11580                 UPDATE  action.hold_request
11581                   SET   target = target_cn.id
11582                   WHERE id = hold.id;
11583
11584                 moved_objects := moved_objects + 1;
11585             END LOOP;
11586
11587         -- ... if not ...
11588         ELSE
11589             -- ... just move the call number to the target record
11590             UPDATE  asset.call_number
11591               SET   record = target_record
11592               WHERE id = source_cn.id;
11593         END IF;
11594
11595         moved_objects := moved_objects + 1;
11596     END LOOP;
11597
11598     -- Find T holds targeting the source record ...
11599     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
11600
11601         -- ... and move them to the target record
11602         UPDATE  action.hold_request
11603           SET   target = target_record
11604           WHERE id = hold.id;
11605
11606         moved_objects := moved_objects + 1;
11607     END LOOP;
11608
11609     -- Find serial records targeting the source record ...
11610     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
11611         -- ... and move them to the target record
11612         UPDATE  serial.record_entry
11613           SET   record = target_record
11614           WHERE id = ser_rec.id;
11615
11616         moved_objects := moved_objects + 1;
11617     END LOOP;
11618
11619     -- Finally, "delete" the source record
11620     DELETE FROM biblio.record_entry WHERE id = source_record;
11621
11622     -- That's all, folks!
11623     RETURN moved_objects;
11624 END;
11625 $func$ LANGUAGE plpgsql;
11626
11627 CREATE OR REPLACE FUNCTION acq.transfer_fund(
11628         old_fund   IN INT,
11629         old_amount IN NUMERIC,     -- in currency of old fund
11630         new_fund   IN INT,
11631         new_amount IN NUMERIC,     -- in currency of new fund
11632         user_id    IN INT,
11633         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
11634         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
11635 ) RETURNS VOID AS $$
11636 /* -------------------------------------------------------------------------------
11637
11638 Function to transfer money from one fund to another.
11639
11640 A transfer is represented as a pair of entries in acq.fund_allocation, with a
11641 negative amount for the old (losing) fund and a positive amount for the new
11642 (gaining) fund.  In some cases there may be more than one such pair of entries
11643 in order to pull the money from different funding sources, or more specifically
11644 from different funding source credits.  For each such pair there is also an
11645 entry in acq.fund_transfer.
11646
11647 Since funding_source is a non-nullable column in acq.fund_allocation, we must
11648 choose a funding source for the transferred money to come from.  This choice
11649 must meet two constraints, so far as possible:
11650
11651 1. The amount transferred from a given funding source must not exceed the
11652 amount allocated to the old fund by the funding source.  To that end we
11653 compare the amount being transferred to the amount allocated.
11654
11655 2. We shouldn't transfer money that has already been spent or encumbered, as
11656 defined by the funding attribution process.  We attribute expenses to the
11657 oldest funding source credits first.  In order to avoid transferring that
11658 attributed money, we reverse the priority, transferring from the newest funding
11659 source credits first.  There can be no guarantee that this approach will
11660 avoid overcommitting a fund, but no other approach can do any better.
11661
11662 In this context the age of a funding source credit is defined by the
11663 deadline_date for credits with deadline_dates, and by the effective_date for
11664 credits without deadline_dates, with the proviso that credits with deadline_dates
11665 are all considered "older" than those without.
11666
11667 ----------
11668
11669 In the signature for this function, there is one last parameter commented out,
11670 named "funding_source_in".  Correspondingly, the WHERE clause for the query
11671 driving the main loop has an OR clause commented out, which references the
11672 funding_source_in parameter.
11673
11674 If these lines are uncommented, this function will allow the user optionally to
11675 restrict a fund transfer to a specified funding source.  If the source
11676 parameter is left NULL, then there will be no such restriction.
11677
11678 ------------------------------------------------------------------------------- */ 
11679 DECLARE
11680         same_currency      BOOLEAN;
11681         currency_ratio     NUMERIC;
11682         old_fund_currency  TEXT;
11683         old_remaining      NUMERIC;  -- in currency of old fund
11684         new_fund_currency  TEXT;
11685         new_fund_active    BOOLEAN;
11686         new_remaining      NUMERIC;  -- in currency of new fund
11687         curr_old_amt       NUMERIC;  -- in currency of old fund
11688         curr_new_amt       NUMERIC;  -- in currency of new fund
11689         source_addition    NUMERIC;  -- in currency of funding source
11690         source_deduction   NUMERIC;  -- in currency of funding source
11691         orig_allocated_amt NUMERIC;  -- in currency of funding source
11692         allocated_amt      NUMERIC;  -- in currency of fund
11693         source             RECORD;
11694 BEGIN
11695         --
11696         -- Sanity checks
11697         --
11698         IF old_fund IS NULL THEN
11699                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
11700         END IF;
11701         --
11702         IF old_amount IS NULL THEN
11703                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
11704         END IF;
11705         --
11706         -- The new fund and its amount must be both NULL or both not NULL.
11707         --
11708         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
11709                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
11710         END IF;
11711         --
11712         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
11713                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
11714         END IF;
11715         --
11716         IF user_id IS NULL THEN
11717                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
11718         END IF;
11719         --
11720         -- Initialize the amounts to be transferred, each denominated
11721         -- in the currency of its respective fund.  They will be
11722         -- reduced on each iteration of the loop.
11723         --
11724         old_remaining := old_amount;
11725         new_remaining := new_amount;
11726         --
11727         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
11728         --      old_amount, old_fund, new_amount, new_fund;
11729         --
11730         -- Get the currency types of the old and new funds.
11731         --
11732         SELECT
11733                 currency_type
11734         INTO
11735                 old_fund_currency
11736         FROM
11737                 acq.fund
11738         WHERE
11739                 id = old_fund;
11740         --
11741         IF old_fund_currency IS NULL THEN
11742                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
11743         END IF;
11744         --
11745         IF new_fund IS NOT NULL THEN
11746                 SELECT
11747                         currency_type,
11748                         active
11749                 INTO
11750                         new_fund_currency,
11751                         new_fund_active
11752                 FROM
11753                         acq.fund
11754                 WHERE
11755                         id = new_fund;
11756                 --
11757                 IF new_fund_currency IS NULL THEN
11758                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
11759                 ELSIF NOT new_fund_active THEN
11760                         --
11761                         -- No point in putting money into a fund from whence you can't spend it
11762                         --
11763                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
11764                 END IF;
11765                 --
11766                 IF new_amount = old_amount THEN
11767                         same_currency := true;
11768                         currency_ratio := 1;
11769                 ELSE
11770                         --
11771                         -- We'll have to translate currency between funds.  We presume that
11772                         -- the calling code has already applied an appropriate exchange rate,
11773                         -- so we'll apply the same conversion to each sub-transfer.
11774                         --
11775                         same_currency := false;
11776                         currency_ratio := new_amount / old_amount;
11777                 END IF;
11778         END IF;
11779         --
11780         -- Identify the funding source(s) from which we want to transfer the money.
11781         -- The principle is that we want to transfer the newest money first, because
11782         -- we spend the oldest money first.  The priority for spending is defined
11783         -- by a sort of the view acq.ordered_funding_source_credit.
11784         --
11785         FOR source in
11786                 SELECT
11787                         ofsc.id,
11788                         ofsc.funding_source,
11789                         ofsc.amount,
11790                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
11791                                 AS converted_amt,
11792                         fs.currency_type
11793                 FROM
11794                         acq.ordered_funding_source_credit AS ofsc,
11795                         acq.funding_source fs
11796                 WHERE
11797                         ofsc.funding_source = fs.id
11798                         and ofsc.funding_source IN
11799                         (
11800                                 SELECT funding_source
11801                                 FROM acq.fund_allocation
11802                                 WHERE fund = old_fund
11803                         )
11804                         -- and
11805                         -- (
11806                         --      ofsc.funding_source = funding_source_in
11807                         --      OR funding_source_in IS NULL
11808                         -- )
11809                 ORDER BY
11810                         ofsc.sort_priority desc,
11811                         ofsc.sort_date desc,
11812                         ofsc.id desc
11813         LOOP
11814                 --
11815                 -- Determine how much money the old fund got from this funding source,
11816                 -- denominated in the currency types of the source and of the fund.
11817                 -- This result may reflect transfers from previous iterations.
11818                 --
11819                 SELECT
11820                         COALESCE( sum( amount ), 0 ),
11821                         COALESCE( sum( amount )
11822                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
11823                 INTO
11824                         orig_allocated_amt,     -- in currency of the source
11825                         allocated_amt           -- in currency of the old fund
11826                 FROM
11827                         acq.fund_allocation
11828                 WHERE
11829                         fund = old_fund
11830                         and funding_source = source.funding_source;
11831                 --      
11832                 -- Determine how much to transfer from this credit, in the currency
11833                 -- of the fund.   Begin with the amount remaining to be attributed:
11834                 --
11835                 curr_old_amt := old_remaining;
11836                 --
11837                 -- Can't attribute more than was allocated from the fund:
11838                 --
11839                 IF curr_old_amt > allocated_amt THEN
11840                         curr_old_amt := allocated_amt;
11841                 END IF;
11842                 --
11843                 -- Can't attribute more than the amount of the current credit:
11844                 --
11845                 IF curr_old_amt > source.converted_amt THEN
11846                         curr_old_amt := source.converted_amt;
11847                 END IF;
11848                 --
11849                 curr_old_amt := trunc( curr_old_amt, 2 );
11850                 --
11851                 old_remaining := old_remaining - curr_old_amt;
11852                 --
11853                 -- Determine the amount to be deducted, if any,
11854                 -- from the old allocation.
11855                 --
11856                 IF old_remaining > 0 THEN
11857                         --
11858                         -- In this case we're using the whole allocation, so use that
11859                         -- amount directly instead of applying a currency translation
11860                         -- and thereby inviting round-off errors.
11861                         --
11862                         source_deduction := - orig_allocated_amt;
11863                 ELSE 
11864                         source_deduction := trunc(
11865                                 ( - curr_old_amt ) *
11866                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
11867                                 2 );
11868                 END IF;
11869                 --
11870                 IF source_deduction <> 0 THEN
11871                         --
11872                         -- Insert negative allocation for old fund in fund_allocation,
11873                         -- converted into the currency of the funding source
11874                         --
11875                         INSERT INTO acq.fund_allocation (
11876                                 funding_source,
11877                                 fund,
11878                                 amount,
11879                                 allocator,
11880                                 note
11881                         ) VALUES (
11882                                 source.funding_source,
11883                                 old_fund,
11884                                 source_deduction,
11885                                 user_id,
11886                                 'Transfer to fund ' || new_fund
11887                         );
11888                 END IF;
11889                 --
11890                 IF new_fund IS NOT NULL THEN
11891                         --
11892                         -- Determine how much to add to the new fund, in
11893                         -- its currency, and how much remains to be added:
11894                         --
11895                         IF same_currency THEN
11896                                 curr_new_amt := curr_old_amt;
11897                         ELSE
11898                                 IF old_remaining = 0 THEN
11899                                         --
11900                                         -- This is the last iteration, so nothing should be left
11901                                         --
11902                                         curr_new_amt := new_remaining;
11903                                         new_remaining := 0;
11904                                 ELSE
11905                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
11906                                         new_remaining := new_remaining - curr_new_amt;
11907                                 END IF;
11908                         END IF;
11909                         --
11910                         -- Determine how much to add, if any,
11911                         -- to the new fund's allocation.
11912                         --
11913                         IF old_remaining > 0 THEN
11914                                 --
11915                                 -- In this case we're using the whole allocation, so use that amount
11916                                 -- amount directly instead of applying a currency translation and
11917                                 -- thereby inviting round-off errors.
11918                                 --
11919                                 source_addition := orig_allocated_amt;
11920                         ELSIF source.currency_type = old_fund_currency THEN
11921                                 --
11922                                 -- In this case we don't need a round trip currency translation,
11923                                 -- thereby inviting round-off errors:
11924                                 --
11925                                 source_addition := curr_old_amt;
11926                         ELSE 
11927                                 source_addition := trunc(
11928                                         curr_new_amt *
11929                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
11930                                         2 );
11931                         END IF;
11932                         --
11933                         IF source_addition <> 0 THEN
11934                                 --
11935                                 -- Insert positive allocation for new fund in fund_allocation,
11936                                 -- converted to the currency of the founding source
11937                                 --
11938                                 INSERT INTO acq.fund_allocation (
11939                                         funding_source,
11940                                         fund,
11941                                         amount,
11942                                         allocator,
11943                                         note
11944                                 ) VALUES (
11945                                         source.funding_source,
11946                                         new_fund,
11947                                         source_addition,
11948                                         user_id,
11949                                         'Transfer from fund ' || old_fund
11950                                 );
11951                         END IF;
11952                 END IF;
11953                 --
11954                 IF trunc( curr_old_amt, 2 ) <> 0
11955                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
11956                         --
11957                         -- Insert row in fund_transfer, using amounts in the currency of the funds
11958                         --
11959                         INSERT INTO acq.fund_transfer (
11960                                 src_fund,
11961                                 src_amount,
11962                                 dest_fund,
11963                                 dest_amount,
11964                                 transfer_user,
11965                                 note,
11966                                 funding_source_credit
11967                         ) VALUES (
11968                                 old_fund,
11969                                 trunc( curr_old_amt, 2 ),
11970                                 new_fund,
11971                                 trunc( curr_new_amt, 2 ),
11972                                 user_id,
11973                                 xfer_note,
11974                                 source.id
11975                         );
11976                 END IF;
11977                 --
11978                 if old_remaining <= 0 THEN
11979                         EXIT;                   -- Nothing more to be transferred
11980                 END IF;
11981         END LOOP;
11982 END;
11983 $$ LANGUAGE plpgsql;
11984
11985 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
11986         old_year INTEGER,
11987         user_id INTEGER,
11988         org_unit_id INTEGER
11989 ) RETURNS VOID AS $$
11990 DECLARE
11991 --
11992 new_id      INT;
11993 old_fund    RECORD;
11994 org_found   BOOLEAN;
11995 --
11996 BEGIN
11997         --
11998         -- Sanity checks
11999         --
12000         IF old_year IS NULL THEN
12001                 RAISE EXCEPTION 'Input year argument is NULL';
12002         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12003                 RAISE EXCEPTION 'Input year is out of range';
12004         END IF;
12005         --
12006         IF user_id IS NULL THEN
12007                 RAISE EXCEPTION 'Input user id argument is NULL';
12008         END IF;
12009         --
12010         IF org_unit_id IS NULL THEN
12011                 RAISE EXCEPTION 'Org unit id argument is NULL';
12012         ELSE
12013                 SELECT TRUE INTO org_found
12014                 FROM actor.org_unit
12015                 WHERE id = org_unit_id;
12016                 --
12017                 IF org_found IS NULL THEN
12018                         RAISE EXCEPTION 'Org unit id is invalid';
12019                 END IF;
12020         END IF;
12021         --
12022         -- Loop over the applicable funds
12023         --
12024         FOR old_fund in SELECT * FROM acq.fund
12025         WHERE
12026                 year = old_year
12027                 AND propagate
12028                 AND org = org_unit_id
12029         LOOP
12030                 BEGIN
12031                         INSERT INTO acq.fund (
12032                                 org,
12033                                 name,
12034                                 year,
12035                                 currency_type,
12036                                 code,
12037                                 rollover,
12038                                 propagate,
12039                                 balance_warning_percent,
12040                                 balance_stop_percent
12041                         ) VALUES (
12042                                 old_fund.org,
12043                                 old_fund.name,
12044                                 old_year + 1,
12045                                 old_fund.currency_type,
12046                                 old_fund.code,
12047                                 old_fund.rollover,
12048                                 true,
12049                                 old_fund.balance_warning_percent,
12050                                 old_fund.balance_stop_percent
12051                         )
12052                         RETURNING id INTO new_id;
12053                 EXCEPTION
12054                         WHEN unique_violation THEN
12055                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12056                                 CONTINUE;
12057                 END;
12058                 --RAISE NOTICE 'Propagating fund % to fund %',
12059                 --      old_fund.code, new_id;
12060         END LOOP;
12061 END;
12062 $$ LANGUAGE plpgsql;
12063
12064 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12065         old_year INTEGER,
12066         user_id INTEGER,
12067         org_unit_id INTEGER
12068 ) RETURNS VOID AS $$
12069 DECLARE
12070 --
12071 new_id      INT;
12072 old_fund    RECORD;
12073 org_found   BOOLEAN;
12074 --
12075 BEGIN
12076         --
12077         -- Sanity checks
12078         --
12079         IF old_year IS NULL THEN
12080                 RAISE EXCEPTION 'Input year argument is NULL';
12081         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12082                 RAISE EXCEPTION 'Input year is out of range';
12083         END IF;
12084         --
12085         IF user_id IS NULL THEN
12086                 RAISE EXCEPTION 'Input user id argument is NULL';
12087         END IF;
12088         --
12089         IF org_unit_id IS NULL THEN
12090                 RAISE EXCEPTION 'Org unit id argument is NULL';
12091         ELSE
12092                 SELECT TRUE INTO org_found
12093                 FROM actor.org_unit
12094                 WHERE id = org_unit_id;
12095                 --
12096                 IF org_found IS NULL THEN
12097                         RAISE EXCEPTION 'Org unit id is invalid';
12098                 END IF;
12099         END IF;
12100         --
12101         -- Loop over the applicable funds
12102         --
12103         FOR old_fund in SELECT * FROM acq.fund
12104         WHERE
12105                 year = old_year
12106                 AND propagate
12107                 AND org in (
12108                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12109                 )
12110         LOOP
12111                 BEGIN
12112                         INSERT INTO acq.fund (
12113                                 org,
12114                                 name,
12115                                 year,
12116                                 currency_type,
12117                                 code,
12118                                 rollover,
12119                                 propagate,
12120                                 balance_warning_percent,
12121                                 balance_stop_percent
12122                         ) VALUES (
12123                                 old_fund.org,
12124                                 old_fund.name,
12125                                 old_year + 1,
12126                                 old_fund.currency_type,
12127                                 old_fund.code,
12128                                 old_fund.rollover,
12129                                 true,
12130                                 old_fund.balance_warning_percent,
12131                                 old_fund.balance_stop_percent
12132                         )
12133                         RETURNING id INTO new_id;
12134                 EXCEPTION
12135                         WHEN unique_violation THEN
12136                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12137                                 CONTINUE;
12138                 END;
12139                 --RAISE NOTICE 'Propagating fund % to fund %',
12140                 --      old_fund.code, new_id;
12141         END LOOP;
12142 END;
12143 $$ LANGUAGE plpgsql;
12144
12145 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12146         old_year INTEGER,
12147         user_id INTEGER,
12148         org_unit_id INTEGER
12149 ) RETURNS VOID AS $$
12150 DECLARE
12151 --
12152 new_fund    INT;
12153 new_year    INT := old_year + 1;
12154 org_found   BOOL;
12155 xfer_amount NUMERIC;
12156 roll_fund   RECORD;
12157 deb         RECORD;
12158 detail      RECORD;
12159 --
12160 BEGIN
12161         --
12162         -- Sanity checks
12163         --
12164         IF old_year IS NULL THEN
12165                 RAISE EXCEPTION 'Input year argument is NULL';
12166     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12167         RAISE EXCEPTION 'Input year is out of range';
12168         END IF;
12169         --
12170         IF user_id IS NULL THEN
12171                 RAISE EXCEPTION 'Input user id argument is NULL';
12172         END IF;
12173         --
12174         IF org_unit_id IS NULL THEN
12175                 RAISE EXCEPTION 'Org unit id argument is NULL';
12176         ELSE
12177                 --
12178                 -- Validate the org unit
12179                 --
12180                 SELECT TRUE
12181                 INTO org_found
12182                 FROM actor.org_unit
12183                 WHERE id = org_unit_id;
12184                 --
12185                 IF org_found IS NULL THEN
12186                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12187                 END IF;
12188         END IF;
12189         --
12190         -- Loop over the propagable funds to identify the details
12191         -- from the old fund plus the id of the new one, if it exists.
12192         --
12193         FOR roll_fund in
12194         SELECT
12195             oldf.id AS old_fund,
12196             oldf.org,
12197             oldf.name,
12198             oldf.currency_type,
12199             oldf.code,
12200                 oldf.rollover,
12201             newf.id AS new_fund_id
12202         FROM
12203         acq.fund AS oldf
12204         LEFT JOIN acq.fund AS newf
12205                 ON ( oldf.code = newf.code )
12206         WHERE
12207                     oldf.org = org_unit_id
12208                 and oldf.year = old_year
12209                 and oldf.propagate
12210         and newf.year = new_year
12211         LOOP
12212                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12213                 --
12214                 IF roll_fund.new_fund_id IS NULL THEN
12215                         --
12216                         -- The old fund hasn't been propagated yet.  Propagate it now.
12217                         --
12218                         INSERT INTO acq.fund (
12219                                 org,
12220                                 name,
12221                                 year,
12222                                 currency_type,
12223                                 code,
12224                                 rollover,
12225                                 propagate,
12226                                 balance_warning_percent,
12227                                 balance_stop_percent
12228                         ) VALUES (
12229                                 roll_fund.org,
12230                                 roll_fund.name,
12231                                 new_year,
12232                                 roll_fund.currency_type,
12233                                 roll_fund.code,
12234                                 true,
12235                                 true,
12236                                 roll_fund.balance_warning_percent,
12237                                 roll_fund.balance_stop_percent
12238                         )
12239                         RETURNING id INTO new_fund;
12240                 ELSE
12241                         new_fund = roll_fund.new_fund_id;
12242                 END IF;
12243                 --
12244                 -- Determine the amount to transfer
12245                 --
12246                 SELECT amount
12247                 INTO xfer_amount
12248                 FROM acq.fund_spent_balance
12249                 WHERE fund = roll_fund.old_fund;
12250                 --
12251                 IF xfer_amount <> 0 THEN
12252                         IF roll_fund.rollover THEN
12253                                 --
12254                                 -- Transfer balance from old fund to new
12255                                 --
12256                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12257                                 --
12258                                 PERFORM acq.transfer_fund(
12259                                         roll_fund.old_fund,
12260                                         xfer_amount,
12261                                         new_fund,
12262                                         xfer_amount,
12263                                         user_id,
12264                                         'Rollover'
12265                                 );
12266                         ELSE
12267                                 --
12268                                 -- Transfer balance from old fund to the void
12269                                 --
12270                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12271                                 --
12272                                 PERFORM acq.transfer_fund(
12273                                         roll_fund.old_fund,
12274                                         xfer_amount,
12275                                         NULL,
12276                                         NULL,
12277                                         user_id,
12278                                         'Rollover'
12279                                 );
12280                         END IF;
12281                 END IF;
12282                 --
12283                 IF roll_fund.rollover THEN
12284                         --
12285                         -- Move any lineitems from the old fund to the new one
12286                         -- where the associated debit is an encumbrance.
12287                         --
12288                         -- Any other tables tying expenditure details to funds should
12289                         -- receive similar treatment.  At this writing there are none.
12290                         --
12291                         UPDATE acq.lineitem_detail
12292                         SET fund = new_fund
12293                         WHERE
12294                         fund = roll_fund.old_fund -- this condition may be redundant
12295                         AND fund_debit in
12296                         (
12297                                 SELECT id
12298                                 FROM acq.fund_debit
12299                                 WHERE
12300                                 fund = roll_fund.old_fund
12301                                 AND encumbrance
12302                         );
12303                         --
12304                         -- Move encumbrance debits from the old fund to the new fund
12305                         --
12306                         UPDATE acq.fund_debit
12307                         SET fund = new_fund
12308                         wHERE
12309                                 fund = roll_fund.old_fund
12310                                 AND encumbrance;
12311                 END IF;
12312                 --
12313                 -- Mark old fund as inactive, now that we've closed it
12314                 --
12315                 UPDATE acq.fund
12316                 SET active = FALSE
12317                 WHERE id = roll_fund.old_fund;
12318         END LOOP;
12319 END;
12320 $$ LANGUAGE plpgsql;
12321
12322 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12323         old_year INTEGER,
12324         user_id INTEGER,
12325         org_unit_id INTEGER
12326 ) RETURNS VOID AS $$
12327 DECLARE
12328 --
12329 new_fund    INT;
12330 new_year    INT := old_year + 1;
12331 org_found   BOOL;
12332 xfer_amount NUMERIC;
12333 roll_fund   RECORD;
12334 deb         RECORD;
12335 detail      RECORD;
12336 --
12337 BEGIN
12338         --
12339         -- Sanity checks
12340         --
12341         IF old_year IS NULL THEN
12342                 RAISE EXCEPTION 'Input year argument is NULL';
12343     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12344         RAISE EXCEPTION 'Input year is out of range';
12345         END IF;
12346         --
12347         IF user_id IS NULL THEN
12348                 RAISE EXCEPTION 'Input user id argument is NULL';
12349         END IF;
12350         --
12351         IF org_unit_id IS NULL THEN
12352                 RAISE EXCEPTION 'Org unit id argument is NULL';
12353         ELSE
12354                 --
12355                 -- Validate the org unit
12356                 --
12357                 SELECT TRUE
12358                 INTO org_found
12359                 FROM actor.org_unit
12360                 WHERE id = org_unit_id;
12361                 --
12362                 IF org_found IS NULL THEN
12363                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12364                 END IF;
12365         END IF;
12366         --
12367         -- Loop over the propagable funds to identify the details
12368         -- from the old fund plus the id of the new one, if it exists.
12369         --
12370         FOR roll_fund in
12371         SELECT
12372             oldf.id AS old_fund,
12373             oldf.org,
12374             oldf.name,
12375             oldf.currency_type,
12376             oldf.code,
12377                 oldf.rollover,
12378             newf.id AS new_fund_id
12379         FROM
12380         acq.fund AS oldf
12381         LEFT JOIN acq.fund AS newf
12382                 ON ( oldf.code = newf.code )
12383         WHERE
12384                     oldf.year = old_year
12385                 AND oldf.propagate
12386         AND newf.year = new_year
12387                 AND oldf.org in (
12388                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12389                 )
12390         LOOP
12391                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12392                 --
12393                 IF roll_fund.new_fund_id IS NULL THEN
12394                         --
12395                         -- The old fund hasn't been propagated yet.  Propagate it now.
12396                         --
12397                         INSERT INTO acq.fund (
12398                                 org,
12399                                 name,
12400                                 year,
12401                                 currency_type,
12402                                 code,
12403                                 rollover,
12404                                 propagate,
12405                                 balance_warning_percent,
12406                                 balance_stop_percent
12407                         ) VALUES (
12408                                 roll_fund.org,
12409                                 roll_fund.name,
12410                                 new_year,
12411                                 roll_fund.currency_type,
12412                                 roll_fund.code,
12413                                 true,
12414                                 true,
12415                                 roll_fund.balance_warning_percent,
12416                                 roll_fund.balance_stop_percent
12417                         )
12418                         RETURNING id INTO new_fund;
12419                 ELSE
12420                         new_fund = roll_fund.new_fund_id;
12421                 END IF;
12422                 --
12423                 -- Determine the amount to transfer
12424                 --
12425                 SELECT amount
12426                 INTO xfer_amount
12427                 FROM acq.fund_spent_balance
12428                 WHERE fund = roll_fund.old_fund;
12429                 --
12430                 IF xfer_amount <> 0 THEN
12431                         IF roll_fund.rollover THEN
12432                                 --
12433                                 -- Transfer balance from old fund to new
12434                                 --
12435                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12436                                 --
12437                                 PERFORM acq.transfer_fund(
12438                                         roll_fund.old_fund,
12439                                         xfer_amount,
12440                                         new_fund,
12441                                         xfer_amount,
12442                                         user_id,
12443                                         'Rollover'
12444                                 );
12445                         ELSE
12446                                 --
12447                                 -- Transfer balance from old fund to the void
12448                                 --
12449                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12450                                 --
12451                                 PERFORM acq.transfer_fund(
12452                                         roll_fund.old_fund,
12453                                         xfer_amount,
12454                                         NULL,
12455                                         NULL,
12456                                         user_id,
12457                                         'Rollover'
12458                                 );
12459                         END IF;
12460                 END IF;
12461                 --
12462                 IF roll_fund.rollover THEN
12463                         --
12464                         -- Move any lineitems from the old fund to the new one
12465                         -- where the associated debit is an encumbrance.
12466                         --
12467                         -- Any other tables tying expenditure details to funds should
12468                         -- receive similar treatment.  At this writing there are none.
12469                         --
12470                         UPDATE acq.lineitem_detail
12471                         SET fund = new_fund
12472                         WHERE
12473                         fund = roll_fund.old_fund -- this condition may be redundant
12474                         AND fund_debit in
12475                         (
12476                                 SELECT id
12477                                 FROM acq.fund_debit
12478                                 WHERE
12479                                 fund = roll_fund.old_fund
12480                                 AND encumbrance
12481                         );
12482                         --
12483                         -- Move encumbrance debits from the old fund to the new fund
12484                         --
12485                         UPDATE acq.fund_debit
12486                         SET fund = new_fund
12487                         wHERE
12488                                 fund = roll_fund.old_fund
12489                                 AND encumbrance;
12490                 END IF;
12491                 --
12492                 -- Mark old fund as inactive, now that we've closed it
12493                 --
12494                 UPDATE acq.fund
12495                 SET active = FALSE
12496                 WHERE id = roll_fund.old_fund;
12497         END LOOP;
12498 END;
12499 $$ LANGUAGE plpgsql;
12500
12501 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
12502     SELECT regexp_replace($1, ',', '', 'g');
12503 $$ LANGUAGE SQL STRICT IMMUTABLE;
12504
12505 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
12506     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
12507 $$ LANGUAGE SQL STRICT IMMUTABLE;
12508
12509 CREATE TABLE acq.distribution_formula_application (
12510     id BIGSERIAL PRIMARY KEY,
12511     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
12512     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
12513     formula INT NOT NULL
12514         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
12515     lineitem INT NOT NULL
12516         REFERENCES acq.lineitem( id )
12517                 ON DELETE CASCADE
12518                 DEFERRABLE INITIALLY DEFERRED
12519 );
12520
12521 CREATE INDEX acqdfa_df_idx
12522     ON acq.distribution_formula_application(formula);
12523 CREATE INDEX acqdfa_li_idx
12524     ON acq.distribution_formula_application(lineitem);
12525 CREATE INDEX acqdfa_creator_idx
12526     ON acq.distribution_formula_application(creator);
12527
12528 CREATE TABLE acq.user_request_type (
12529     id      SERIAL  PRIMARY KEY,
12530     label   TEXT    NOT NULL UNIQUE -- i18n-ize
12531 );
12532
12533 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
12534 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
12535 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
12536 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
12537 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
12538
12539 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
12540
12541 CREATE TABLE acq.cancel_reason (
12542         id            SERIAL            PRIMARY KEY,
12543         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
12544                                         DEFERRABLE INITIALLY DEFERRED,
12545         label         TEXT              NOT NULL,
12546         description   TEXT              NOT NULL,
12547         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
12548         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
12549 );
12550
12551 -- Reserve ids 1-999 for stock reasons
12552 -- Reserve ids 1000-1999 for EDI reasons
12553 -- 2000+ are available for staff to create
12554
12555 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
12556
12557 CREATE TABLE acq.user_request (
12558     id                  SERIAL  PRIMARY KEY,
12559     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
12560     hold                BOOL    NOT NULL DEFAULT TRUE,
12561
12562     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
12563     holdable_formats    TEXT,           -- nullable, for use in hold creation
12564     phone_notify        TEXT,
12565     email_notify        BOOL    NOT NULL DEFAULT TRUE,
12566     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
12567     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
12568     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
12569     need_before         TIMESTAMPTZ,    -- don't create holds after this
12570     max_fee             TEXT,
12571
12572     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
12573     isxn                TEXT,
12574     title               TEXT,
12575     volume              TEXT,
12576     author              TEXT,
12577     article_title       TEXT,
12578     article_pages       TEXT,
12579     publisher           TEXT,
12580     location            TEXT,
12581     pubdate             TEXT,
12582     mentioned           TEXT,
12583     other_info          TEXT,
12584         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
12585                                              DEFERRABLE INITIALLY DEFERRED
12586 );
12587
12588 CREATE TABLE acq.lineitem_alert_text (
12589         id               SERIAL         PRIMARY KEY,
12590         code             TEXT           UNIQUE NOT NULL,
12591         description      TEXT,
12592         owning_lib       INT            NOT NULL
12593                                         REFERENCES actor.org_unit(id)
12594                                         DEFERRABLE INITIALLY DEFERRED,
12595         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
12596 );
12597
12598 ALTER TABLE acq.lineitem_note
12599         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
12600                                          DEFERRABLE INITIALLY DEFERRED;
12601
12602 -- add ON DELETE CASCADE clause
12603
12604 ALTER TABLE acq.lineitem_note
12605         DROP CONSTRAINT lineitem_note_lineitem_fkey;
12606
12607 ALTER TABLE acq.lineitem_note
12608         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
12609                 ON DELETE CASCADE
12610                 DEFERRABLE INITIALLY DEFERRED;
12611
12612 ALTER TABLE acq.lineitem_note
12613         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
12614
12615 CREATE TABLE acq.invoice_method (
12616     code    TEXT    PRIMARY KEY,
12617     name    TEXT    NOT NULL -- i18n-ize
12618 );
12619 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
12620 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
12621
12622 CREATE TABLE acq.invoice_payment_method (
12623         code      TEXT     PRIMARY KEY,
12624         name      TEXT     NOT NULL
12625 );
12626
12627 CREATE TABLE acq.invoice (
12628     id             SERIAL      PRIMARY KEY,
12629     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
12630     provider       INT         NOT NULL REFERENCES acq.provider (id),
12631     shipper        INT         NOT NULL REFERENCES acq.provider (id),
12632     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
12633     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
12634     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
12635     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
12636         payment_auth   TEXT,
12637         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
12638                                    DEFERRABLE INITIALLY DEFERRED,
12639         note           TEXT,
12640     complete       BOOL        NOT NULL DEFAULT FALSE,
12641     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
12642 );
12643
12644 CREATE TABLE acq.invoice_entry (
12645     id              SERIAL      PRIMARY KEY,
12646     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
12647     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
12648     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
12649     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
12650     phys_item_count INT, -- and how many did staff count
12651     note            TEXT,
12652     billed_per_item BOOL,
12653     cost_billed     NUMERIC(8,2),
12654     actual_cost     NUMERIC(8,2),
12655         amount_paid     NUMERIC (8,2)
12656 );
12657
12658 CREATE TABLE acq.invoice_item_type (
12659     code    TEXT    PRIMARY KEY,
12660     name    TEXT    NOT NULL, -- i18n-ize
12661         prorate BOOL    NOT NULL DEFAULT FALSE
12662 );
12663
12664 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
12665 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
12666 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
12667 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
12668 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
12669 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Searial Subscription', 'aiit', 'name'));
12670
12671 CREATE TABLE acq.po_item (
12672         id              SERIAL      PRIMARY KEY,
12673         purchase_order  INT         REFERENCES acq.purchase_order (id)
12674                                     ON UPDATE CASCADE ON DELETE SET NULL
12675                                     DEFERRABLE INITIALLY DEFERRED,
12676         fund_debit      INT         REFERENCES acq.fund_debit (id)
12677                                     DEFERRABLE INITIALLY DEFERRED,
12678         inv_item_type   TEXT        NOT NULL
12679                                     REFERENCES acq.invoice_item_type (code)
12680                                     DEFERRABLE INITIALLY DEFERRED,
12681         title           TEXT,
12682         author          TEXT,
12683         note            TEXT,
12684         estimated_cost  NUMERIC(8,2),
12685         fund            INT         REFERENCES acq.fund (id)
12686                                     DEFERRABLE INITIALLY DEFERRED,
12687         target          BIGINT
12688 );
12689
12690 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
12691     id              SERIAL      PRIMARY KEY,
12692     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
12693     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
12694     fund_debit      INT         REFERENCES acq.fund_debit (id),
12695     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
12696     title           TEXT,
12697     author          TEXT,
12698     note            TEXT,
12699     cost_billed     NUMERIC(8,2),
12700     actual_cost     NUMERIC(8,2),
12701     fund            INT         REFERENCES acq.fund (id)
12702                                 DEFERRABLE INITIALLY DEFERRED,
12703     amount_paid     NUMERIC (8,2),
12704     po_item         INT         REFERENCES acq.po_item (id)
12705                                 DEFERRABLE INITIALLY DEFERRED,
12706     target          BIGINT
12707 );
12708
12709 CREATE TABLE acq.edi_message (
12710     id               SERIAL          PRIMARY KEY,
12711     account          INTEGER         REFERENCES acq.edi_account(id)
12712                                      DEFERRABLE INITIALLY DEFERRED,
12713     remote_file      TEXT,
12714     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
12715     translate_time   TIMESTAMPTZ,
12716     process_time     TIMESTAMPTZ,
12717     error_time       TIMESTAMPTZ,
12718     status           TEXT            NOT NULL DEFAULT 'new'
12719                                      CONSTRAINT status_value CHECK
12720                                      ( status IN (
12721                                         'new',          -- needs to be translated
12722                                         'translated',   -- needs to be processed
12723                                         'trans_error',  -- error in translation step
12724                                         'processed',    -- needs to have remote_file deleted
12725                                         'proc_error',   -- error in processing step
12726                                         'delete_error', -- error in deletion
12727                                         'retry',        -- need to retry
12728                                         'complete'      -- done
12729                                      )),
12730     edi              TEXT,
12731     jedi             TEXT,
12732     error            TEXT,
12733     purchase_order   INT             REFERENCES acq.purchase_order
12734                                      DEFERRABLE INITIALLY DEFERRED,
12735     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
12736                                      CHECK ( message_type IN (
12737                                         'ORDERS',
12738                                         'ORDRSP',
12739                                         'INVOIC',
12740                                         'OSTENQ',
12741                                         'OSTRPT'
12742                                      ))
12743 );
12744
12745 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
12746
12747 ALTER TABLE acq.provider_address
12748         ADD COLUMN fax_phone TEXT;
12749
12750 ALTER TABLE acq.provider_contact_address
12751         ADD COLUMN fax_phone TEXT;
12752
12753 CREATE TABLE acq.provider_note (
12754     id      SERIAL              PRIMARY KEY,
12755     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
12756     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
12757     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
12758     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
12759     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
12760     value       TEXT            NOT NULL
12761 );
12762 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
12763 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
12764 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
12765
12766 -- For each fund: the total allocation from all sources, in the
12767 -- currency of the fund (or 0 if there are no allocations)
12768
12769 CREATE VIEW acq.all_fund_allocation_total AS
12770 SELECT
12771     f.id AS fund,
12772     COALESCE( SUM( a.amount * acq.exchange_ratio(
12773         s.currency_type, f.currency_type))::numeric(100,2), 0 )
12774     AS amount
12775 FROM
12776     acq.fund f
12777         LEFT JOIN acq.fund_allocation a
12778             ON a.fund = f.id
12779         LEFT JOIN acq.funding_source s
12780             ON a.funding_source = s.id
12781 GROUP BY
12782     f.id;
12783
12784 -- For every fund: the total encumbrances (or 0 if none),
12785 -- in the currency of the fund.
12786
12787 CREATE VIEW acq.all_fund_encumbrance_total AS
12788 SELECT
12789         f.id AS fund,
12790         COALESCE( encumb.amount, 0 ) AS amount
12791 FROM
12792         acq.fund AS f
12793                 LEFT JOIN (
12794                         SELECT
12795                                 fund,
12796                                 sum( amount ) AS amount
12797                         FROM
12798                                 acq.fund_debit
12799                         WHERE
12800                                 encumbrance
12801                         GROUP BY fund
12802                 ) AS encumb
12803                         ON f.id = encumb.fund;
12804
12805 -- For every fund: the total spent (or 0 if none),
12806 -- in the currency of the fund.
12807
12808 CREATE VIEW acq.all_fund_spent_total AS
12809 SELECT
12810     f.id AS fund,
12811     COALESCE( spent.amount, 0 ) AS amount
12812 FROM
12813     acq.fund AS f
12814         LEFT JOIN (
12815             SELECT
12816                 fund,
12817                 sum( amount ) AS amount
12818             FROM
12819                 acq.fund_debit
12820             WHERE
12821                 NOT encumbrance
12822             GROUP BY fund
12823         ) AS spent
12824             ON f.id = spent.fund;
12825
12826 -- For each fund: the amount not yet spent, in the currency
12827 -- of the fund.  May include encumbrances.
12828
12829 CREATE VIEW acq.all_fund_spent_balance AS
12830 SELECT
12831         c.fund,
12832         c.amount - d.amount AS amount
12833 FROM acq.all_fund_allocation_total c
12834     LEFT JOIN acq.all_fund_spent_total d USING (fund);
12835
12836 -- For each fund: the amount neither spent nor encumbered,
12837 -- in the currency of the fund
12838
12839 CREATE VIEW acq.all_fund_combined_balance AS
12840 SELECT
12841      a.fund,
12842      a.amount - COALESCE( c.amount, 0 ) AS amount
12843 FROM
12844      acq.all_fund_allocation_total a
12845         LEFT OUTER JOIN (
12846             SELECT
12847                 fund,
12848                 SUM( amount ) AS amount
12849             FROM
12850                 acq.fund_debit
12851             GROUP BY
12852                 fund
12853         ) AS c USING ( fund );
12854
12855 CREATE OR REPLACE FUNCTION actor.usr_merge(
12856         src_usr INT,
12857         dest_usr INT,
12858         del_addrs BOOLEAN,
12859         del_cards BOOLEAN,
12860         deactivate_cards BOOLEAN
12861 ) RETURNS VOID AS $$
12862 DECLARE
12863         suffix TEXT;
12864         bucket_row RECORD;
12865         picklist_row RECORD;
12866         queue_row RECORD;
12867         folder_row RECORD;
12868 BEGIN
12869
12870     -- do some initial cleanup 
12871     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
12872     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
12873     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
12874
12875     -- actor.*
12876     IF del_cards THEN
12877         DELETE FROM actor.card where usr = src_usr;
12878     ELSE
12879         IF deactivate_cards THEN
12880             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
12881         END IF;
12882         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
12883     END IF;
12884
12885
12886     IF del_addrs THEN
12887         DELETE FROM actor.usr_address WHERE usr = src_usr;
12888     ELSE
12889         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
12890     END IF;
12891
12892     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
12893     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
12894     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
12895     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
12896     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
12897
12898     -- permission.*
12899     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
12900     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
12901     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
12902     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
12903
12904
12905     -- container.*
12906         
12907         -- For each *_bucket table: transfer every bucket belonging to src_usr
12908         -- into the custody of dest_usr.
12909         --
12910         -- In order to avoid colliding with an existing bucket owned by
12911         -- the destination user, append the source user's id (in parenthesese)
12912         -- to the name.  If you still get a collision, add successive
12913         -- spaces to the name and keep trying until you succeed.
12914         --
12915         FOR bucket_row in
12916                 SELECT id, name
12917                 FROM   container.biblio_record_entry_bucket
12918                 WHERE  owner = src_usr
12919         LOOP
12920                 suffix := ' (' || src_usr || ')';
12921                 LOOP
12922                         BEGIN
12923                                 UPDATE  container.biblio_record_entry_bucket
12924                                 SET     owner = dest_usr, name = name || suffix
12925                                 WHERE   id = bucket_row.id;
12926                         EXCEPTION WHEN unique_violation THEN
12927                                 suffix := suffix || ' ';
12928                                 CONTINUE;
12929                         END;
12930                         EXIT;
12931                 END LOOP;
12932         END LOOP;
12933
12934         FOR bucket_row in
12935                 SELECT id, name
12936                 FROM   container.call_number_bucket
12937                 WHERE  owner = src_usr
12938         LOOP
12939                 suffix := ' (' || src_usr || ')';
12940                 LOOP
12941                         BEGIN
12942                                 UPDATE  container.call_number_bucket
12943                                 SET     owner = dest_usr, name = name || suffix
12944                                 WHERE   id = bucket_row.id;
12945                         EXCEPTION WHEN unique_violation THEN
12946                                 suffix := suffix || ' ';
12947                                 CONTINUE;
12948                         END;
12949                         EXIT;
12950                 END LOOP;
12951         END LOOP;
12952
12953         FOR bucket_row in
12954                 SELECT id, name
12955                 FROM   container.copy_bucket
12956                 WHERE  owner = src_usr
12957         LOOP
12958                 suffix := ' (' || src_usr || ')';
12959                 LOOP
12960                         BEGIN
12961                                 UPDATE  container.copy_bucket
12962                                 SET     owner = dest_usr, name = name || suffix
12963                                 WHERE   id = bucket_row.id;
12964                         EXCEPTION WHEN unique_violation THEN
12965                                 suffix := suffix || ' ';
12966                                 CONTINUE;
12967                         END;
12968                         EXIT;
12969                 END LOOP;
12970         END LOOP;
12971
12972         FOR bucket_row in
12973                 SELECT id, name
12974                 FROM   container.user_bucket
12975                 WHERE  owner = src_usr
12976         LOOP
12977                 suffix := ' (' || src_usr || ')';
12978                 LOOP
12979                         BEGIN
12980                                 UPDATE  container.user_bucket
12981                                 SET     owner = dest_usr, name = name || suffix
12982                                 WHERE   id = bucket_row.id;
12983                         EXCEPTION WHEN unique_violation THEN
12984                                 suffix := suffix || ' ';
12985                                 CONTINUE;
12986                         END;
12987                         EXIT;
12988                 END LOOP;
12989         END LOOP;
12990
12991         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
12992
12993     -- vandelay.*
12994         -- transfer queues the same way we transfer buckets (see above)
12995         FOR queue_row in
12996                 SELECT id, name
12997                 FROM   vandelay.queue
12998                 WHERE  owner = src_usr
12999         LOOP
13000                 suffix := ' (' || src_usr || ')';
13001                 LOOP
13002                         BEGIN
13003                                 UPDATE  vandelay.queue
13004                                 SET     owner = dest_usr, name = name || suffix
13005                                 WHERE   id = queue_row.id;
13006                         EXCEPTION WHEN unique_violation THEN
13007                                 suffix := suffix || ' ';
13008                                 CONTINUE;
13009                         END;
13010                         EXIT;
13011                 END LOOP;
13012         END LOOP;
13013
13014     -- money.*
13015     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13016     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13017     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13018     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13019     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13020
13021     -- action.*
13022     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13023     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13024     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13025
13026     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13027     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13028     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13029     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13030
13031     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13032     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13033     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13034     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13035     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13036
13037     -- acq.*
13038     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13039     UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13040
13041         -- transfer picklists the same way we transfer buckets (see above)
13042         FOR picklist_row in
13043                 SELECT id, name
13044                 FROM   acq.picklist
13045                 WHERE  owner = src_usr
13046         LOOP
13047                 suffix := ' (' || src_usr || ')';
13048                 LOOP
13049                         BEGIN
13050                                 UPDATE  acq.picklist
13051                                 SET     owner = dest_usr, name = name || suffix
13052                                 WHERE   id = picklist_row.id;
13053                         EXCEPTION WHEN unique_violation THEN
13054                                 suffix := suffix || ' ';
13055                                 CONTINUE;
13056                         END;
13057                         EXIT;
13058                 END LOOP;
13059         END LOOP;
13060
13061     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13062     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13063     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13064         UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13065         UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13066     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13067     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13068     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13069
13070     -- asset.*
13071     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13072     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13073     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13074     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13075     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13076     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13077
13078     -- serial.*
13079     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13080     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13081
13082     -- reporter.*
13083     -- It's not uncommon to define the reporter schema in a replica 
13084     -- DB only, so don't assume these tables exist in the write DB.
13085     BEGIN
13086         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13087     EXCEPTION WHEN undefined_table THEN
13088         -- do nothing
13089     END;
13090     BEGIN
13091         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13092     EXCEPTION WHEN undefined_table THEN
13093         -- do nothing
13094     END;
13095     BEGIN
13096         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13097     EXCEPTION WHEN undefined_table THEN
13098         -- do nothing
13099     END;
13100     BEGIN
13101                 -- transfer folders the same way we transfer buckets (see above)
13102                 FOR folder_row in
13103                         SELECT id, name
13104                         FROM   reporter.template_folder
13105                         WHERE  owner = src_usr
13106                 LOOP
13107                         suffix := ' (' || src_usr || ')';
13108                         LOOP
13109                                 BEGIN
13110                                         UPDATE  reporter.template_folder
13111                                         SET     owner = dest_usr, name = name || suffix
13112                                         WHERE   id = folder_row.id;
13113                                 EXCEPTION WHEN unique_violation THEN
13114                                         suffix := suffix || ' ';
13115                                         CONTINUE;
13116                                 END;
13117                                 EXIT;
13118                         END LOOP;
13119                 END LOOP;
13120     EXCEPTION WHEN undefined_table THEN
13121         -- do nothing
13122     END;
13123     BEGIN
13124                 -- transfer folders the same way we transfer buckets (see above)
13125                 FOR folder_row in
13126                         SELECT id, name
13127                         FROM   reporter.report_folder
13128                         WHERE  owner = src_usr
13129                 LOOP
13130                         suffix := ' (' || src_usr || ')';
13131                         LOOP
13132                                 BEGIN
13133                                         UPDATE  reporter.report_folder
13134                                         SET     owner = dest_usr, name = name || suffix
13135                                         WHERE   id = folder_row.id;
13136                                 EXCEPTION WHEN unique_violation THEN
13137                                         suffix := suffix || ' ';
13138                                         CONTINUE;
13139                                 END;
13140                                 EXIT;
13141                         END LOOP;
13142                 END LOOP;
13143     EXCEPTION WHEN undefined_table THEN
13144         -- do nothing
13145     END;
13146     BEGIN
13147                 -- transfer folders the same way we transfer buckets (see above)
13148                 FOR folder_row in
13149                         SELECT id, name
13150                         FROM   reporter.output_folder
13151                         WHERE  owner = src_usr
13152                 LOOP
13153                         suffix := ' (' || src_usr || ')';
13154                         LOOP
13155                                 BEGIN
13156                                         UPDATE  reporter.output_folder
13157                                         SET     owner = dest_usr, name = name || suffix
13158                                         WHERE   id = folder_row.id;
13159                                 EXCEPTION WHEN unique_violation THEN
13160                                         suffix := suffix || ' ';
13161                                         CONTINUE;
13162                                 END;
13163                                 EXIT;
13164                         END LOOP;
13165                 END LOOP;
13166     EXCEPTION WHEN undefined_table THEN
13167         -- do nothing
13168     END;
13169
13170     -- Finally, delete the source user
13171     DELETE FROM actor.usr WHERE id = src_usr;
13172
13173 END;
13174 $$ LANGUAGE plpgsql;
13175
13176 -- The "add" trigger functions should protect against existing NULLed values, just in case
13177 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13178 BEGIN
13179     IF NOT NEW.voided THEN
13180         UPDATE  money.materialized_billable_xact_summary
13181           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13182             last_billing_ts = NEW.billing_ts,
13183             last_billing_note = NEW.note,
13184             last_billing_type = NEW.billing_type,
13185             balance_owed = balance_owed + NEW.amount
13186           WHERE id = NEW.xact;
13187     END IF;
13188
13189     RETURN NEW;
13190 END;
13191 $$ LANGUAGE PLPGSQL;
13192
13193 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13194 BEGIN
13195     IF NOT NEW.voided THEN
13196         UPDATE  money.materialized_billable_xact_summary
13197           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13198             last_payment_ts = NEW.payment_ts,
13199             last_payment_note = NEW.note,
13200             last_payment_type = TG_ARGV[0],
13201             balance_owed = balance_owed - NEW.amount
13202           WHERE id = NEW.xact;
13203     END IF;
13204
13205     RETURN NEW;
13206 END;
13207 $$ LANGUAGE PLPGSQL;
13208
13209 -- Refresh the mat view with the corrected underlying view
13210 TRUNCATE money.materialized_billable_xact_summary;
13211 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13212
13213 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13214     user_id    IN INTEGER,
13215     perm_code  IN TEXT
13216 )
13217 RETURNS SETOF INTEGER AS $$
13218 --
13219 -- Return a set of all the org units for which a given user has a given
13220 -- permission, granted directly (not through inheritance from a parent
13221 -- org unit).
13222 --
13223 -- The permissions apply to a minimum depth of the org unit hierarchy,
13224 -- for the org unit(s) to which the user is assigned.  (They also apply
13225 -- to the subordinates of those org units, but we don't report the
13226 -- subordinates here.)
13227 --
13228 -- For purposes of this function, the permission.usr_work_ou_map table
13229 -- defines which users belong to which org units.  I.e. we ignore the
13230 -- home_ou column of actor.usr.
13231 --
13232 -- The result set may contain duplicates, which should be eliminated
13233 -- by a DISTINCT clause.
13234 --
13235 DECLARE
13236     b_super       BOOLEAN;
13237     n_perm        INTEGER;
13238     n_min_depth   INTEGER;
13239     n_work_ou     INTEGER;
13240     n_curr_ou     INTEGER;
13241     n_depth       INTEGER;
13242     n_curr_depth  INTEGER;
13243 BEGIN
13244     --
13245     -- Check for superuser
13246     --
13247     SELECT INTO b_super
13248         super_user
13249     FROM
13250         actor.usr
13251     WHERE
13252         id = user_id;
13253     --
13254     IF NOT FOUND THEN
13255         return;             -- No user?  No permissions.
13256     ELSIF b_super THEN
13257         --
13258         -- Super user has all permissions everywhere
13259         --
13260         FOR n_work_ou IN
13261             SELECT
13262                 id
13263             FROM
13264                 actor.org_unit
13265             WHERE
13266                 parent_ou IS NULL
13267         LOOP
13268             RETURN NEXT n_work_ou;
13269         END LOOP;
13270         RETURN;
13271     END IF;
13272     --
13273     -- Translate the permission name
13274     -- to a numeric permission id
13275     --
13276     SELECT INTO n_perm
13277         id
13278     FROM
13279         permission.perm_list
13280     WHERE
13281         code = perm_code;
13282     --
13283     IF NOT FOUND THEN
13284         RETURN;               -- No such permission
13285     END IF;
13286     --
13287     -- Find the highest-level org unit (i.e. the minimum depth)
13288     -- to which the permission is applied for this user
13289     --
13290     -- This query is modified from the one in permission.usr_perms().
13291     --
13292     SELECT INTO n_min_depth
13293         min( depth )
13294     FROM    (
13295         SELECT depth
13296           FROM permission.usr_perm_map upm
13297          WHERE upm.usr = user_id
13298            AND (upm.perm = n_perm OR upm.perm = -1)
13299                     UNION
13300         SELECT  gpm.depth
13301           FROM  permission.grp_perm_map gpm
13302           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13303             AND gpm.grp IN (
13304                SELECT   (permission.grp_ancestors(
13305                     (SELECT profile FROM actor.usr WHERE id = user_id)
13306                 )).id
13307             )
13308                     UNION
13309         SELECT  p.depth
13310           FROM  permission.grp_perm_map p
13311           WHERE (p.perm = n_perm OR p.perm = -1)
13312             AND p.grp IN (
13313                 SELECT (permission.grp_ancestors(m.grp)).id
13314                 FROM   permission.usr_grp_map m
13315                 WHERE  m.usr = user_id
13316             )
13317     ) AS x;
13318     --
13319     IF NOT FOUND THEN
13320         RETURN;                -- No such permission for this user
13321     END IF;
13322     --
13323     -- Identify the org units to which the user is assigned.  Note that
13324     -- we pay no attention to the home_ou column in actor.usr.
13325     --
13326     FOR n_work_ou IN
13327         SELECT
13328             work_ou
13329         FROM
13330             permission.usr_work_ou_map
13331         WHERE
13332             usr = user_id
13333     LOOP            -- For each org unit to which the user is assigned
13334         --
13335         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13336         -- We take it on faith that this depth agrees with the actual hierarchy
13337         -- defined in actor.org_unit.
13338         --
13339         SELECT INTO n_depth
13340             type.depth
13341         FROM
13342             actor.org_unit_type type
13343                 INNER JOIN actor.org_unit ou
13344                     ON ( ou.ou_type = type.id )
13345         WHERE
13346             ou.id = n_work_ou;
13347         --
13348         IF NOT FOUND THEN
13349             CONTINUE;        -- Maybe raise exception?
13350         END IF;
13351         --
13352         -- Compare the depth of the work org unit to the
13353         -- minimum depth, and branch accordingly
13354         --
13355         IF n_depth = n_min_depth THEN
13356             --
13357             -- The org unit is at the right depth, so return it.
13358             --
13359             RETURN NEXT n_work_ou;
13360         ELSIF n_depth > n_min_depth THEN
13361             --
13362             -- Traverse the org unit tree toward the root,
13363             -- until you reach the minimum depth determined above
13364             --
13365             n_curr_depth := n_depth;
13366             n_curr_ou := n_work_ou;
13367             WHILE n_curr_depth > n_min_depth LOOP
13368                 SELECT INTO n_curr_ou
13369                     parent_ou
13370                 FROM
13371                     actor.org_unit
13372                 WHERE
13373                     id = n_curr_ou;
13374                 --
13375                 IF FOUND THEN
13376                     n_curr_depth := n_curr_depth - 1;
13377                 ELSE
13378                     --
13379                     -- This can happen only if the hierarchy defined in
13380                     -- actor.org_unit is corrupted, or out of sync with
13381                     -- the depths defined in actor.org_unit_type.
13382                     -- Maybe we should raise an exception here, instead
13383                     -- of silently ignoring the problem.
13384                     --
13385                     n_curr_ou = NULL;
13386                     EXIT;
13387                 END IF;
13388             END LOOP;
13389             --
13390             IF n_curr_ou IS NOT NULL THEN
13391                 RETURN NEXT n_curr_ou;
13392             END IF;
13393         ELSE
13394             --
13395             -- The permission applies only at a depth greater than the work org unit.
13396             -- Use connectby() to find all dependent org units at the specified depth.
13397             --
13398             FOR n_curr_ou IN
13399                 SELECT ou::INTEGER
13400                 FROM connectby(
13401                         'actor.org_unit',         -- table name
13402                         'id',                     -- key column
13403                         'parent_ou',              -- recursive foreign key
13404                         n_work_ou::TEXT,          -- id of starting point
13405                         (n_min_depth - n_depth)   -- max depth to search, relative
13406                     )                             --   to starting point
13407                     AS t(
13408                         ou text,            -- dependent org unit
13409                         parent_ou text,     -- (ignore)
13410                         level int           -- depth relative to starting point
13411                     )
13412                 WHERE
13413                     level = n_min_depth - n_depth
13414             LOOP
13415                 RETURN NEXT n_curr_ou;
13416             END LOOP;
13417         END IF;
13418         --
13419     END LOOP;
13420     --
13421     RETURN;
13422     --
13423 END;
13424 $$ LANGUAGE 'plpgsql';
13425
13426 ALTER TABLE acq.purchase_order
13427         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13428                                             DEFERRABLE INITIALLY DEFERRED;
13429
13430 ALTER TABLE acq.acq_purchase_order_history
13431         ADD COLUMN cancel_reason INTEGER;
13432
13433 ALTER TABLE acq.purchase_order
13434         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13435
13436 ALTER TABLE acq.acq_purchase_order_history
13437         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13438
13439 ALTER TABLE acq.lineitem
13440         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13441                                             DEFERRABLE INITIALLY DEFERRED;
13442
13443 ALTER TABLE acq.acq_lineitem_history
13444         ADD COLUMN cancel_reason INTEGER;
13445
13446 ALTER TABLE acq.lineitem
13447         ADD COLUMN estimated_unit_price NUMERIC;
13448
13449 ALTER TABLE acq.acq_lineitem_history
13450         ADD COLUMN estimated_unit_price NUMERIC;
13451
13452 ALTER TABLE acq.lineitem
13453         ADD COLUMN claim_policy INT
13454                 REFERENCES acq.claim_policy
13455                 DEFERRABLE INITIALLY DEFERRED;
13456
13457 ALTER TABLE acq.acq_lineitem_history
13458         ADD COLUMN claim_policy INT
13459                 REFERENCES acq.claim_policy
13460                 DEFERRABLE INITIALLY DEFERRED;
13461
13462 ALTER TABLE acq.lineitem_detail
13463         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13464                                             DEFERRABLE INITIALLY DEFERRED;
13465
13466 ALTER TABLE acq.lineitem_detail
13467         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13468
13469 ALTER TABLE acq.lineitem_detail
13470         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13471                 ON DELETE CASCADE
13472                 DEFERRABLE INITIALLY DEFERRED;
13473
13474 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
13475
13476 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13477         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
13478
13479 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13480         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
13481
13482 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13483
13484     use MARC::Record;
13485     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13486     use strict;
13487
13488     my $target_xml = shift;
13489     my $source_xml = shift;
13490     my $field_spec = shift;
13491
13492     my $target_r = MARC::Record->new_from_xml( $target_xml );
13493     my $source_r = MARC::Record->new_from_xml( $source_xml );
13494
13495     return $target_xml unless ($target_r && $source_r);
13496
13497     my @field_list = split(',', $field_spec);
13498
13499     my %fields;
13500     for my $f (@field_list) {
13501         $f =~ s/^\s*//; $f =~ s/\s*$//;
13502         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13503             my $field = $1;
13504             $field =~ s/\s+//;
13505             my $sf = $2;
13506             $sf =~ s/\s+//;
13507             my $match = $3;
13508             $match =~ s/^\s*//; $match =~ s/\s*$//;
13509             $fields{$field} = { sf => [ split('', $sf) ] };
13510             if ($match) {
13511                 my ($msf,$mre) = split('~', $match);
13512                 if (length($msf) > 0 and length($mre) > 0) {
13513                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13514                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13515                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13516                 }
13517             }
13518         }
13519     }
13520
13521     for my $f ( keys %fields) {
13522         if ( @{$fields{$f}{sf}} ) {
13523             for my $from_field ($source_r->field( $f )) {
13524                 for my $to_field ($target_r->field( $f )) {
13525                     if (exists($fields{$f}{match})) {
13526                         next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13527                     }
13528                     my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
13529                     $to_field->add_subfields( @new_sf );
13530                 }
13531             }
13532         } else {
13533             my @new_fields = map { $_->clone } $source_r->field( $f );
13534             $target_r->insert_fields_ordered( @new_fields );
13535         }
13536     }
13537
13538     $target_xml = $target_r->as_xml_record;
13539     $target_xml =~ s/^<\?.+?\?>$//mo;
13540     $target_xml =~ s/\n//sgo;
13541     $target_xml =~ s/>\s+</></sgo;
13542
13543     return $target_xml;
13544
13545 $_$ LANGUAGE PLPERLU;
13546
13547 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13548
13549     use MARC::Record;
13550     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13551     use strict;
13552
13553     my $xml = shift;
13554     my $r = MARC::Record->new_from_xml( $xml );
13555
13556     return $xml unless ($r);
13557
13558     my $field_spec = shift;
13559     my @field_list = split(',', $field_spec);
13560
13561     my %fields;
13562     for my $f (@field_list) {
13563         $f =~ s/^\s*//; $f =~ s/\s*$//;
13564         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13565             my $field = $1;
13566             $field =~ s/\s+//;
13567             my $sf = $2;
13568             $sf =~ s/\s+//;
13569             my $match = $3;
13570             $match =~ s/^\s*//; $match =~ s/\s*$//;
13571             $fields{$field} = { sf => [ split('', $sf) ] };
13572             if ($match) {
13573                 my ($msf,$mre) = split('~', $match);
13574                 if (length($msf) > 0 and length($mre) > 0) {
13575                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13576                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13577                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13578                 }
13579             }
13580         }
13581     }
13582
13583     for my $f ( keys %fields) {
13584         for my $to_field ($r->field( $f )) {
13585             if (exists($fields{$f}{match})) {
13586                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13587             }
13588
13589             if ( @{$fields{$f}{sf}} ) {
13590                 $to_field->delete_subfield(code => $fields{$f}{sf});
13591             } else {
13592                 $r->delete_field( $to_field );
13593             }
13594         }
13595     }
13596
13597     $xml = $r->as_xml_record;
13598     $xml =~ s/^<\?.+?\?>$//mo;
13599     $xml =~ s/\n//sgo;
13600     $xml =~ s/>\s+</></sgo;
13601
13602     return $xml;
13603
13604 $_$ LANGUAGE PLPERLU;
13605
13606 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13607     SELECT vandelay.add_field( vandelay.strip_field( $1, $3), $2, $3 );
13608 $_$ LANGUAGE SQL;
13609
13610 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13611     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
13612 $_$ LANGUAGE SQL;
13613
13614 CREATE VIEW action.unfulfilled_hold_max_loop AS
13615         SELECT  hold,
13616                 max(count) AS max
13617         FROM    action.unfulfilled_hold_loops
13618         GROUP BY 1;
13619
13620 ALTER TABLE acq.lineitem_attr
13621         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
13622
13623 ALTER TABLE acq.lineitem_attr
13624         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13625                 ON DELETE CASCADE
13626                 DEFERRABLE INITIALLY DEFERRED;
13627
13628 ALTER TABLE acq.po_note
13629         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13630
13631 CREATE TABLE vandelay.merge_profile (
13632     id              BIGSERIAL   PRIMARY KEY,
13633     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
13634     name            TEXT        NOT NULL,
13635     add_spec        TEXT,
13636     replace_spec    TEXT,
13637     strip_spec      TEXT,
13638     preserve_spec   TEXT,
13639     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
13640     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))
13641 );
13642
13643 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
13644 DECLARE
13645     attr        RECORD;
13646     attr_def    RECORD;
13647     eg_rec      RECORD;
13648     id_value    TEXT;
13649     exact_id    BIGINT;
13650 BEGIN
13651
13652     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
13653
13654     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
13655
13656     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
13657         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
13658
13659         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
13660             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
13661             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
13662             IF exact_id IS NOT NULL THEN
13663                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
13664             END IF;
13665         END IF;
13666     END IF;
13667
13668     IF exact_id IS NULL THEN
13669         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
13670
13671             -- All numbers? check for an id match
13672             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
13673                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
13674                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
13675                 END LOOP;
13676             END IF;
13677
13678             -- Looks like an ISBN? check for an isbn match
13679             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
13680                 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
13681                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
13682                     IF FOUND THEN
13683                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
13684                     END IF;
13685                 END LOOP;
13686
13687                 -- subcheck for isbn-as-tcn
13688                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
13689                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13690                 END LOOP;
13691             END IF;
13692
13693             -- check for an OCLC tcn_value match
13694             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
13695                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') AND deleted IS FALSE LOOP
13696                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13697                 END LOOP;
13698             END IF;
13699
13700             -- check for a direct tcn_value match
13701             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
13702                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13703             END LOOP;
13704
13705             -- check for a direct item barcode match
13706             FOR eg_rec IN
13707                     SELECT  DISTINCT b.*
13708                       FROM  biblio.record_entry b
13709                             JOIN asset.call_number cn ON (cn.record = b.id)
13710                             JOIN asset.copy cp ON (cp.call_number = cn.id)
13711                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
13712             LOOP
13713                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
13714             END LOOP;
13715
13716         END LOOP;
13717     END IF;
13718
13719     RETURN NULL;
13720 END;
13721 $func$ LANGUAGE PLPGSQL;
13722
13723 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 $_$
13724     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
13725 $_$ LANGUAGE SQL;
13726
13727 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
13728 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
13729 DECLARE
13730     output              vandelay.compile_profile%ROWTYPE;
13731     profile             vandelay.merge_profile%ROWTYPE;
13732     profile_tmpl        TEXT;
13733     profile_tmpl_owner  TEXT;
13734     add_rule            TEXT := '';
13735     strip_rule          TEXT := '';
13736     replace_rule        TEXT := '';
13737     preserve_rule       TEXT := '';
13738
13739 BEGIN
13740
13741     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
13742     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
13743
13744     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
13745         SELECT  p.* INTO profile
13746           FROM  vandelay.merge_profile p
13747                 JOIN actor.org_unit u ON (u.id = p.owner)
13748           WHERE p.name = profile_tmpl
13749                 AND u.shortname = profile_tmpl_owner;
13750
13751         IF profile.id IS NOT NULL THEN
13752             add_rule := COALESCE(profile.add_spec,'');
13753             strip_rule := COALESCE(profile.strip_spec,'');
13754             replace_rule := COALESCE(profile.replace_spec,'');
13755             preserve_rule := COALESCE(profile.preserve_spec,'');
13756         END IF;
13757     END IF;
13758
13759     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),''),'');
13760     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),''),'');
13761     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),''),'');
13762     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),''),'');
13763
13764     output.add_rule := BTRIM(add_rule,',');
13765     output.replace_rule := BTRIM(replace_rule,',');
13766     output.strip_rule := BTRIM(strip_rule,',');
13767     output.preserve_rule := BTRIM(preserve_rule,',');
13768
13769     RETURN output;
13770 END;
13771 $_$ LANGUAGE PLPGSQL;
13772
13773 -- Template-based marc munging functions
13774 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13775 DECLARE
13776     merge_profile   vandelay.merge_profile%ROWTYPE;
13777     dyn_profile     vandelay.compile_profile%ROWTYPE;
13778     editor_string   TEXT;
13779     editor_id       INT;
13780     source_marc     TEXT;
13781     target_marc     TEXT;
13782     eg_marc         TEXT;
13783     replace_rule    TEXT;
13784     match_count     INT;
13785 BEGIN
13786
13787     SELECT  b.marc INTO eg_marc
13788       FROM  biblio.record_entry b
13789       WHERE b.id = eg_id
13790       LIMIT 1;
13791
13792     IF eg_marc IS NULL OR v_marc IS NULL THEN
13793         -- RAISE NOTICE 'no marc for template or bib record';
13794         RETURN FALSE;
13795     END IF;
13796
13797     dyn_profile := vandelay.compile_profile( v_marc );
13798
13799     IF merge_profile_id IS NOT NULL THEN
13800         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
13801         IF FOUND THEN
13802             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
13803             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
13804             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
13805             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
13806         END IF;
13807     END IF;
13808
13809     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
13810         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
13811         RETURN FALSE;
13812     END IF;
13813
13814     IF dyn_profile.replace_rule <> '' THEN
13815         source_marc = v_marc;
13816         target_marc = eg_marc;
13817         replace_rule = dyn_profile.replace_rule;
13818     ELSE
13819         source_marc = eg_marc;
13820         target_marc = v_marc;
13821         replace_rule = dyn_profile.preserve_rule;
13822     END IF;
13823
13824     UPDATE  biblio.record_entry
13825       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
13826       WHERE id = eg_id;
13827
13828     IF NOT FOUND THEN
13829         -- RAISE NOTICE 'update of biblio.record_entry failed';
13830         RETURN FALSE;
13831     END IF;
13832
13833     RETURN TRUE;
13834
13835 END;
13836 $$ LANGUAGE PLPGSQL;
13837
13838 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
13839     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
13840 $$ LANGUAGE SQL;
13841
13842 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13843 DECLARE
13844     merge_profile   vandelay.merge_profile%ROWTYPE;
13845     dyn_profile     vandelay.compile_profile%ROWTYPE;
13846     editor_string   TEXT;
13847     editor_id       INT;
13848     source_marc     TEXT;
13849     target_marc     TEXT;
13850     eg_marc         TEXT;
13851     v_marc          TEXT;
13852     replace_rule    TEXT;
13853     match_count     INT;
13854 BEGIN
13855
13856     SELECT  q.marc INTO v_marc
13857       FROM  vandelay.queued_record q
13858             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
13859       LIMIT 1;
13860
13861     IF v_marc IS NULL THEN
13862         -- RAISE NOTICE 'no marc for vandelay or bib record';
13863         RETURN FALSE;
13864     END IF;
13865
13866     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
13867         UPDATE  vandelay.queued_bib_record
13868           SET   imported_as = eg_id,
13869                 import_time = NOW()
13870           WHERE id = import_id;
13871
13872         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
13873
13874         IF editor_string IS NOT NULL AND editor_string <> '' THEN
13875             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
13876
13877             IF editor_id IS NULL THEN
13878                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
13879             END IF;
13880
13881             IF editor_id IS NOT NULL THEN
13882                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
13883             END IF;
13884         END IF;
13885
13886         RETURN TRUE;
13887     END IF;
13888
13889     -- RAISE NOTICE 'update of biblio.record_entry failed';
13890
13891     RETURN FALSE;
13892
13893 END;
13894 $$ LANGUAGE PLPGSQL;
13895
13896 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13897 DECLARE
13898     eg_id           BIGINT;
13899     match_count     INT;
13900     match_attr      vandelay.bib_attr_definition%ROWTYPE;
13901 BEGIN
13902
13903     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
13904
13905     IF FOUND THEN
13906         -- RAISE NOTICE 'already imported, cannot auto-overlay'
13907         RETURN FALSE;
13908     END IF;
13909
13910     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
13911
13912     IF match_count <> 1 THEN
13913         -- RAISE NOTICE 'not an exact match';
13914         RETURN FALSE;
13915     END IF;
13916
13917     SELECT  d.* INTO match_attr
13918       FROM  vandelay.bib_attr_definition d
13919             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
13920             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
13921       WHERE m.queued_record = import_id;
13922
13923     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
13924         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
13925         RETURN FALSE;
13926     END IF;
13927
13928     SELECT  m.eg_record INTO eg_id
13929       FROM  vandelay.bib_match m
13930       WHERE m.queued_record = import_id
13931       LIMIT 1;
13932
13933     IF eg_id IS NULL THEN
13934         RETURN FALSE;
13935     END IF;
13936
13937     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
13938 END;
13939 $$ LANGUAGE PLPGSQL;
13940
13941 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
13942 DECLARE
13943     queued_record   vandelay.queued_bib_record%ROWTYPE;
13944 BEGIN
13945
13946     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
13947
13948         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
13949             RETURN NEXT queued_record.id;
13950         END IF;
13951
13952     END LOOP;
13953
13954     RETURN;
13955
13956 END;
13957 $$ LANGUAGE PLPGSQL;
13958
13959 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
13960     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
13961 $$ LANGUAGE SQL;
13962
13963 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13964 DECLARE
13965     merge_profile   vandelay.merge_profile%ROWTYPE;
13966     dyn_profile     vandelay.compile_profile%ROWTYPE;
13967     source_marc     TEXT;
13968     target_marc     TEXT;
13969     eg_marc         TEXT;
13970     v_marc          TEXT;
13971     replace_rule    TEXT;
13972     match_count     INT;
13973 BEGIN
13974
13975     SELECT  b.marc INTO eg_marc
13976       FROM  authority.record_entry b
13977             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
13978       LIMIT 1;
13979
13980     SELECT  q.marc INTO v_marc
13981       FROM  vandelay.queued_record q
13982             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
13983       LIMIT 1;
13984
13985     IF eg_marc IS NULL OR v_marc IS NULL THEN
13986         -- RAISE NOTICE 'no marc for vandelay or authority record';
13987         RETURN FALSE;
13988     END IF;
13989
13990     dyn_profile := vandelay.compile_profile( v_marc );
13991
13992     IF merge_profile_id IS NOT NULL THEN
13993         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
13994         IF FOUND THEN
13995             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
13996             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
13997             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
13998             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
13999         END IF;
14000     END IF;
14001
14002     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14003         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14004         RETURN FALSE;
14005     END IF;
14006
14007     IF dyn_profile.replace_rule <> '' THEN
14008         source_marc = v_marc;
14009         target_marc = eg_marc;
14010         replace_rule = dyn_profile.replace_rule;
14011     ELSE
14012         source_marc = eg_marc;
14013         target_marc = v_marc;
14014         replace_rule = dyn_profile.preserve_rule;
14015     END IF;
14016
14017     UPDATE  authority.record_entry
14018       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14019       WHERE id = eg_id;
14020
14021     IF FOUND THEN
14022         UPDATE  vandelay.queued_authority_record
14023           SET   imported_as = eg_id,
14024                 import_time = NOW()
14025           WHERE id = import_id;
14026         RETURN TRUE;
14027     END IF;
14028
14029     -- RAISE NOTICE 'update of authority.record_entry failed';
14030
14031     RETURN FALSE;
14032
14033 END;
14034 $$ LANGUAGE PLPGSQL;
14035
14036 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14037 DECLARE
14038     eg_id           BIGINT;
14039     match_count     INT;
14040 BEGIN
14041     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14042
14043     IF match_count <> 1 THEN
14044         -- RAISE NOTICE 'not an exact match';
14045         RETURN FALSE;
14046     END IF;
14047
14048     SELECT  m.eg_record INTO eg_id
14049       FROM  vandelay.authority_match m
14050       WHERE m.queued_record = import_id
14051       LIMIT 1;
14052
14053     IF eg_id IS NULL THEN
14054         RETURN FALSE;
14055     END IF;
14056
14057     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14058 END;
14059 $$ LANGUAGE PLPGSQL;
14060
14061 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14062 DECLARE
14063     queued_record   vandelay.queued_authority_record%ROWTYPE;
14064 BEGIN
14065
14066     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14067
14068         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14069             RETURN NEXT queued_record.id;
14070         END IF;
14071
14072     END LOOP;
14073
14074     RETURN;
14075
14076 END;
14077 $$ LANGUAGE PLPGSQL;
14078
14079 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14080     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14081 $$ LANGUAGE SQL;
14082
14083 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14084 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14085 DECLARE
14086     eg_tcn          TEXT;
14087     eg_tcn_source   TEXT;
14088     output          vandelay.tcn_data%ROWTYPE;
14089 BEGIN
14090
14091     -- 001/003
14092     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14093     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14094
14095         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14096         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14097             eg_tcn_source := 'System Local';
14098         END IF;
14099
14100         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14101
14102         IF NOT FOUND THEN
14103             output.used := FALSE;
14104         ELSE
14105             output.used := TRUE;
14106         END IF;
14107
14108         output.tcn := eg_tcn;
14109         output.tcn_source := eg_tcn_source;
14110         RETURN NEXT output;
14111
14112     END IF;
14113
14114     -- 901 ab
14115     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14116     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14117
14118         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14119         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14120             eg_tcn_source := 'System Local';
14121         END IF;
14122
14123         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14124
14125         IF NOT FOUND THEN
14126             output.used := FALSE;
14127         ELSE
14128             output.used := TRUE;
14129         END IF;
14130
14131         output.tcn := eg_tcn;
14132         output.tcn_source := eg_tcn_source;
14133         RETURN NEXT output;
14134
14135     END IF;
14136
14137     -- 039 ab
14138     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14139     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14140
14141         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14142         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14143             eg_tcn_source := 'System Local';
14144         END IF;
14145
14146         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14147
14148         IF NOT FOUND THEN
14149             output.used := FALSE;
14150         ELSE
14151             output.used := TRUE;
14152         END IF;
14153
14154         output.tcn := eg_tcn;
14155         output.tcn_source := eg_tcn_source;
14156         RETURN NEXT output;
14157
14158     END IF;
14159
14160     -- 020 a
14161     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14162     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14163
14164         eg_tcn_source := 'ISBN';
14165
14166         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14167
14168         IF NOT FOUND THEN
14169             output.used := FALSE;
14170         ELSE
14171             output.used := TRUE;
14172         END IF;
14173
14174         output.tcn := eg_tcn;
14175         output.tcn_source := eg_tcn_source;
14176         RETURN NEXT output;
14177
14178     END IF;
14179
14180     -- 022 a
14181     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14182     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14183
14184         eg_tcn_source := 'ISSN';
14185
14186         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14187
14188         IF NOT FOUND THEN
14189             output.used := FALSE;
14190         ELSE
14191             output.used := TRUE;
14192         END IF;
14193
14194         output.tcn := eg_tcn;
14195         output.tcn_source := eg_tcn_source;
14196         RETURN NEXT output;
14197
14198     END IF;
14199
14200     -- 010 a
14201     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14202     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14203
14204         eg_tcn_source := 'LCCN';
14205
14206         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14207
14208         IF NOT FOUND THEN
14209             output.used := FALSE;
14210         ELSE
14211             output.used := TRUE;
14212         END IF;
14213
14214         output.tcn := eg_tcn;
14215         output.tcn_source := eg_tcn_source;
14216         RETURN NEXT output;
14217
14218     END IF;
14219
14220     -- 035 a
14221     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14222     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14223
14224         eg_tcn_source := 'System Legacy';
14225
14226         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14227
14228         IF NOT FOUND THEN
14229             output.used := FALSE;
14230         ELSE
14231             output.used := TRUE;
14232         END IF;
14233
14234         output.tcn := eg_tcn;
14235         output.tcn_source := eg_tcn_source;
14236         RETURN NEXT output;
14237
14238     END IF;
14239
14240     RETURN;
14241 END;
14242 $_$ LANGUAGE PLPGSQL;
14243
14244 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14245
14246 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);
14247
14248 UPDATE biblio.record_entry SET marc = '<record xmlns="http://www.loc.gov/MARC21/slim"/>' WHERE id = -1;
14249
14250 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14251 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14252 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14253 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14254 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14255
14256 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14257 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14258 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14259 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14260
14261 CREATE TABLE acq.claim_policy_action (
14262         id              SERIAL       PRIMARY KEY,
14263         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14264                                  ON DELETE CASCADE
14265                                      DEFERRABLE INITIALLY DEFERRED,
14266         action_interval INTERVAL     NOT NULL,
14267         action          INT          NOT NULL REFERENCES acq.claim_event_type
14268                                      DEFERRABLE INITIALLY DEFERRED,
14269         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14270 );
14271
14272 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14273 DECLARE
14274     value       TEXT;
14275     atype       TEXT;
14276     prov        INT;
14277     pos         INT;
14278     adef        RECORD;
14279     xpath_string    TEXT;
14280 BEGIN
14281     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14282  
14283         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14284  
14285         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14286             IF (atype = 'lineitem_provider_attr_definition') THEN
14287                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14288                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14289             END IF;
14290  
14291             IF (atype = 'lineitem_provider_attr_definition') THEN
14292                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14293             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14294                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14295             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14296                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14297             END IF;
14298  
14299             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14300  
14301             pos := 1;
14302  
14303             LOOP
14304                 SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14305  
14306                 IF (value IS NOT NULL AND value <> '') THEN
14307                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14308                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14309                 ELSE
14310                     EXIT;
14311                 END IF;
14312  
14313                 pos := pos + 1;
14314             END LOOP;
14315  
14316         END IF;
14317  
14318     END LOOP;
14319  
14320     RETURN NULL;
14321 END;
14322 $function$ LANGUAGE PLPGSQL;
14323
14324 UPDATE config.metabib_field SET label = name;
14325 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14326
14327 ALTER TABLE config.metabib_field ADD CONSTRAINT field_class_fkey FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14328
14329 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14330
14331 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14332
14333 CREATE TABLE config.metabib_search_alias (
14334     alias       TEXT    PRIMARY KEY,
14335     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14336     field       INT     REFERENCES config.metabib_field (id)
14337 );
14338
14339 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14340 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14341 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14342 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14343 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14344 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14345 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14346 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14347
14348 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14349 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14350 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14351 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14352 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14353 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14354 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14355 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14356 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14357 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14358 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14359 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14360 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14361
14362 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14363 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14364 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14365 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14366 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14367 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14368 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14369 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14370
14371 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14372 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14373 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14374 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14375 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14376 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
14377
14378 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14379 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14380 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14381
14382 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14383 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;
14384 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;
14385 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;
14386 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;
14387
14388 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14389 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14390 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14391 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14392
14393 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14394 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14395 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14396 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14397 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14398 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14399 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14400 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14401 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14402 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14403 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14404 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14405 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14406 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14407
14408 CREATE TABLE asset.opac_visible_copies (
14409   id        BIGINT primary key, -- copy id
14410   record    BIGINT,
14411   circ_lib  INTEGER
14412 );
14413 COMMENT ON TABLE asset.opac_visible_copies IS $$
14414 Materialized view of copies that are visible in the OPAC, used by
14415 search.query_parser_fts() to speed up OPAC visibility checks on large
14416 databases.  Contents are maintained by a set of triggers.
14417 $$;
14418 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
14419
14420 CREATE OR REPLACE FUNCTION search.query_parser_fts (
14421
14422     param_search_ou INT,
14423     param_depth     INT,
14424     param_query     TEXT,
14425     param_statuses  INT[],
14426     param_locations INT[],
14427     param_offset    INT,
14428     param_check     INT,
14429     param_limit     INT,
14430     metarecord      BOOL,
14431     staff           BOOL
14432  
14433 ) RETURNS SETOF search.search_result AS $func$
14434 DECLARE
14435
14436     current_res         search.search_result%ROWTYPE;
14437     search_org_list     INT[];
14438
14439     check_limit         INT;
14440     core_limit          INT;
14441     core_offset         INT;
14442     tmp_int             INT;
14443
14444     core_result         RECORD;
14445     core_cursor         REFCURSOR;
14446     core_rel_query      TEXT;
14447
14448     total_count         INT := 0;
14449     check_count         INT := 0;
14450     deleted_count       INT := 0;
14451     visible_count       INT := 0;
14452     excluded_count      INT := 0;
14453
14454 BEGIN
14455
14456     check_limit := COALESCE( param_check, 1000 );
14457     core_limit  := COALESCE( param_limit, 25000 );
14458     core_offset := COALESCE( param_offset, 0 );
14459
14460     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
14461
14462     IF param_search_ou > 0 THEN
14463         IF param_depth IS NOT NULL THEN
14464             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
14465         ELSE
14466             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
14467         END IF;
14468     ELSIF param_search_ou < 0 THEN
14469         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
14470     ELSIF param_search_ou = 0 THEN
14471         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
14472     END IF;
14473
14474     OPEN core_cursor FOR EXECUTE param_query;
14475
14476     LOOP
14477
14478         FETCH core_cursor INTO core_result;
14479         EXIT WHEN NOT FOUND;
14480         EXIT WHEN total_count >= core_limit;
14481
14482         total_count := total_count + 1;
14483
14484         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
14485
14486         check_count := check_count + 1;
14487
14488         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14489         IF NOT FOUND THEN
14490             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
14491             deleted_count := deleted_count + 1;
14492             CONTINUE;
14493         END IF;
14494
14495         PERFORM 1
14496           FROM  biblio.record_entry b
14497                 JOIN config.bib_source s ON (b.source = s.id)
14498           WHERE s.transcendant
14499                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14500
14501         IF FOUND THEN
14502             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
14503             visible_count := visible_count + 1;
14504
14505             current_res.id = core_result.id;
14506             current_res.rel = core_result.rel;
14507
14508             tmp_int := 1;
14509             IF metarecord THEN
14510                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14511             END IF;
14512
14513             IF tmp_int = 1 THEN
14514                 current_res.record = core_result.records[1];
14515             ELSE
14516                 current_res.record = NULL;
14517             END IF;
14518
14519             RETURN NEXT current_res;
14520
14521             CONTINUE;
14522         END IF;
14523
14524         PERFORM 1
14525           FROM  asset.call_number cn
14526                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
14527                 JOIN asset.uri uri ON (map.uri = uri.id)
14528           WHERE NOT cn.deleted
14529                 AND cn.label = '##URI##'
14530                 AND uri.active
14531                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
14532                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14533                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14534           LIMIT 1;
14535
14536         IF FOUND THEN
14537             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
14538             visible_count := visible_count + 1;
14539
14540             current_res.id = core_result.id;
14541             current_res.rel = core_result.rel;
14542
14543             tmp_int := 1;
14544             IF metarecord THEN
14545                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14546             END IF;
14547
14548             IF tmp_int = 1 THEN
14549                 current_res.record = core_result.records[1];
14550             ELSE
14551                 current_res.record = NULL;
14552             END IF;
14553
14554             RETURN NEXT current_res;
14555
14556             CONTINUE;
14557         END IF;
14558
14559         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
14560
14561             PERFORM 1
14562               FROM  asset.call_number cn
14563                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14564               WHERE NOT cn.deleted
14565                     AND NOT cp.deleted
14566                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
14567                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14568                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14569               LIMIT 1;
14570
14571             IF NOT FOUND THEN
14572                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
14573                 excluded_count := excluded_count + 1;
14574                 CONTINUE;
14575             END IF;
14576
14577         END IF;
14578
14579         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
14580
14581             PERFORM 1
14582               FROM  asset.call_number cn
14583                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14584               WHERE NOT cn.deleted
14585                     AND NOT cp.deleted
14586                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
14587                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14588                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14589               LIMIT 1;
14590
14591             IF NOT FOUND THEN
14592                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
14593                 excluded_count := excluded_count + 1;
14594                 CONTINUE;
14595             END IF;
14596
14597         END IF;
14598
14599         IF staff IS NULL OR NOT staff THEN
14600
14601             PERFORM 1
14602               FROM  asset.opac_visible_copies
14603               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14604                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14605               LIMIT 1;
14606
14607             IF NOT FOUND THEN
14608                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14609                 excluded_count := excluded_count + 1;
14610                 CONTINUE;
14611             END IF;
14612
14613         ELSE
14614
14615             PERFORM 1
14616               FROM  asset.call_number cn
14617                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14618                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
14619               WHERE NOT cn.deleted
14620                     AND NOT cp.deleted
14621                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14622                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14623               LIMIT 1;
14624
14625             IF NOT FOUND THEN
14626
14627                 PERFORM 1
14628                   FROM  asset.call_number cn
14629                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14630                   LIMIT 1;
14631
14632                 IF FOUND THEN
14633                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14634                     excluded_count := excluded_count + 1;
14635                     CONTINUE;
14636                 END IF;
14637
14638             END IF;
14639
14640         END IF;
14641
14642         visible_count := visible_count + 1;
14643
14644         current_res.id = core_result.id;
14645         current_res.rel = core_result.rel;
14646
14647         tmp_int := 1;
14648         IF metarecord THEN
14649             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14650         END IF;
14651
14652         IF tmp_int = 1 THEN
14653             current_res.record = core_result.records[1];
14654         ELSE
14655             current_res.record = NULL;
14656         END IF;
14657
14658         RETURN NEXT current_res;
14659
14660         IF visible_count % 1000 = 0 THEN
14661             -- RAISE NOTICE ' % visible so far ... ', visible_count;
14662         END IF;
14663
14664     END LOOP;
14665
14666     current_res.id = NULL;
14667     current_res.rel = NULL;
14668     current_res.record = NULL;
14669     current_res.total = total_count;
14670     current_res.checked = check_count;
14671     current_res.deleted = deleted_count;
14672     current_res.visible = visible_count;
14673     current_res.excluded = excluded_count;
14674
14675     CLOSE core_cursor;
14676
14677     RETURN NEXT current_res;
14678
14679 END;
14680 $func$ LANGUAGE PLPGSQL;
14681
14682 ALTER TABLE biblio.record_entry ADD COLUMN owner INT REFERENCES actor.org_unit (id);
14683 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
14684
14685 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
14686 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
14687
14688 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
14689         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
14690 $$ LANGUAGE SQL STRICT IMMUTABLE;
14691
14692 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
14693     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
14694 $$ LANGUAGE SQL STRICT IMMUTABLE;
14695
14696 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
14697     return lc(shift);
14698 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14699
14700 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
14701     return uc(shift);
14702 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14703
14704 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
14705     use Unicode::Normalize;
14706
14707     my $x = NFD(shift);
14708     $x =~ s/\pM+//go;
14709     return $x;
14710
14711 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14712
14713 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
14714     use Unicode::Normalize;
14715
14716     my $x = NFC(shift);
14717     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
14718     return $x;
14719
14720 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14721
14722 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
14723 DECLARE
14724     setting RECORD;
14725     cur_org INT;
14726 BEGIN
14727     cur_org := org_id;
14728     LOOP
14729         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
14730         IF FOUND THEN
14731             RETURN NEXT setting;
14732         END IF;
14733         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
14734         EXIT WHEN cur_org IS NULL;
14735     END LOOP;
14736     RETURN;
14737 END;
14738 $$ LANGUAGE plpgsql STABLE;
14739
14740 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
14741 DECLARE
14742     counter INT;
14743     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
14744 BEGIN
14745
14746     SELECT  COUNT(*) INTO counter
14747       FROM  oils_xpath_table(
14748                 'id',
14749                 'marc',
14750                 'acq.lineitem',
14751                 '//*[@tag="' || tag || '"]',
14752                 'id=' || lineitem
14753             ) as t(i int,c text);
14754
14755     FOR i IN 1 .. counter LOOP
14756         FOR lida IN
14757             SELECT  *
14758               FROM  (   SELECT  id,i,t,v
14759                           FROM  oils_xpath_table(
14760                                     'id',
14761                                     'marc',
14762                                     'acq.lineitem',
14763                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
14764                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
14765                                     'id=' || lineitem
14766                                 ) as t(id int,t text,v text)
14767                     )x
14768         LOOP
14769             RETURN NEXT lida;
14770         END LOOP;
14771     END LOOP;
14772
14773     RETURN;
14774 END;
14775 $$ LANGUAGE PLPGSQL;
14776
14777 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
14778 DECLARE
14779     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
14780     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
14781     result      config.i18n_core%ROWTYPE;
14782     fallback    TEXT;
14783     keyfield    TEXT := keyclass || '.' || keycol;
14784 BEGIN
14785
14786     -- Try the full locale
14787     SELECT  * INTO result
14788       FROM  config.i18n_core
14789       WHERE fq_field = keyfield
14790             AND identity_value = keyvalue
14791             AND translation = locale;
14792
14793     -- Try just the language
14794     IF NOT FOUND THEN
14795         SELECT  * INTO result
14796           FROM  config.i18n_core
14797           WHERE fq_field = keyfield
14798                 AND identity_value = keyvalue
14799                 AND translation = language;
14800     END IF;
14801
14802     -- Fall back to the string we passed in in the first place
14803     IF NOT FOUND THEN
14804     EXECUTE
14805             'SELECT ' ||
14806                 keycol ||
14807             ' FROM ' || keytable ||
14808             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
14809                 INTO fallback;
14810         RETURN fallback;
14811     END IF;
14812
14813     RETURN result.string;
14814 END;
14815 $func$ LANGUAGE PLPGSQL STABLE;
14816
14817 SELECT auditor.create_auditor ( 'acq', 'invoice' );
14818
14819 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
14820
14821 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
14822
14823 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
14824     3, 1, 'delivered_but_lost',
14825     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
14826
14827 CREATE TABLE config.global_flag (
14828     label   TEXT    NOT NULL
14829 ) INHERITS (config.internal_flag);
14830 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
14831
14832 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
14833     VALUES (
14834         'cat.bib.use_id_for_tcn',
14835         oils_i18n_gettext(
14836             'cat.bib.use_id_for_tcn',
14837             'Cat: Use Internal ID for TCN Value',
14838             'cgf', 
14839             'label'
14840         )
14841     );
14842
14843 -- resolves performance issue noted by EG Indiana
14844
14845 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
14846
14847 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
14848
14849 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14850     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
14851 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14852     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14853 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14854     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14855 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14856     (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 );
14857 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14858     (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 );
14859 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14860     (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 );
14861 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14862     (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 );
14863 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14864     (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 );
14865 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14866     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
14867
14868 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
14869  
14870
14871 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
14872
14873 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
14874 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
14875 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
14876 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
14877 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
14878 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
14879
14880 CREATE TABLE metabib.identifier_field_entry (
14881         id              BIGSERIAL       PRIMARY KEY,
14882         source          BIGINT          NOT NULL,
14883         field           INT             NOT NULL,
14884         value           TEXT            NOT NULL,
14885         index_vector    tsvector        NOT NULL
14886 );
14887 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
14888         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
14889         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
14890
14891 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
14892 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
14893     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14894 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
14895
14896 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
14897     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
14898 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
14899     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
14900
14901 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
14902     use Business::ISBN;
14903     use strict;
14904     use warnings;
14905
14906     # For each ISBN found in a single string containing a set of ISBNs:
14907     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
14908     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
14909
14910     my $input = shift;
14911     my $output = '';
14912
14913     foreach my $word (split(/\s/, $input)) {
14914         my $isbn = Business::ISBN->new($word);
14915
14916         # First check the checksum; if it is not valid, fix it and add the original
14917         # bad-checksum ISBN to the output
14918         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
14919             $output .= $isbn->isbn() . " ";
14920             $isbn->fix_checksum();
14921         }
14922
14923         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
14924         # and add the normalized original ISBN to the output
14925         if ($isbn && $isbn->is_valid()) {
14926             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
14927             $output .= $isbn->isbn . " ";
14928
14929             # If we successfully converted the ISBN to its counterpart, add the
14930             # converted ISBN to the output as well
14931             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
14932         }
14933     }
14934     return $output if $output;
14935
14936     # If there were no valid ISBNs, just return the raw input
14937     return $input;
14938 $func$ LANGUAGE PLPERLU;
14939
14940 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
14941 /*
14942  * Copyright (C) 2010 Merrimack Valley Library Consortium
14943  * Jason Stephenson <jstephenson@mvlc.org>
14944  * Copyright (C) 2010 Laurentian University
14945  * Dan Scott <dscott@laurentian.ca>
14946  *
14947  * The translate_isbn1013 function takes an input ISBN and returns the
14948  * following in a single space-delimited string if the input ISBN is valid:
14949  *   - The normalized input ISBN (hyphens stripped)
14950  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
14951  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
14952  */
14953 $$;
14954
14955 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
14956 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
14957 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
14958 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
14959 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
14960 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
14961
14962 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
14963         'ISBN 10/13 conversion',
14964         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
14965         'translate_isbn1013',
14966         0
14967 );
14968
14969 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
14970         'Replace',
14971         'Replace all occurances of first parameter in the string with the second parameter.',
14972         'replace',
14973         2
14974 );
14975
14976 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
14977     SELECT  m.id, i.id, 1
14978       FROM  config.metabib_field m,
14979             config.index_normalizer i
14980       WHERE i.func IN ('first_word')
14981             AND m.id IN (18);
14982
14983 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
14984     SELECT  m.id, i.id, 2
14985       FROM  config.metabib_field m,
14986             config.index_normalizer i
14987       WHERE i.func IN ('translate_isbn1013')
14988             AND m.id IN (18);
14989
14990 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
14991     SELECT  m.id, i.id, $$['-','']$$
14992       FROM  config.metabib_field m,
14993             config.index_normalizer i
14994       WHERE i.func IN ('replace')
14995             AND m.id IN (19);
14996
14997 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
14998     SELECT  m.id, i.id, $$[' ','']$$
14999       FROM  config.metabib_field m,
15000             config.index_normalizer i
15001       WHERE i.func IN ('replace')
15002             AND m.id IN (19);
15003
15004 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15005
15006 UPDATE  config.metabib_field_index_norm_map
15007   SET   params = REPLACE(params,E'\'','"')
15008   WHERE params IS NOT NULL AND params <> '';
15009
15010 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15011
15012 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15013
15014 ALTER TABLE config.circ_modifier
15015         ADD COLUMN avg_wait_time INTERVAL;
15016
15017 --CREATE TABLE actor.usr_password_reset (
15018 --  id SERIAL PRIMARY KEY,
15019 --  uuid TEXT NOT NULL, 
15020 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15021 --  request_time TIMESTAMP NOT NULL DEFAULT NOW(), 
15022 --  has_been_reset BOOL NOT NULL DEFAULT false
15023 --);
15024 --COMMENT ON TABLE actor.usr_password_reset IS $$
15025 --/*
15026 -- * Copyright (C) 2010 Laurentian University
15027 -- * Dan Scott <dscott@laurentian.ca>
15028 -- *
15029 -- * Self-serve password reset requests
15030 -- *
15031 -- * ****
15032 -- *
15033 -- * This program is free software; you can redistribute it and/or
15034 -- * modify it under the terms of the GNU General Public License
15035 -- * as published by the Free Software Foundation; either version 2
15036 -- * of the License, or (at your option) any later version.
15037 -- *
15038 -- * This program is distributed in the hope that it will be useful,
15039 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15040 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15041 -- * GNU General Public License for more details.
15042 -- */
15043 --$$;
15044 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15045 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15046 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15047 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15048
15049 -- Use the identifier search class tsconfig
15050 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15051 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15052     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15053     FOR EACH ROW
15054     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15055
15056 INSERT INTO config.global_flag (name,label,enabled)
15057     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15058 INSERT INTO config.global_flag (name,label,enabled)
15059     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15060
15061 -- turn a JSON scalar into an SQL TEXT value
15062 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15063     use JSON::XS;                    
15064     my $json = shift();
15065     my $txt;
15066     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15067     return undef if ($@);
15068     return $txt
15069 $f$ LANGUAGE PLPERLU;
15070
15071 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15072 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15073 DECLARE
15074     c               action.circulation%ROWTYPE;
15075     view_age        INTERVAL;
15076     usr_view_age    actor.usr_setting%ROWTYPE;
15077     usr_view_start  actor.usr_setting%ROWTYPE;
15078 BEGIN
15079     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15080     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15081
15082     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15083         -- User opted in and supplied a retention age
15084         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15085             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15086         ELSE
15087             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15088         END IF;
15089     ELSIF usr_view_start.value IS NOT NULL THEN
15090         -- User opted in
15091         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15092     ELSE
15093         -- User did not opt in
15094         RETURN;
15095     END IF;
15096
15097     FOR c IN
15098         SELECT  *
15099           FROM  action.circulation
15100           WHERE usr = usr_id
15101                 AND parent_circ IS NULL
15102                 AND xact_start > NOW() - view_age
15103           ORDER BY xact_start
15104     LOOP
15105         RETURN NEXT c;
15106     END LOOP;
15107
15108     RETURN;
15109 END;
15110 $func$ LANGUAGE PLPGSQL;
15111
15112 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15113 DECLARE
15114     usr_keep_age    actor.usr_setting%ROWTYPE;
15115     usr_keep_start  actor.usr_setting%ROWTYPE;
15116     org_keep_age    INTERVAL;
15117     org_keep_count  INT;
15118
15119     keep_age        INTERVAL;
15120
15121     target_acp      RECORD;
15122     circ_chain_head action.circulation%ROWTYPE;
15123     circ_chain_tail action.circulation%ROWTYPE;
15124
15125     purge_position  INT;
15126     count_purged    INT;
15127 BEGIN
15128
15129     count_purged := 0;
15130
15131     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15132
15133     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15134     IF org_keep_count IS NULL THEN
15135         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15136     END IF;
15137
15138     -- First, find copies with more than keep_count non-renewal circs
15139     FOR target_acp IN
15140         SELECT  target_copy,
15141                 COUNT(*) AS total_real_circs
15142           FROM  action.circulation
15143           WHERE parent_circ IS NULL
15144                 AND xact_finish IS NOT NULL
15145           GROUP BY target_copy
15146           HAVING COUNT(*) > org_keep_count
15147     LOOP
15148         purge_position := 0;
15149         -- And, for those, select circs that are finished and older than keep_age
15150         FOR circ_chain_head IN
15151             SELECT  *
15152               FROM  action.circulation
15153               WHERE target_copy = target_acp.target_copy
15154                     AND parent_circ IS NULL
15155               ORDER BY xact_start
15156         LOOP
15157
15158             -- Stop once we've purged enough circs to hit org_keep_count
15159             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15160
15161             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15162             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15163
15164             -- Now get the user setings, if any, to block purging if the user wants to keep more circs
15165             usr_keep_age.value := NULL;
15166             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15167
15168             usr_keep_start.value := NULL;
15169             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start_date';
15170
15171             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15172                 IF oils_json_to_string(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ) THEN
15173                     keep_age := AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ);
15174                 ELSE
15175                     keep_age := oils_json_to_string(usr_keep_age.value)::INTERVAL;
15176                 END IF;
15177             ELSIF usr_keep_start.value IS NOT NULL THEN
15178                 keep_age := AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ);
15179             ELSE
15180                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTEVAL );
15181             END IF;
15182
15183             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15184
15185             -- We've passed the purging tests, purge the circ chain starting at the end
15186             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15187             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15188                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15189                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15190             END LOOP;
15191
15192             count_purged := count_purged + 1;
15193             purge_position := purge_position + 1;
15194
15195         END LOOP;
15196     END LOOP;
15197 END;
15198 $func$ LANGUAGE PLPGSQL;
15199
15200 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15201 DECLARE
15202     h               action.hold_request%ROWTYPE;
15203     view_age        INTERVAL;
15204     view_count      INT;
15205     usr_view_count  actor.usr_setting%ROWTYPE;
15206     usr_view_age    actor.usr_setting%ROWTYPE;
15207     usr_view_start  actor.usr_setting%ROWTYPE;
15208 BEGIN
15209     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15210     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15211     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15212
15213     FOR h IN
15214         SELECT  *
15215           FROM  action.hold_request
15216           WHERE usr = usr_id
15217                 AND fulfillment_time IS NULL
15218                 AND cancel_time IS NULL
15219           ORDER BY request_time DESC
15220     LOOP
15221         RETURN NEXT h;
15222     END LOOP;
15223
15224     IF usr_view_start.value IS NULL THEN
15225         RETURN;
15226     END IF;
15227
15228     IF usr_view_age.value IS NOT NULL THEN
15229         -- User opted in and supplied a retention age
15230         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15231             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15232         ELSE
15233             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15234         END IF;
15235     ELSE
15236         -- User opted in
15237         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15238     END IF;
15239
15240     IF usr_view_count.value IS NOT NULL THEN
15241         view_count := oils_json_to_text(usr_view_count.value)::INT;
15242     ELSE
15243         view_count := 1000;
15244     END IF;
15245
15246     -- show some fulfilled/canceled holds
15247     FOR h IN
15248         SELECT  *
15249           FROM  action.hold_request
15250           WHERE usr = usr_id
15251                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15252                 AND request_time > NOW() - view_age
15253           ORDER BY request_time DESC
15254           LIMIT view_count
15255     LOOP
15256         RETURN NEXT h;
15257     END LOOP;
15258
15259     RETURN;
15260 END;
15261 $func$ LANGUAGE PLPGSQL;
15262
15263 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15264
15265 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15266
15267 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15268
15269 DROP TABLE IF EXISTS serial.issuance CASCADE;
15270
15271 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15272
15273 DROP TABLE IF EXISTS serial.subscription CASCADE;
15274
15275 CREATE TABLE asset.copy_template (
15276         id             SERIAL   PRIMARY KEY,
15277         owning_lib     INT      NOT NULL
15278                                 REFERENCES actor.org_unit (id)
15279                                 DEFERRABLE INITIALLY DEFERRED,
15280         creator        BIGINT   NOT NULL
15281                                 REFERENCES actor.usr (id)
15282                                 DEFERRABLE INITIALLY DEFERRED,
15283         editor         BIGINT   NOT NULL
15284                                 REFERENCES actor.usr (id)
15285                                 DEFERRABLE INITIALLY DEFERRED,
15286         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15287         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15288         name           TEXT     NOT NULL,
15289         -- columns above this point are attributes of the template itself
15290         -- columns after this point are attributes of the copy this template modifies/creates
15291         circ_lib       INT      REFERENCES actor.org_unit (id)
15292                                 DEFERRABLE INITIALLY DEFERRED,
15293         status         INT      REFERENCES config.copy_status (id)
15294                                 DEFERRABLE INITIALLY DEFERRED,
15295         location       INT      REFERENCES asset.copy_location (id)
15296                                 DEFERRABLE INITIALLY DEFERRED,
15297         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15298                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15299         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15300                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15301         age_protect    INT,
15302         circulate      BOOL,
15303         deposit        BOOL,
15304         ref            BOOL,
15305         holdable       BOOL,
15306         deposit_amount NUMERIC(6,2),
15307         price          NUMERIC(8,2),
15308         circ_modifier  TEXT,
15309         circ_as_type   TEXT,
15310         alert_message  TEXT,
15311         opac_visible   BOOL,
15312         floating       BOOL,
15313         mint_condition BOOL
15314 );
15315
15316 CREATE TABLE serial.subscription (
15317         id                     SERIAL       PRIMARY KEY,
15318         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15319         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15320         record_entry           BIGINT       REFERENCES serial.record_entry (id)
15321                                             DEFERRABLE INITIALLY DEFERRED,
15322         expected_date_offset   INTERVAL,
15323         owning_lib             INT          NOT NULL DEFAULT 1
15324                                             REFERENCES actor.org_unit (id)
15325                                             ON DELETE SET NULL
15326                                             DEFERRABLE INITIALLY DEFERRED
15327         -- acquisitions/business-side tables link to here
15328 );
15329
15330 --at least one distribution per org_unit holding issues
15331 CREATE TABLE serial.distribution (
15332         id                    SERIAL  PRIMARY KEY,
15333         subscription          INT     NOT NULL
15334                                       REFERENCES serial.subscription (id)
15335                                                                   ON DELETE CASCADE
15336                                                                   DEFERRABLE INITIALLY DEFERRED,
15337         holding_lib           INT     NOT NULL
15338                                       REFERENCES actor.org_unit (id)
15339                                                                   DEFERRABLE INITIALLY DEFERRED,
15340         label                 TEXT    NOT NULL,
15341         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
15342                                       DEFERRABLE INITIALLY DEFERRED,
15343         receive_unit_template INT     REFERENCES asset.copy_template (id)
15344                                       DEFERRABLE INITIALLY DEFERRED,
15345         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
15346                                       DEFERRABLE INITIALLY DEFERRED,
15347         bind_unit_template    INT     REFERENCES asset.copy_template (id)
15348                                       DEFERRABLE INITIALLY DEFERRED,
15349         unit_label_prefix     TEXT,
15350         unit_label_suffix     TEXT,
15351         record_entry          INT     REFERENCES serial.record_entry (id)
15352                                       ON DELETE SET NULL
15353                                       DEFERRABLE INITIALLY DEFERRED,
15354         summary_method        TEXT    CONSTRAINT summary_method_check CHECK (
15355                                           summary_method IS NULL
15356                                           OR summary_method IN ( 'add_to_sre',
15357                                           'merge_with_sre', 'use_sre_only',
15358                                           'use_sdist_only'))
15359 );
15360
15361 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
15362
15363 CREATE TABLE serial.stream (
15364         id              SERIAL  PRIMARY KEY,
15365         distribution    INT     NOT NULL
15366                                 REFERENCES serial.distribution (id)
15367                                 ON DELETE CASCADE
15368                                 DEFERRABLE INITIALLY DEFERRED,
15369         routing_label   TEXT
15370 );
15371
15372 CREATE UNIQUE INDEX label_once_per_dist
15373         ON serial.stream (distribution, routing_label)
15374         WHERE routing_label IS NOT NULL;
15375
15376 CREATE TABLE serial.routing_list_user (
15377         id             SERIAL       PRIMARY KEY,
15378         stream         INT          NOT NULL
15379                                     REFERENCES serial.stream
15380                                     ON DELETE CASCADE
15381                                     DEFERRABLE INITIALLY DEFERRED,
15382         pos            INT          NOT NULL DEFAULT 1,
15383         reader         INT          REFERENCES actor.usr
15384                                     ON DELETE CASCADE
15385                                     DEFERRABLE INITIALLY DEFERRED,
15386         department     TEXT,
15387         note           TEXT,
15388         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
15389         CONSTRAINT reader_or_dept CHECK
15390         (
15391             -- Recipient is a person or a department, but not both
15392                 (reader IS NOT NULL AND department IS NULL) OR
15393                 (reader IS NULL AND department IS NOT NULL)
15394         )
15395 );
15396
15397 CREATE TABLE serial.caption_and_pattern (
15398         id           SERIAL       PRIMARY KEY,
15399         type         TEXT         NOT NULL
15400                                   CONSTRAINT cap_type CHECK ( type in
15401                                   ( 'basic', 'supplement', 'index' )),
15402         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
15403         active       BOOL         NOT NULL DEFAULT FALSE,
15404         pattern_code TEXT         NOT NULL,       -- must contain JSON
15405         enum_1       TEXT,
15406         enum_2       TEXT,
15407         enum_3       TEXT,
15408         enum_4       TEXT,
15409         enum_5       TEXT,
15410         enum_6       TEXT,
15411         chron_1      TEXT,
15412         chron_2      TEXT,
15413         chron_3      TEXT,
15414         chron_4      TEXT,
15415         chron_5      TEXT,
15416         subscription INT          NOT NULL REFERENCES serial.subscription (id)
15417                                   ON DELETE CASCADE
15418                                   DEFERRABLE INITIALLY DEFERRED,
15419         start_date   TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
15420         end_date     TIMESTAMP WITH TIME ZONE
15421 );
15422
15423 CREATE TABLE serial.issuance (
15424         id              SERIAL    PRIMARY KEY,
15425         creator         INT       NOT NULL
15426                                   REFERENCES actor.usr (id)
15427                                                           DEFERRABLE INITIALLY DEFERRED,
15428         editor          INT       NOT NULL
15429                                   REFERENCES actor.usr (id)
15430                                   DEFERRABLE INITIALLY DEFERRED,
15431         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15432         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15433         subscription    INT       NOT NULL
15434                                   REFERENCES serial.subscription (id)
15435                                   ON DELETE CASCADE
15436                                   DEFERRABLE INITIALLY DEFERRED,
15437         label           TEXT,
15438         date_published  TIMESTAMP WITH TIME ZONE,
15439         holding_code    TEXT,
15440         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
15441                                   (
15442                                       holding_type IS NULL
15443                                       OR holding_type IN ('basic','supplement','index')
15444                                   ),
15445         holding_link_id INT,
15446         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
15447                               DEFERRABLE INITIALLY DEFERRED
15448         -- TODO: add columns for separate enumeration/chronology values
15449 );
15450
15451 CREATE TABLE serial.unit (
15452         label           TEXT,
15453         label_sort_key  TEXT,
15454         contents        TEXT    NOT NULL
15455 ) INHERITS (asset.copy);
15456
15457 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
15458
15459 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
15460
15461 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15462
15463 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15464
15465 CREATE TABLE serial.item (
15466         id              SERIAL  PRIMARY KEY,
15467         creator         INT     NOT NULL
15468                                 REFERENCES actor.usr (id)
15469                                 DEFERRABLE INITIALLY DEFERRED,
15470         editor          INT     NOT NULL
15471                                 REFERENCES actor.usr (id)
15472                                 DEFERRABLE INITIALLY DEFERRED,
15473         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15474         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15475         issuance        INT     NOT NULL
15476                                 REFERENCES serial.issuance (id)
15477                                 ON DELETE CASCADE
15478                                 DEFERRABLE INITIALLY DEFERRED,
15479         stream          INT     NOT NULL
15480                                 REFERENCES serial.stream (id)
15481                                 ON DELETE CASCADE
15482                                 DEFERRABLE INITIALLY DEFERRED,
15483         unit            INT     REFERENCES serial.unit (id)
15484                                 ON DELETE SET NULL
15485                                 DEFERRABLE INITIALLY DEFERRED,
15486         uri             INT     REFERENCES asset.uri (id)
15487                                 ON DELETE SET NULL
15488                                 DEFERRABLE INITIALLY DEFERRED,
15489         date_expected   TIMESTAMP WITH TIME ZONE,
15490         date_received   TIMESTAMP WITH TIME ZONE,
15491         status          TEXT    CONSTRAINT value_status_check CHECK (
15492                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
15493                                'Expected', 'Not Held', 'Not Published', 'Received'))
15494                             DEFAULT 'Expected',
15495         shadowed        BOOL    NOT NULL DEFAULT FALSE
15496 );
15497
15498 CREATE TABLE serial.item_note (
15499         id          SERIAL  PRIMARY KEY,
15500         item        INT     NOT NULL
15501                             REFERENCES serial.item (id)
15502                             ON DELETE CASCADE
15503                             DEFERRABLE INITIALLY DEFERRED,
15504         creator     INT     NOT NULL
15505                             REFERENCES actor.usr (id)
15506                             DEFERRABLE INITIALLY DEFERRED,
15507         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15508         pub         BOOL    NOT NULL    DEFAULT FALSE,
15509         title       TEXT    NOT NULL,
15510         value       TEXT    NOT NULL
15511 );
15512
15513 CREATE TABLE serial.basic_summary (
15514         id                  SERIAL  PRIMARY KEY,
15515         distribution        INT     NOT NULL
15516                                     REFERENCES serial.distribution (id)
15517                                     ON DELETE CASCADE
15518                                     DEFERRABLE INITIALLY DEFERRED,
15519         generated_coverage  TEXT    NOT NULL,
15520         textual_holdings    TEXT,
15521         show_generated      BOOL    NOT NULL DEFAULT TRUE
15522 );
15523
15524 CREATE TABLE serial.supplement_summary (
15525         id                  SERIAL  PRIMARY KEY,
15526         distribution        INT     NOT NULL
15527                                     REFERENCES serial.distribution (id)
15528                                     ON DELETE CASCADE
15529                                     DEFERRABLE INITIALLY DEFERRED,
15530         generated_coverage  TEXT    NOT NULL,
15531         textual_holdings    TEXT,
15532         show_generated      BOOL    NOT NULL DEFAULT TRUE
15533 );
15534
15535 CREATE TABLE serial.index_summary (
15536         id                  SERIAL  PRIMARY KEY,
15537         distribution        INT     NOT NULL
15538                                     REFERENCES serial.distribution (id)
15539                                     ON DELETE CASCADE
15540                                     DEFERRABLE INITIALLY DEFERRED,
15541         generated_coverage  TEXT    NOT NULL,
15542         textual_holdings    TEXT,
15543         show_generated      BOOL    NOT NULL DEFAULT TRUE
15544 );
15545
15546 -- 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.
15547
15548 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
15549 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15550
15551 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
15552 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;
15553
15554 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
15555 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15556
15557 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
15558 RETURNS INTEGER AS $$
15559 BEGIN
15560         RETURN EXTRACT( EPOCH FROM interval_val );
15561 END;
15562 $$ LANGUAGE plpgsql;
15563
15564 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
15565 RETURNS INTEGER AS $$
15566 BEGIN
15567         RETURN config.interval_to_seconds( interval_string::INTERVAL );
15568 END;
15569 $$ LANGUAGE plpgsql;
15570
15571 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
15572     'temp',
15573     oils_i18n_gettext(
15574         'temp',
15575         'Temporary bucket which gets deleted after use.',
15576         'cbrebt',
15577         'label'
15578     )
15579 );
15580
15581 -- 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.
15582
15583 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
15584 BEGIN
15585
15586     IF xml_is_well_formed(NEW.marc) THEN
15587         RETURN NEW;
15588     ELSE
15589         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
15590     END IF;
15591     
15592 END;
15593 $func$ LANGUAGE PLPGSQL;
15594
15595 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();
15596
15597 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();
15598
15599 ALTER TABLE serial.record_entry
15600         ALTER COLUMN marc DROP NOT NULL;
15601
15602 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
15603 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
15604 <xsl:stylesheet
15605     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
15606     xmlns:marc="http://www.loc.gov/MARC21/slim"
15607     version="1.0">
15608 <!--
15609 Copyright (C) 2010  Equinox Software, Inc.
15610 Galen Charlton <gmc@esilibrary.cOM.
15611
15612 This program is free software; you can redistribute it and/or
15613 modify it under the terms of the GNU General Public License
15614 as published by the Free Software Foundation; either version 2
15615 of the License, or (at your option) any later version.
15616
15617 This program is distributed in the hope that it will be useful,
15618 but WITHOUT ANY WARRANTY; without even the implied warranty of
15619 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15620 GNU General Public License for more details.
15621
15622 marc21_expand_880.xsl - stylesheet used during indexing to
15623                         map alternative graphical representations
15624                         of MARC fields stored in 880 fields
15625                         to the corresponding tag name and value.
15626
15627 For example, if a MARC record for a Chinese book has
15628
15629 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
15630 880.00 $6 245-01/$1 $a八十三年短篇小說選
15631
15632 this stylesheet will transform it to the equivalent of
15633
15634 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
15635 245.00 $6 245-01/$1 $a八十三年短篇小說選
15636
15637 -->
15638     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
15639
15640     <xsl:template match="@*|node()">
15641         <xsl:copy>
15642             <xsl:apply-templates select="@*|node()"/>
15643         </xsl:copy>
15644     </xsl:template>
15645
15646     <xsl:template match="//marc:datafield[@tag='880']">
15647         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
15648             <marc:datafield>
15649                 <xsl:attribute name="tag">
15650                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
15651                 </xsl:attribute>
15652                 <xsl:attribute name="ind1">
15653                     <xsl:value-of select="@ind1" />
15654                 </xsl:attribute>
15655                 <xsl:attribute name="ind2">
15656                     <xsl:value-of select="@ind2" />
15657                 </xsl:attribute>
15658                 <xsl:apply-templates />
15659             </marc:datafield>
15660         </xsl:if>
15661     </xsl:template>
15662     
15663 </xsl:stylesheet>$$);
15664
15665 -- Splitting the ingest trigger up into little bits
15666
15667 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
15668     flag INTEGER PRIMARY KEY
15669 ) ON COMMIT DROP;
15670 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
15671
15672 -- cause failure if either of the tables we want to drop have rows
15673 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
15674 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
15675
15676 DROP TABLE IF EXISTS asset.copy_transparency_map;
15677 DROP TABLE IF EXISTS asset.copy_transparency;
15678
15679 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
15680
15681 -- We won't necessarily use all of these, but they are here for completeness.
15682 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
15683 -- Values are the EDI code value + 1000
15684
15685 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
15686 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
15687 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
15688 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
15689 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
15690 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
15691 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
15692 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
15693 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
15694 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
15695 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
15696 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
15697 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
15698 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
15699 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
15700 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
15701 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
15702 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
15703 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
15704 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
15705 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
15706 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
15707 ('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).'),
15708 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
15709 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
15710 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
15711 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
15712 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
15713 ('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.'),
15714 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
15715 ('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.'),
15716 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
15717 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
15718 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
15719 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
15720 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
15721 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
15722 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
15723 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
15724 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
15725 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
15726 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
15727 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
15728 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
15729 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
15730 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
15731 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
15732 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
15733 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
15734 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
15735 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
15736 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
15737 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
15738 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
15739 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
15740 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
15741 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
15742 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
15743 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
15744 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
15745 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
15746 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
15747 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
15748 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
15749 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
15750 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
15751 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
15752 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
15753 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
15754 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
15755 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
15756 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
15757 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
15758 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
15759 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
15760 ('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).'),
15761 ('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).'),
15762 ('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).'),
15763 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
15764 ('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).'),
15765 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
15766 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
15767 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
15768 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
15769 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
15770 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
15771 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
15772 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
15773 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
15774 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
15775 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
15776 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
15777 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
15778 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
15779 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
15780 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
15781 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
15782 ('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.'),
15783 ('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.'),
15784 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
15785 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
15786 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
15787 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
15788 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
15789 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
15790 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
15791 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
15792 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
15793 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
15794 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
15795 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
15796 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
15797 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
15798 ('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.'),
15799 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
15800 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
15801
15802 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
15803     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
15804  
15805 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15806  
15807 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15808         'Remove Parenthesized Substring',
15809         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
15810         'remove_paren_substring',
15811         0
15812 );
15813
15814 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15815         'Trim Surrounding Space',
15816         'Trim leading and trailing spaces from extracted text.',
15817         'btrim',
15818         0
15819 );
15820
15821 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15822     SELECT  m.id,
15823             i.id,
15824             -2
15825       FROM  config.metabib_field m,
15826             config.index_normalizer i
15827       WHERE i.func IN ('remove_paren_substring')
15828             AND m.id IN (26);
15829
15830 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15831     SELECT  m.id,
15832             i.id,
15833             -1
15834       FROM  config.metabib_field m,
15835             config.index_normalizer i
15836       WHERE i.func IN ('btrim')
15837             AND m.id IN (26);
15838
15839 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
15840 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
15841 DECLARE
15842     dyn_profile     vandelay.compile_profile%ROWTYPE;
15843     replace_rule    TEXT;
15844     tmp_marc        TEXT;
15845     trgt_marc        TEXT;
15846     tmpl_marc        TEXT;
15847     match_count     INT;
15848 BEGIN
15849
15850     IF target_marc IS NULL OR template_marc IS NULL THEN
15851         -- RAISE NOTICE 'no marc for target or template record';
15852         RETURN NULL;
15853     END IF;
15854
15855     dyn_profile := vandelay.compile_profile( template_marc );
15856
15857     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
15858         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
15859         RETURN NULL;
15860     END IF;
15861
15862     IF dyn_profile.replace_rule <> '' THEN
15863         trgt_marc = target_marc;
15864         tmpl_marc = template_marc;
15865         replace_rule = dyn_profile.replace_rule;
15866     ELSE
15867         tmp_marc = target_marc;
15868         trgt_marc = template_marc;
15869         tmpl_marc = tmp_marc;
15870         replace_rule = dyn_profile.preserve_rule;
15871     END IF;
15872
15873     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
15874
15875 END;
15876 $$ LANGUAGE PLPGSQL;
15877
15878 -- Function to generate an ephemeral overlay template from an authority record
15879 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
15880
15881     use MARC::Record;
15882     use MARC::File::XML (BinaryEncoding => 'UTF-8');
15883
15884     my $xml = shift;
15885     my $r = MARC::Record->new_from_xml( $xml );
15886
15887     return undef unless ($r);
15888
15889     my $id = shift() || $r->subfield( '901' => 'c' );
15890     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
15891     return undef unless ($id); # We need an ID!
15892
15893     my $tmpl = MARC::Record->new();
15894
15895     my @rule_fields;
15896     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
15897
15898         my $tag = $field->tag;
15899         my $i1 = $field->indicator(1);
15900         my $i2 = $field->indicator(2);
15901         my $sf = join '', map { $_->[0] } $field->subfields;
15902         my @data = map { @$_ } $field->subfields;
15903
15904         my @replace_them;
15905
15906         # Map the authority field to bib fields it can control.
15907         if ($tag >= 100 and $tag <= 111) {       # names
15908             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
15909         } elsif ($tag eq '130') {                # uniform title
15910             @replace_them = qw/130 240 440 730 830/;
15911         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
15912             @replace_them = ($tag + 500);
15913         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
15914             @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/;
15915         } else {
15916             next;
15917         }
15918
15919         # Dummy up the bib-side data
15920         $tmpl->append_fields(
15921             map {
15922                 MARC::Field->new( $_, $i1, $i2, @data )
15923             } @replace_them
15924         );
15925
15926         # Construct some 'replace' rules
15927         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
15928     }
15929
15930     # Insert the replace rules into the template
15931     $tmpl->append_fields(
15932         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
15933     );
15934
15935     $xml = $tmpl->as_xml_record;
15936     $xml =~ s/^<\?.+?\?>$//mo;
15937     $xml =~ s/\n//sgo;
15938     $xml =~ s/>\s+</></sgo;
15939
15940     return $xml;
15941
15942 $func$ LANGUAGE PLPERLU;
15943
15944 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
15945     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
15946 $func$ LANGUAGE SQL;
15947
15948 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
15949     SELECT authority.generate_overlay_template( $1, NULL );
15950 $func$ LANGUAGE SQL;
15951
15952 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
15953 DELETE FROM config.metabib_field WHERE id = 26;
15954
15955 -- Making this a global_flag (UI accessible) instead of an internal_flag
15956 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
15957     VALUES (
15958         'ingest.disable_authority_linking',
15959         oils_i18n_gettext(
15960             'ingest.disable_authority_linking',
15961             'Authority Automation: Disable bib-authority link tracking',
15962             'cgf', 
15963             'label'
15964         )
15965     );
15966 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
15967 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
15968
15969 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
15970     VALUES (
15971         'ingest.disable_authority_auto_update',
15972         oils_i18n_gettext(
15973             'ingest.disable_authority_auto_update',
15974             'Authority Automation: Disable automatic authority updating (requires link tracking)',
15975             'cgf', 
15976             'label'
15977         )
15978     );
15979
15980 -- Enable automated ingest of authority records; just insert the row into
15981 -- authority.record_entry and authority.full_rec will automatically be populated
15982
15983 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
15984     UPDATE  biblio.record_entry
15985       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
15986       WHERE id = $2;
15987     SELECT $1;
15988 $func$ LANGUAGE SQL;
15989
15990 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
15991     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
15992 $func$ LANGUAGE SQL;
15993
15994 -- authority.rec_descriptor appears to be unused currently
15995 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
15996 BEGIN
15997     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
15998 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
15999 --        SELECT  auth_id, ;
16000
16001     RETURN;
16002 END;
16003 $func$ LANGUAGE PLPGSQL;
16004
16005 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16006 BEGIN
16007     DELETE FROM authority.full_rec WHERE record = auth_id;
16008     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16009         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16010
16011     RETURN;
16012 END;
16013 $func$ LANGUAGE PLPGSQL;
16014
16015 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16016 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16017 BEGIN
16018
16019     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16020         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16021           -- Should remove matching $0 from controlled fields at the same time?
16022         RETURN NEW; -- and we're done
16023     END IF;
16024
16025     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16026         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16027
16028         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16029             RETURN NEW;
16030         END IF;
16031     END IF;
16032
16033     -- Flatten and insert the afr data
16034     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16035     IF NOT FOUND THEN
16036         PERFORM authority.reingest_authority_full_rec(NEW.id);
16037 -- authority.rec_descriptor is not currently used
16038 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16039 --        IF NOT FOUND THEN
16040 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16041 --        END IF;
16042     END IF;
16043
16044     RETURN NEW;
16045 END;
16046 $func$ LANGUAGE PLPGSQL;
16047
16048 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 ();
16049
16050 -- Some records manage to get XML namespace declarations into each element,
16051 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16052 -- This broke the old maintain_901(), so we'll make the regex more robust
16053
16054 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16055 BEGIN
16056     -- Remove any existing 901 fields before we insert the authoritative one
16057     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16058     IF TG_TABLE_SCHEMA = 'biblio' THEN
16059         NEW.marc := REGEXP_REPLACE(
16060             NEW.marc,
16061             E'(</(?:[^:]*?:)?record>)',
16062             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16063                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16064                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16065                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16066                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16067                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16068                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16069              E'</datafield>\\1'
16070         );
16071     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16072         NEW.marc := REGEXP_REPLACE(
16073             NEW.marc,
16074             E'(</(?:[^:]*?:)?record>)',
16075             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16076                 '<subfield code="a">' || NEW.arn_value || E'</subfield>' ||
16077                 '<subfield code="b">' || NEW.arn_source || E'</subfield>' ||
16078                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16079                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16080              E'</datafield>\\1'
16081         );
16082     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16083         NEW.marc := REGEXP_REPLACE(
16084             NEW.marc,
16085             E'(</(?:[^:]*?:)?record>)',
16086             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16087                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16088                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16089                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16090                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16091              E'</datafield>\\1'
16092         );
16093     ELSE
16094         NEW.marc := REGEXP_REPLACE(
16095             NEW.marc,
16096             E'(</(?:[^:]*?:)?record>)',
16097             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16098                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16099                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16100              E'</datafield>\\1'
16101         );
16102     END IF;
16103
16104     RETURN NEW;
16105 END;
16106 $func$ LANGUAGE PLPGSQL;
16107
16108 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16109 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16110 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16111  
16112 -- In booking, elbow room defines:
16113 --  a) how far in the future you must make a reservation on a given item if
16114 --      that item will have to transit somewhere to fulfill the reservation.
16115 --  b) how soon a reservation must be starting for the reserved item to
16116 --      be op-captured by the checkin interface.
16117
16118 -- We don't want to clobber any default_elbow room at any level:
16119
16120 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16121 DECLARE
16122     existing    actor.org_unit_setting%ROWTYPE;
16123 BEGIN
16124     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16125     IF NOT FOUND THEN
16126         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16127             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16128             'circ.booking_reservation.default_elbow_room',
16129             '"1 day"'
16130         );
16131         RETURN 1;
16132     END IF;
16133     RETURN 0;
16134 END;
16135 $$ LANGUAGE plpgsql;
16136
16137 SELECT pg_temp.default_elbow();
16138
16139 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16140
16141 -- returns the distinct set of target copy IDs from a user's visible circulation history
16142 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16143     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16144 $$ LANGUAGE SQL;
16145
16146 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16147 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16148 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16149
16150 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16151
16152 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16153 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16154
16155 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16156     VALUES (
16157         'cat.maintain_control_numbers',
16158         oils_i18n_gettext(
16159             'cat.maintain_control_numbers',
16160             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16161             'cgf', 
16162             'label'
16163         )
16164     );
16165
16166 INSERT INTO config.global_flag (name, label, enabled)
16167     VALUES (
16168         'circ.holds.empty_issuance_ok',
16169         oils_i18n_gettext(
16170             'circ.holds.empty_issuance_ok',
16171             'Holds: Allow holds on empty issuances',
16172             'cgf',
16173             'label'
16174         ),
16175         TRUE
16176     );
16177
16178 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16179 use strict;
16180 use MARC::Record;
16181 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16182 use Encode;
16183 use Unicode::Normalize;
16184
16185 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16186 my $schema = $_TD->{table_schema};
16187 my $rec_id = $_TD->{new}{id};
16188
16189 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16190 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16191 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16192     return;
16193 }
16194
16195 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16196 my $ou_cni = 'EVRGRN';
16197
16198 my $owner;
16199 if ($schema eq 'serial') {
16200     $owner = $_TD->{new}{owning_lib};
16201 } else {
16202     # are.owner and bre.owner can be null, so fall back to the consortial setting
16203     $owner = $_TD->{new}{owner} || 1;
16204 }
16205
16206 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16207 if ($ous_rv->{processed}) {
16208     $ou_cni = $ous_rv->{rows}[0]->{value};
16209     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16210 } else {
16211     # Fall back to the shortname of the OU if there was no OU setting
16212     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16213     if ($ous_rv->{processed}) {
16214         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16215     }
16216 }
16217
16218 my ($create, $munge) = (0, 0);
16219 my ($orig_001, $orig_003) = ('', '');
16220
16221 # Incoming MARC records may have multiple 001s or 003s, despite the spec
16222 my @control_ids = $record->field('003');
16223 my @scns = $record->field('035');
16224
16225 foreach my $id_field ('001', '003') {
16226     my $spec_value;
16227     my @controls = $record->field($id_field);
16228
16229     if ($id_field eq '001') {
16230         $spec_value = $rec_id;
16231     } else {
16232         $spec_value = $ou_cni;
16233     }
16234
16235     # Create the 001/003 if none exist
16236     if (scalar(@controls) == 0) {
16237         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
16238         $create = 1;
16239     } elsif (scalar(@controls) > 1) {
16240         # Do we already have the right 001/003 value in the existing set?
16241         unless (grep $_->data() eq $spec_value, @controls) {
16242             $munge = 1;
16243         }
16244
16245         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
16246         foreach my $control (@controls) {
16247             unless ($control->data() eq $spec_value) {
16248                 $record->delete_field($control);
16249             }
16250         }
16251     } else {
16252         # Only one field; check to see if we need to munge it
16253         unless (grep $_->data() eq $spec_value, @controls) {
16254             $munge = 1;
16255         }
16256     }
16257 }
16258
16259 # Now, if we need to munge the 001, we will first push the existing 001/003 into the 035
16260 if ($munge) {
16261     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
16262
16263     # Do not create duplicate 035 fields
16264     unless (grep $_->subfield('a') eq $scn, @scns) {
16265         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
16266     }
16267 }
16268
16269 # Set the 001/003 and update the MARC
16270 if ($create or $munge) {
16271     $record->field('001')->data($rec_id);
16272     $record->field('003')->data($ou_cni);
16273
16274     my $xml = $record->as_xml_record();
16275     $xml =~ s/\n//sgo;
16276     $xml =~ s/^<\?xml.+\?\s*>//go;
16277     $xml =~ s/>\s+</></go;
16278     $xml =~ s/\p{Cc}//go;
16279
16280     # Embed a version of OpenILS::Application::AppUtils->entityize()
16281     # to avoid having to set PERL5LIB for PostgreSQL as well
16282
16283     # If we are going to convert non-ASCII characters to XML entities,
16284     # we had better be dealing with a UTF8 string to begin with
16285     $xml = decode_utf8($xml);
16286
16287     $xml = NFC($xml);
16288
16289     # Convert raw ampersands to entities
16290     $xml =~ s/&(?!\S+;)/&amp;/gso;
16291
16292     # Convert Unicode characters to entities
16293     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
16294
16295     $xml =~ s/[\x00-\x1f]//go;
16296     $_TD->{new}{marc} = $xml;
16297
16298     return "MODIFY";
16299 }
16300
16301 return;
16302 $func$ LANGUAGE PLPERLU;
16303
16304 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16305 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16306 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16307
16308 INSERT INTO metabib.facet_entry (source, field, value)
16309     SELECT source, field, value FROM (
16310         SELECT * FROM metabib.author_field_entry
16311             UNION ALL
16312         SELECT * FROM metabib.keyword_field_entry
16313             UNION ALL
16314         SELECT * FROM metabib.identifier_field_entry
16315             UNION ALL
16316         SELECT * FROM metabib.title_field_entry
16317             UNION ALL
16318         SELECT * FROM metabib.subject_field_entry
16319             UNION ALL
16320         SELECT * FROM metabib.series_field_entry
16321         )x
16322     WHERE x.index_vector = '';
16323         
16324 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
16325 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
16326 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
16327 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
16328 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
16329 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
16330
16331 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
16332 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
16333 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
16334
16335 -- copy OPAC visibility materialized view
16336 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
16337
16338     TRUNCATE TABLE asset.opac_visible_copies;
16339
16340     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16341     SELECT  cp.id, cp.circ_lib, cn.record
16342     FROM  asset.copy cp
16343         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16344         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16345         JOIN asset.copy_location cl ON (cp.location = cl.id)
16346         JOIN config.copy_status cs ON (cp.status = cs.id)
16347         JOIN biblio.record_entry b ON (cn.record = b.id)
16348     WHERE NOT cp.deleted
16349         AND NOT cn.deleted
16350         AND NOT b.deleted
16351         AND cs.opac_visible
16352         AND cl.opac_visible
16353         AND cp.opac_visible
16354         AND a.opac_visible;
16355
16356 $$ LANGUAGE SQL;
16357 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
16358 Rebuild the copy OPAC visibility cache.  Useful during migrations.
16359 $$;
16360
16361 -- and actually populate the table
16362 SELECT asset.refresh_opac_visible_copies_mat_view();
16363
16364 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
16365 DECLARE
16366     add_query       TEXT;
16367     remove_query    TEXT;
16368     do_add          BOOLEAN := false;
16369     do_remove       BOOLEAN := false;
16370 BEGIN
16371     add_query := $$
16372             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16373                 SELECT  cp.id, cp.circ_lib, cn.record
16374                   FROM  asset.copy cp
16375                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16376                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16377                         JOIN asset.copy_location cl ON (cp.location = cl.id)
16378                         JOIN config.copy_status cs ON (cp.status = cs.id)
16379                         JOIN biblio.record_entry b ON (cn.record = b.id)
16380                   WHERE NOT cp.deleted
16381                         AND NOT cn.deleted
16382                         AND NOT b.deleted
16383                         AND cs.opac_visible
16384                         AND cl.opac_visible
16385                         AND cp.opac_visible
16386                         AND a.opac_visible
16387     $$;
16388  
16389     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
16390
16391     IF TG_OP = 'INSERT' THEN
16392
16393         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16394             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16395             EXECUTE add_query;
16396         END IF;
16397
16398         RETURN NEW;
16399
16400     END IF;
16401
16402     -- handle items first, since with circulation activity
16403     -- their statuses change frequently
16404     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16405
16406         IF OLD.location    <> NEW.location OR
16407            OLD.call_number <> NEW.call_number OR
16408            OLD.status      <> NEW.status OR
16409            OLD.circ_lib    <> NEW.circ_lib THEN
16410             -- any of these could change visibility, but
16411             -- we'll save some queries and not try to calculate
16412             -- the change directly
16413             do_remove := true;
16414             do_add := true;
16415         ELSE
16416
16417             IF OLD.deleted <> NEW.deleted THEN
16418                 IF NEW.deleted THEN
16419                     do_remove := true;
16420                 ELSE
16421                     do_add := true;
16422                 END IF;
16423             END IF;
16424
16425             IF OLD.opac_visible <> NEW.opac_visible THEN
16426                 IF OLD.opac_visible THEN
16427                     do_remove := true;
16428                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
16429                                         -- is also marked opac_visible
16430                     do_add := true;
16431                 END IF;
16432             END IF;
16433
16434         END IF;
16435
16436         IF do_remove THEN
16437             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
16438         END IF;
16439         IF do_add THEN
16440             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16441             EXECUTE add_query;
16442         END IF;
16443
16444         RETURN NEW;
16445
16446     END IF;
16447
16448     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
16449  
16450         IF OLD.deleted AND NEW.deleted THEN -- do nothing
16451
16452             RETURN NEW;
16453  
16454         ELSIF NEW.deleted THEN -- remove rows
16455  
16456             IF TG_TABLE_NAME = 'call_number' THEN
16457                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
16458             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16459                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
16460             END IF;
16461  
16462             RETURN NEW;
16463  
16464         ELSIF OLD.deleted THEN -- add rows
16465  
16466             IF TG_TABLE_NAME IN ('copy','unit') THEN
16467                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16468             ELSIF TG_TABLE_NAME = 'call_number' THEN
16469                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16470             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16471                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
16472             END IF;
16473  
16474             EXECUTE add_query;
16475             RETURN NEW;
16476  
16477         END IF;
16478  
16479     END IF;
16480
16481     IF TG_TABLE_NAME = 'call_number' THEN
16482
16483         IF OLD.record <> NEW.record THEN
16484             -- call number is linked to different bib
16485             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
16486             EXECUTE remove_query;
16487             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16488             EXECUTE add_query;
16489         END IF;
16490
16491         RETURN NEW;
16492
16493     END IF;
16494
16495     IF TG_TABLE_NAME IN ('record_entry') THEN
16496         RETURN NEW; -- don't have 'opac_visible'
16497     END IF;
16498
16499     -- actor.org_unit, asset.copy_location, asset.copy_status
16500     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
16501
16502         RETURN NEW;
16503
16504     ELSIF NEW.opac_visible THEN -- add rows
16505
16506         IF TG_TABLE_NAME = 'org_unit' THEN
16507             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
16508         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16509             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
16510         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16511             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
16512         END IF;
16513  
16514         EXECUTE add_query;
16515  
16516     ELSE -- delete rows
16517
16518         IF TG_TABLE_NAME = 'org_unit' THEN
16519             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
16520         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16521             remove_query := remove_query || 'location = ' || NEW.id || ');';
16522         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16523             remove_query := remove_query || 'status = ' || NEW.id || ');';
16524         END IF;
16525  
16526         EXECUTE remove_query;
16527  
16528     END IF;
16529  
16530     RETURN NEW;
16531 END;
16532 $func$ LANGUAGE PLPGSQL;
16533 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
16534 Trigger function to update the copy OPAC visiblity cache.
16535 $$;
16536 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();
16537 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16538 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();
16539 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();
16540 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16541 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();
16542 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();
16543
16544 -- must create this rule explicitly; it is not inherited from asset.copy
16545 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;
16546
16547 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);
16548
16549 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
16550 DECLARE
16551     moved_objects INT := 0;
16552     bib_id        INT := 0;
16553     bib_rec       biblio.record_entry%ROWTYPE;
16554     auth_link     authority.bib_linking%ROWTYPE;
16555 BEGIN
16556
16557     -- 1. Make source_record MARC a copy of the target_record to get auto-sync in linked bib records
16558     UPDATE authority.record_entry
16559       SET marc = (
16560         SELECT marc
16561           FROM authority.record_entry
16562           WHERE id = target_record
16563       )
16564       WHERE id = source_record;
16565
16566     -- 2. Update all bib records with the ID from target_record in their $0
16567     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre 
16568       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
16569       WHERE abl.authority = target_record LOOP
16570
16571         UPDATE biblio.record_entry
16572           SET marc = REGEXP_REPLACE(marc, 
16573             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
16574             E'\\1' || target_record || '<', 'g')
16575           WHERE id = bib_rec.id;
16576
16577           moved_objects := moved_objects + 1;
16578     END LOOP;
16579
16580     -- 3. "Delete" source_record
16581     DELETE FROM authority.record_entry
16582       WHERE id = source_record;
16583
16584     RETURN moved_objects;
16585 END;
16586 $func$ LANGUAGE plpgsql;
16587
16588 -- serial.record_entry already had an owner column spelled "owning_lib"
16589 -- Adjust the table and affected functions accordingly
16590
16591 ALTER TABLE serial.record_entry DROP COLUMN owner;
16592
16593 CREATE TABLE actor.usr_saved_search (
16594     id              SERIAL          PRIMARY KEY,
16595         owner           INT             NOT NULL REFERENCES actor.usr (id)
16596                                         ON DELETE CASCADE
16597                                         DEFERRABLE INITIALLY DEFERRED,
16598         name            TEXT            NOT NULL,
16599         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
16600         query_text      TEXT            NOT NULL,
16601         query_type      TEXT            NOT NULL
16602                                         CONSTRAINT valid_query_text CHECK (
16603                                         query_type IN ( 'URL' )) DEFAULT 'URL',
16604                                         -- we may add other types someday
16605         target          TEXT            NOT NULL
16606                                         CONSTRAINT valid_target CHECK (
16607                                         target IN ( 'record', 'metarecord', 'callnumber' )),
16608         CONSTRAINT name_once_per_user UNIQUE (owner, name)
16609 );
16610
16611 -- Apply Dan Wells' changes to the serial schema, from the
16612 -- seials-integration branch
16613
16614 CREATE TABLE serial.subscription_note (
16615         id           SERIAL PRIMARY KEY,
16616         subscription INT    NOT NULL
16617                             REFERENCES serial.subscription (id)
16618                             ON DELETE CASCADE
16619                             DEFERRABLE INITIALLY DEFERRED,
16620         creator      INT    NOT NULL
16621                             REFERENCES actor.usr (id)
16622                             DEFERRABLE INITIALLY DEFERRED,
16623         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
16624         pub          BOOL   NOT NULL DEFAULT FALSE,
16625         title        TEXT   NOT NULL,
16626         value        TEXT   NOT NULL
16627 );
16628
16629 CREATE TABLE serial.distribution_note (
16630         id           SERIAL PRIMARY KEY,
16631         distribution INT    NOT NULL
16632                             REFERENCES serial.distribution (id)
16633                             ON DELETE CASCADE
16634                             DEFERRABLE INITIALLY DEFERRED,
16635         creator      INT    NOT NULL
16636                             REFERENCES actor.usr (id)
16637                             DEFERRABLE INITIALLY DEFERRED,
16638         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
16639         pub          BOOL   NOT NULL DEFAULT FALSE,
16640         title        TEXT   NOT NULL,
16641         value        TEXT   NOT NULL
16642 );
16643
16644 ------- Begin surgery on serial.unit
16645
16646 ALTER TABLE serial.unit
16647         DROP COLUMN label;
16648
16649 ALTER TABLE serial.unit
16650         RENAME COLUMN label_sort_key TO sort_key;
16651
16652 ALTER TABLE serial.unit
16653         RENAME COLUMN contents TO detailed_contents;
16654
16655 ALTER TABLE serial.unit
16656         ADD COLUMN summary_contents TEXT;
16657
16658 UPDATE serial.unit
16659 SET summary_contents = detailed_contents;
16660
16661 ALTER TABLE serial.unit
16662         ALTER column summary_contents SET NOT NULL;
16663
16664 ------- End surgery on serial.unit
16665
16666 -- 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' );
16667
16668 -- Now rebuild the constraints dropped via cascade.
16669 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
16670 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
16671 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
16672
16673 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
16674
16675 DELETE FROM config.metabib_field_index_norm_map
16676     WHERE norm IN (
16677         SELECT id 
16678             FROM config.index_normalizer
16679             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
16680     )
16681     AND field = 18
16682 ;
16683
16684 -- We won't necessarily use all of these, but they are here for completeness.
16685 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
16686 -- Values are the EDI code value + 1200
16687
16688 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
16689 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
16690 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
16691 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
16692 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
16693 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
16694 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
16695 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
16696 (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.'),
16697 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
16698 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
16699 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
16700 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
16701 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
16702 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
16703 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
16704 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
16705 (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.'),
16706 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
16707 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
16708 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
16709 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
16710 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
16711 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
16712 (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.'),
16713 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
16714 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
16715 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
16716 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
16717 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
16718 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
16719 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
16720 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
16721 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
16722 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
16723 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
16724 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
16725 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
16726 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
16727 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
16728 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
16729 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
16730 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
16731 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
16732 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
16733 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
16734 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
16735 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
16736 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
16737 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
16738 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
16739 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
16740 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
16741 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
16742 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
16743 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
16744 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
16745 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
16746 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
16747 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
16748 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
16749 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
16750 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
16751 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
16752 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
16753 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
16754 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
16755 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
16756 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
16757 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
16758 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
16759 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
16760 (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.'),
16761 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
16762 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
16763 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
16764 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
16765 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
16766 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
16767 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
16768 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
16769 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
16770 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
16771 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
16772 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
16773 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
16774 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
16775 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
16776 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
16777 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
16778 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
16779 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
16780 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
16781 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
16782 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
16783 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
16784 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
16785 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
16786 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
16787 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
16788 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
16789 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
16790 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
16791 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
16792 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
16793 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
16794 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
16795 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
16796 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
16797 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
16798 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
16799 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
16800 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
16801 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
16802 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
16803 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
16804 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
16805 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
16806 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
16807 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
16808 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
16809 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
16810 (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.'),
16811 (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.'),
16812 (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.'),
16813 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
16814 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
16815 (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.'),
16816 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
16817 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
16818 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
16819 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
16820 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
16821 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
16822 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
16823 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
16824 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
16825 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
16826 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
16827 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
16828 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
16829 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
16830 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
16831 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
16832 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
16833 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
16834 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
16835 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
16836 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
16837 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
16838 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
16839 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
16840 (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.'),
16841 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
16842 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
16843 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
16844 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
16845 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
16846 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
16847 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
16848 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
16849 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
16850 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
16851 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
16852 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
16853 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
16854 (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.'),
16855 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
16856 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
16857 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
16858 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
16859 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
16860 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
16861 (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.'),
16862 (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.'),
16863 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
16864 (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.'),
16865 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
16866 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
16867 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
16868 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
16869 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
16870 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
16871 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
16872 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
16873 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
16874 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
16875 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
16876 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
16877 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
16878 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
16879 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
16880 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
16881 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
16882 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
16883 (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.'),
16884 (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.'),
16885 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
16886 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
16887 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
16888 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
16889 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
16890 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
16891 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
16892 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
16893 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
16894 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
16895 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
16896 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
16897 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
16898 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
16899 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
16900 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
16901 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
16902 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
16903 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
16904 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
16905 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
16906 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
16907 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
16908 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
16909 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
16910 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
16911 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
16912 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
16913 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
16914 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
16915 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
16916 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
16917 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
16918 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
16919 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
16920 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
16921 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
16922 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
16923 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
16924 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
16925 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
16926 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
16927 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
16928 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
16929 (1, 't', 1442, 'Number of months', 'The number of months.'),
16930 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
16931 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
16932 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
16933 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
16934 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
16935 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
16936 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
16937 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
16938 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
16939 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
16940 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
16941 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
16942 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
16943 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
16944 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
16945 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
16946 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
16947 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
16948 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
16949 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
16950 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
16951 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
16952 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
16953 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
16954 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
16955 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
16956 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
16957 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
16958 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
16959 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
16960 (1, 't', 1473, 'Agents', 'The number of agents.'),
16961 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
16962 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
16963 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
16964 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
16965 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
16966 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
16967 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
16968 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
16969 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
16970 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
16971 (1, 't', 1484, 'Departments', 'The number of departments.'),
16972 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
16973 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
16974 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
16975 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
16976 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
16977 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
16978 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
16979 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
16980 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
16981 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
16982 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
16983 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
16984 (1, 't', 1497, 'Executives', 'The number of executives.'),
16985 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
16986 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
16987 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
16988 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
16989 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
16990 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
16991 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
16992 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
16993 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
16994 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
16995 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
16996 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
16997 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
16998 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
16999 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17000 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17001 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17002 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17003 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17004 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17005 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17006 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17007 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17008 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17009 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17010 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17011 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17012 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17013 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17014 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17015 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17016 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17017 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17018 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17019 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17020 (1, 't', 1533, 'Seats',        'The number of seats.'),
17021 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17022 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17023 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17024 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17025 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17026 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17027 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17028 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17029 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17030 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17031 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17032 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17033 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17034 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17035 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17036 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17037 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17038 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17039 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17040 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17041 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17042 (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.'),
17043 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17044 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17045 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17046 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17047 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17048 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17049 (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.'),
17050 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17051 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17052 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17053 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17054 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17055 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17056 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17057 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17058 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17059 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17060 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17061 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17062 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17063 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17064 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17065 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17066 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17067 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17068 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17069 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17070 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17071 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17072 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17073 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17074 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17075 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17076 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17077 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17078 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17079 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17080 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17081 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17082 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17083 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17084 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17085 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17086 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17087 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17088 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17089 (1, 't', 1602, 'Patients',         'Number of patients.'),
17090 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17091 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17092 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17093 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17094 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17095 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17096 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17097 (1, 't', 1610, 'Operators',        'Number of operators.'),
17098 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17099 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17100 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17101 (1, 't', 1614, 'Machines',         'Number of machines.'),
17102 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17103 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17104 (1, 't', 1617, 'Directors',        'Number of directors.'),
17105 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17106 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17107 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17108 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17109 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17110 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17111 (1, 't', 1624, 'Beds', 'Number of beds.'),
17112 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17113 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17114 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17115 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17116 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17117 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17118 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17119 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17120 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17121 (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.'),
17122 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17123 (1, 't', 1636, 'Professor', 'The number of professors.'),
17124 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17125 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17126 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17127 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17128 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17129 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17130 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17131 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17132 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17133 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17134 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17135 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17136 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17137 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17138 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17139 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17140 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17141 (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.'),
17142 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17143 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17144 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17145 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17146 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17147 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17148 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17149 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17150 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17151 (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.'),
17152 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17153 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17154 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17155 (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.'),
17156 (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.'),
17157 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17158 (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.'),
17159 (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.'),
17160 (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.'),
17161 (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.'),
17162 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17163 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17164 (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.'),
17165 (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.'),
17166 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17167 (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.'),
17168 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17169 (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.'),
17170 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17171 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17172 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17173 (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).'),
17174 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17175 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17176 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17177 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17178 ;
17179 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17180
17181 CREATE TABLE acq.serial_claim (
17182     id     SERIAL           PRIMARY KEY,
17183     type   INT              NOT NULL REFERENCES acq.claim_type
17184                                      DEFERRABLE INITIALLY DEFERRED,
17185     item    BIGINT          NOT NULL REFERENCES serial.item
17186                                      DEFERRABLE INITIALLY DEFERRED
17187 );
17188
17189 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17190
17191 CREATE TABLE acq.serial_claim_event (
17192     id             BIGSERIAL        PRIMARY KEY,
17193     type           INT              NOT NULL REFERENCES acq.claim_event_type
17194                                              DEFERRABLE INITIALLY DEFERRED,
17195     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17196                                              DEFERRABLE INITIALLY DEFERRED,
17197     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17198     creator        INT              NOT NULL REFERENCES actor.usr
17199                                              DEFERRABLE INITIALLY DEFERRED,
17200     note           TEXT
17201 );
17202
17203 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
17204
17205 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
17206
17207 -- now what about the auditor.*_lifecycle views??
17208
17209 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17210     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
17211 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17212     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
17213 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
17214 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
17215
17216 CREATE TABLE asset.call_number_class (
17217     id             bigserial     PRIMARY KEY,
17218     name           TEXT          NOT NULL,
17219     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
17220     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17221 );
17222
17223 COMMENT ON TABLE asset.call_number_class IS $$
17224 Defines the call number normalization database functions in the "normalizer"
17225 column and the tag/subfield combinations to use to lookup the call number in
17226 the "field" column for a given classification scheme. Tag/subfield combinations
17227 are delimited by commas.
17228 $$;
17229
17230 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
17231     ('Generic', 'asset.label_normalizer_generic'),
17232     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
17233     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
17234 ;
17235
17236 -- Generic fields
17237 UPDATE asset.call_number_class
17238     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17239     WHERE id = 1
17240 ;
17241
17242 -- Dewey fields
17243 UPDATE asset.call_number_class
17244     SET field = '080ab,082ab'
17245     WHERE id = 2
17246 ;
17247
17248 -- LC fields
17249 UPDATE asset.call_number_class
17250     SET field = '050ab,055ab'
17251     WHERE id = 3
17252 ;
17253  
17254 ALTER TABLE auditor.asset_call_number_history ADD COLUMN label_class BIGINT;
17255 ALTER TABLE auditor.asset_call_number_history ADD COLUMN label_sortkey TEXT;
17256 ALTER TABLE asset.call_number ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL REFERENCES asset.call_number_class(id) DEFERRABLE INITIALLY DEFERRED;
17257 ALTER TABLE asset.call_number ADD COLUMN label_sortkey TEXT;
17258 CREATE INDEX asset_call_number_label_sortkey ON asset.call_number(label_sortkey);
17259
17260 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
17261 DECLARE
17262     sortkey        TEXT := '';
17263 BEGIN
17264     sortkey := NEW.label_sortkey;
17265
17266     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
17267        quote_literal( NEW.label ) || ')'
17268        FROM asset.call_number_class acnc
17269        WHERE acnc.id = NEW.label_class
17270        INTO sortkey;
17271
17272     NEW.label_sortkey = sortkey;
17273
17274     RETURN NEW;
17275 END;
17276 $func$ LANGUAGE PLPGSQL;
17277
17278 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
17279     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
17280     # thus could probably be considered a derived work, although nothing was
17281     # directly copied - but to err on the safe side of providing attribution:
17282     # Copyright (C) 2007 LibLime
17283     # Licensed under the GPL v2 or later
17284
17285     use strict;
17286     use warnings;
17287
17288     # Converts the callnumber to uppercase
17289     # Strips spaces from start and end of the call number
17290     # Converts anything other than letters, digits, and periods into underscores
17291     # Collapses multiple underscores into a single underscore
17292     my $callnum = uc(shift);
17293     $callnum =~ s/^\s//g;
17294     $callnum =~ s/\s$//g;
17295     $callnum =~ s/[^A-Z0-9_.]/_/g;
17296     $callnum =~ s/_{2,}/_/g;
17297
17298     return $callnum;
17299 $func$ LANGUAGE PLPERLU;
17300
17301 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
17302     # Derived from the Koha C4::ClassSortRoutine::Dewey module
17303     # Copyright (C) 2007 LibLime
17304     # Licensed under the GPL v2 or later
17305
17306     use strict;
17307     use warnings;
17308
17309     my $init = uc(shift);
17310     $init =~ s/^\s+//;
17311     $init =~ s/\s+$//;
17312     $init =~ s!/!!g;
17313     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
17314     my @tokens = split /\.|\s+/, $init;
17315     my $digit_group_count = 0;
17316     for (my $i = 0; $i <= $#tokens; $i++) {
17317         if ($tokens[$i] =~ /^\d+$/) {
17318             $digit_group_count++;
17319             if (2 == $digit_group_count) {
17320                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
17321                 $tokens[$i] =~ tr/ /0/;
17322             }
17323         }
17324     }
17325     my $key = join("_", @tokens);
17326     $key =~ s/[^\p{IsAlnum}_]//g;
17327
17328     return $key;
17329
17330 $func$ LANGUAGE PLPERLU;
17331
17332 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
17333     use strict;
17334     use warnings;
17335
17336     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
17337     # The author hopes to upload it to CPAN some day, which would make our lives easier
17338     use Library::CallNumber::LC;
17339
17340     my $callnum = Library::CallNumber::LC->new(shift);
17341     return $callnum->normalize();
17342
17343 $func$ LANGUAGE PLPERLU;
17344
17345 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$
17346 DECLARE
17347     ans RECORD;
17348     trans INT;
17349 BEGIN
17350     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;
17351
17352     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
17353         RETURN QUERY
17354         SELECT  ans.depth,
17355                 ans.id,
17356                 COUNT( av.id ),
17357                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17358                 COUNT( av.id ),
17359                 trans
17360           FROM
17361                 actor.org_unit_descendants(ans.id) d
17362                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17363                 JOIN asset.copy cp ON (cp.id = av.id)
17364           GROUP BY 1,2,6;
17365
17366         IF NOT FOUND THEN
17367             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17368         END IF;
17369
17370     END LOOP;
17371
17372     RETURN;
17373 END;
17374 $f$ LANGUAGE PLPGSQL;
17375
17376 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$
17377 DECLARE
17378     ans RECORD;
17379     trans INT;
17380 BEGIN
17381     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;
17382
17383     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17384         RETURN QUERY
17385         SELECT  -1,
17386                 ans.id,
17387                 COUNT( av.id ),
17388                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17389                 COUNT( av.id ),
17390                 trans
17391           FROM
17392                 actor.org_unit_descendants(ans.id) d
17393                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17394                 JOIN asset.copy cp ON (cp.id = av.id)
17395           GROUP BY 1,2,6;
17396
17397         IF NOT FOUND THEN
17398             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17399         END IF;
17400
17401     END LOOP;
17402
17403     RETURN;
17404 END;
17405 $f$ LANGUAGE PLPGSQL;
17406
17407 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$
17408 DECLARE
17409     ans RECORD;
17410     trans INT;
17411 BEGIN
17412     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;
17413
17414     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
17415         RETURN QUERY
17416         SELECT  ans.depth,
17417                 ans.id,
17418                 COUNT( cp.id ),
17419                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17420                 COUNT( cp.id ),
17421                 trans
17422           FROM
17423                 actor.org_unit_descendants(ans.id) d
17424                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17425                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17426           GROUP BY 1,2,6;
17427
17428         IF NOT FOUND THEN
17429             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17430         END IF;
17431
17432     END LOOP;
17433
17434     RETURN;
17435 END;
17436 $f$ LANGUAGE PLPGSQL;
17437
17438 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$
17439 DECLARE
17440     ans RECORD;
17441     trans INT;
17442 BEGIN
17443     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;
17444
17445     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17446         RETURN QUERY
17447         SELECT  -1,
17448                 ans.id,
17449                 COUNT( cp.id ),
17450                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17451                 COUNT( cp.id ),
17452                 trans
17453           FROM
17454                 actor.org_unit_descendants(ans.id) d
17455                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17456                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17457           GROUP BY 1,2,6;
17458
17459         IF NOT FOUND THEN
17460             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17461         END IF;
17462
17463     END LOOP;
17464
17465     RETURN;
17466 END;
17467 $f$ LANGUAGE PLPGSQL;
17468
17469 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$
17470 BEGIN
17471     IF staff IS TRUE THEN
17472         IF place > 0 THEN
17473             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
17474         ELSE
17475             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
17476         END IF;
17477     ELSE
17478         IF place > 0 THEN
17479             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
17480         ELSE
17481             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
17482         END IF;
17483     END IF;
17484
17485     RETURN;
17486 END;
17487 $f$ LANGUAGE PLPGSQL;
17488
17489 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$
17490 DECLARE
17491     ans RECORD;
17492     trans INT;
17493 BEGIN
17494     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;
17495
17496     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
17497         RETURN QUERY
17498         SELECT  ans.depth,
17499                 ans.id,
17500                 COUNT( av.id ),
17501                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17502                 COUNT( av.id ),
17503                 trans
17504           FROM
17505                 actor.org_unit_descendants(ans.id) d
17506                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17507                 JOIN asset.copy cp ON (cp.id = av.id)
17508                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
17509           GROUP BY 1,2,6;
17510
17511         IF NOT FOUND THEN
17512             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17513         END IF;
17514
17515     END LOOP;
17516
17517     RETURN;
17518 END;
17519 $f$ LANGUAGE PLPGSQL;
17520
17521 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$
17522 DECLARE
17523     ans RECORD;
17524     trans INT;
17525 BEGIN
17526     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;
17527
17528     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17529         RETURN QUERY
17530         SELECT  -1,
17531                 ans.id,
17532                 COUNT( av.id ),
17533                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17534                 COUNT( av.id ),
17535                 trans
17536           FROM
17537                 actor.org_unit_descendants(ans.id) d
17538                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17539                 JOIN asset.copy cp ON (cp.id = av.id)
17540                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
17541           GROUP BY 1,2,6;
17542
17543         IF NOT FOUND THEN
17544             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17545         END IF;
17546
17547     END LOOP;
17548
17549     RETURN;
17550 END;
17551 $f$ LANGUAGE PLPGSQL;
17552
17553 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$
17554 DECLARE
17555     ans RECORD;
17556     trans INT;
17557 BEGIN
17558     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;
17559
17560     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
17561         RETURN QUERY
17562         SELECT  ans.depth,
17563                 ans.id,
17564                 COUNT( cp.id ),
17565                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17566                 COUNT( cp.id ),
17567                 trans
17568           FROM
17569                 actor.org_unit_descendants(ans.id) d
17570                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17571                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17572                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
17573           GROUP BY 1,2,6;
17574
17575         IF NOT FOUND THEN
17576             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17577         END IF;
17578
17579     END LOOP;
17580
17581     RETURN;
17582 END;
17583 $f$ LANGUAGE PLPGSQL;
17584
17585 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$
17586 DECLARE
17587     ans RECORD;
17588     trans INT;
17589 BEGIN
17590     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;
17591
17592     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17593         RETURN QUERY
17594         SELECT  -1,
17595                 ans.id,
17596                 COUNT( cp.id ),
17597                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17598                 COUNT( cp.id ),
17599                 trans
17600           FROM
17601                 actor.org_unit_descendants(ans.id) d
17602                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17603                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17604                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
17605           GROUP BY 1,2,6;
17606
17607         IF NOT FOUND THEN
17608             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17609         END IF;
17610
17611     END LOOP;
17612
17613     RETURN;
17614 END;
17615 $f$ LANGUAGE PLPGSQL;
17616
17617 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$
17618 BEGIN
17619     IF staff IS TRUE THEN
17620         IF place > 0 THEN
17621             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
17622         ELSE
17623             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
17624         END IF;
17625     ELSE
17626         IF place > 0 THEN
17627             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
17628         ELSE
17629             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
17630         END IF;
17631     END IF;
17632
17633     RETURN;
17634 END;
17635 $f$ LANGUAGE PLPGSQL;
17636
17637 -- No transaction is required
17638
17639 -- Triggers on the vandelay.queued_*_record tables delete entries from
17640 -- the associated vandelay.queued_*_record_attr tables based on the record's
17641 -- ID; create an index on that column to avoid sequential scans for each
17642 -- queued record that is deleted
17643 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
17644 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
17645
17646 -- Avoid sequential scans for queue retrieval operations by providing an
17647 -- index on the queue column
17648 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
17649 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
17650
17651 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
17652
17653 -- Start picking up call number label prefixes and suffixes
17654 -- from asset.copy_location
17655 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
17656 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
17657
17658 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
17659
17660 -- Let's not break existing reports
17661 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
17662 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
17663
17664 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
17665 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
17666 SELECT  r.id,
17667     r.fingerprint,
17668     r.quality,
17669     r.tcn_source,
17670     r.tcn_value,
17671     FIRST(title.value) AS title,
17672     FIRST(author.value) AS author,
17673     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
17674     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
17675     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
17676     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
17677   FROM  biblio.record_entry r
17678     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
17679     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
17680     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
17681     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
17682     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
17683     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
17684   GROUP BY 1,2,3,4,5;
17685
17686 -- Correct the ISSN array definition for reporter.simple_record
17687
17688 CREATE OR REPLACE VIEW reporter.simple_record AS
17689 SELECT  r.id,
17690         s.metarecord,
17691         r.fingerprint,
17692         r.quality,
17693         r.tcn_source,
17694         r.tcn_value,
17695         title.value AS title,
17696         uniform_title.value AS uniform_title,
17697         author.value AS author,
17698         publisher.value AS publisher,
17699         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
17700         series_title.value AS series_title,
17701         series_statement.value AS series_statement,
17702         summary.value AS summary,
17703         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
17704         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
17705         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
17706         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
17707         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
17708         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
17709         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
17710         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
17711   FROM  biblio.record_entry r
17712         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
17713         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
17714         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
17715         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
17716         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
17717         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
17718         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
17719         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
17720         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')
17721         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
17722         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
17723   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
17724
17725 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
17726     DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
17727 $$ LANGUAGE SQL;
17728
17729 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
17730 BEGIN
17731     IF TG_OP = 'DELETE' THEN
17732         PERFORM reporter.simple_rec_delete(NEW.id);
17733     ELSE
17734         PERFORM reporter.simple_rec_update(NEW.id);
17735     END IF;
17736
17737     RETURN NEW;
17738 END;
17739 $func$ LANGUAGE PLPGSQL;
17740
17741 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
17742
17743 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
17744
17745 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
17746
17747 UPDATE config.org_unit_setting_type
17748     SET view_perm = (SELECT id FROM permission.perm_list
17749         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
17750     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
17751
17752 UPDATE config.org_unit_setting_type
17753     SET update_perm = (SELECT id FROM permission.perm_list
17754         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
17755     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
17756
17757 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
17758     VALUES (
17759         'opac.fully_compressed_serial_holdings',
17760         'OPAC: Use fully compressed serial holdings',
17761         'Show fully compressed serial holdings for all libraries at and below
17762         the current context unit',
17763         'bool'
17764     );
17765
17766 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
17767     use strict;
17768     use warnings;
17769
17770     use utf8;
17771     use MARC::Record;
17772     use MARC::File::XML (BinaryEncoding => 'UTF8');
17773     use UUID::Tiny ':std';
17774
17775     my $xml = shift() or return undef;
17776
17777     my $r;
17778
17779     # Prevent errors in XML parsing from blowing out ungracefully
17780     eval {
17781         $r = MARC::Record->new_from_xml( $xml );
17782         1;
17783     } or do {
17784        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
17785     };
17786
17787     if (!$r) {
17788        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
17789     }
17790
17791     # From http://www.loc.gov/standards/sourcelist/subject.html
17792     my $thes_code_map = {
17793         a => 'lcsh',
17794         b => 'lcshac',
17795         c => 'mesh',
17796         d => 'nal',
17797         k => 'cash',
17798         n => 'notapplicable',
17799         r => 'aat',
17800         s => 'sears',
17801         v => 'rvm',
17802     };
17803
17804     # Default to "No attempt to code" if the leader is horribly broken
17805     my $fixed_field = $r->field('008');
17806     my $thes_char = '|';
17807     if ($fixed_field) {
17808         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
17809     }
17810
17811     my $thes_code = 'UNDEFINED';
17812
17813     if ($thes_char eq 'z') {
17814         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
17815         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
17816     } elsif ($thes_code_map->{$thes_char}) {
17817         $thes_code = $thes_code_map->{$thes_char};
17818     }
17819
17820     my $auth_txt = '';
17821     my $head = $r->field('1..');
17822     if ($head) {
17823         # Concatenate all of these subfields together, prefixed by their code
17824         # to prevent collisions along the lines of "Fiction, North Carolina"
17825         foreach my $sf ($head->subfields()) {
17826             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
17827         }
17828     }
17829
17830     # Perhaps better to parameterize the spi and pass as a parameter
17831     $auth_txt =~ s/'//go;
17832
17833     if ($auth_txt) {
17834         my $result = spi_exec_query("SELECT public.naco_normalize('$auth_txt') AS norm_text");
17835         my $norm_txt = $result->{rows}[0]->{norm_text};
17836         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
17837     }
17838
17839     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
17840 $func$ LANGUAGE 'plperlu' IMMUTABLE;
17841
17842 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
17843 /**
17844 * Extract the authority heading, thesaurus, and NACO-normalized values
17845 * from an authority record. The primary purpose is to build a unique
17846 * index to defend against duplicated authority records from the same
17847 * thesaurus.
17848 */
17849 $$;
17850
17851 DROP INDEX authority.authority_record_unique_tcn;
17852 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
17853 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
17854
17855 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
17856
17857 CREATE INDEX by_heading_and_thesaurus
17858     ON authority.record_entry (authority.normalize_heading(marc))
17859     WHERE deleted IS FALSE or deleted = FALSE
17860 ;
17861
17862 ALTER TABLE acq.provider_contact
17863         ALTER COLUMN name SET NOT NULL;
17864
17865 COMMIT;
17866
17867 -- Some operations go outside of the transaction, because they may
17868 -- legitimately fail.
17869
17870 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
17871 \qecho doesn't exist; ignore those errors if they occur.
17872
17873 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
17874
17875 ALTER TABLE auditor.action_hold_request_history
17876 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
17877
17878 ALTER TABLE auditor.action_hold_request_history
17879 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
17880
17881 \qecho Outside of the transaction: adding indexes that may or may not exist.
17882 \qecho If any of these CREATE INDEX statements fails because the index already
17883 \qecho exists, ignore the failure.
17884
17885 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
17886 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
17887 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
17888 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
17889 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
17890 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
17891 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
17892 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
17893 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
17894 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
17895 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
17896 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
17897 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
17898 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
17899 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
17900 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
17901 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
17902 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
17903 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
17904 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
17905 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
17906 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
17907 CREATE INDEX serial_item_status_idx ON serial.item (status);
17908 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
17909 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
17910 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
17911 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
17912
17913 \qecho if the following CREATE INDEX fails, It will be necessary to do some
17914 \qecho data cleanup as described in the comments.
17915
17916 -- Do this outside of a transaction to avoid failure if duplicate
17917 -- authority heading / thesaurus / heading text entries already
17918 -- exist in the database:
17919 CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
17920     ON authority.record_entry (authority.normalize_heading(marc))
17921     WHERE deleted IS FALSE or deleted = FALSE
17922 ;
17923
17924 -- If the unique index fails, uncomment the following to create
17925 -- a regular index that will help find the duplicates in a hurry:
17926 --CREATE INDEX by_heading_and_thesaurus
17927 --    ON authority.record_entry (authority.normalize_heading(marc))
17928 --    WHERE deleted IS FALSE or deleted = FALSE
17929 --;
17930
17931 -- Then find the duplicates like so to get an idea of how much
17932 -- pain you're looking at to clean things up:
17933 --SELECT id, authority.normalize_heading(marc)
17934 --    FROM authority.record_entry
17935 --    WHERE authority.normalize_heading(marc) IN (
17936 --        SELECT authority.normalize_heading(marc)
17937 --        FROM authority.record_entry
17938 --        GROUP BY authority.normalize_heading(marc)
17939 --        HAVING COUNT(*) > 1
17940 --    )
17941 --;
17942
17943 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
17944 -- statement succeeds, drop the temporary index to avoid unnecessary
17945 -- duplication:
17946 -- DROP INDEX authority.by_heading_and_thesaurus;
17947
17948 \qecho Upgrade script completed.