]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/1.6.1-2.0-upgrade-db.sql
Replace some changes that had inadvertently been deleted
[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 opportunistically 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 the 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 interface',
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 hold 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 the absence 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 because 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 because 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 configured penalty to a patron.  Required named environment variables are "user", which refers to the user object, and "context_org", which refers to the org_unit object that acts as the focus for the penalty.');
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 receive 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>Subtotal</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 INSERT INTO action_trigger.validator (module, description) VALUES ( 
4623     'HoldIsCancelled', 
4624     oils_i18n_gettext( 
4625         'HoldIsCancelled', 
4626         'Check whether a hold request is cancelled.', 
4627         'atval', 
4628         'description' 
4629     ) 
4630 );
4631
4632 -- Create the query schema, and the tables and views therein
4633
4634 DROP SCHEMA IF EXISTS sql CASCADE;
4635 DROP SCHEMA IF EXISTS query CASCADE;
4636
4637 CREATE SCHEMA query;
4638
4639 CREATE TABLE query.datatype (
4640         id              SERIAL            PRIMARY KEY,
4641         datatype_name   TEXT              NOT NULL UNIQUE,
4642         is_numeric      BOOL              NOT NULL DEFAULT FALSE,
4643         is_composite    BOOL              NOT NULL DEFAULT FALSE,
4644         CONSTRAINT qdt_comp_not_num CHECK
4645         ( is_numeric IS FALSE OR is_composite IS FALSE )
4646 );
4647
4648 -- Define the most common datatypes in query.datatype.  Note that none of
4649 -- these stock datatypes specifies a width or precision.
4650
4651 -- Also: set the sequence for query.datatype to 1000, leaving plenty of
4652 -- room for more stock datatypes if we ever want to add them.
4653
4654 SELECT setval( 'query.datatype_id_seq', 1000 );
4655
4656 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4657   VALUES (1, 'SMALLINT', true);
4658  
4659 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4660   VALUES (2, 'INTEGER', true);
4661  
4662 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4663   VALUES (3, 'BIGINT', true);
4664  
4665 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4666   VALUES (4, 'DECIMAL', true);
4667  
4668 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4669   VALUES (5, 'NUMERIC', true);
4670  
4671 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4672   VALUES (6, 'REAL', true);
4673  
4674 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4675   VALUES (7, 'DOUBLE PRECISION', true);
4676  
4677 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4678   VALUES (8, 'SERIAL', true);
4679  
4680 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4681   VALUES (9, 'BIGSERIAL', true);
4682  
4683 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4684   VALUES (10, 'MONEY', false);
4685  
4686 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4687   VALUES (11, 'VARCHAR', false);
4688  
4689 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4690   VALUES (12, 'CHAR', false);
4691  
4692 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4693   VALUES (13, 'TEXT', false);
4694  
4695 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4696   VALUES (14, '"char"', false);
4697  
4698 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4699   VALUES (15, 'NAME', false);
4700  
4701 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4702   VALUES (16, 'BYTEA', false);
4703  
4704 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4705   VALUES (17, 'TIMESTAMP WITHOUT TIME ZONE', false);
4706  
4707 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4708   VALUES (18, 'TIMESTAMP WITH TIME ZONE', false);
4709  
4710 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4711   VALUES (19, 'DATE', false);
4712  
4713 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4714   VALUES (20, 'TIME WITHOUT TIME ZONE', false);
4715  
4716 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4717   VALUES (21, 'TIME WITH TIME ZONE', false);
4718  
4719 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4720   VALUES (22, 'INTERVAL', false);
4721  
4722 INSERT INTO query.datatype (id, datatype_name, is_numeric )
4723   VALUES (23, 'BOOLEAN', false);
4724  
4725 CREATE TABLE query.subfield (
4726         id              SERIAL            PRIMARY KEY,
4727         composite_type  INT               NOT NULL
4728                                           REFERENCES query.datatype(id)
4729                                           ON DELETE CASCADE
4730                                           DEFERRABLE INITIALLY DEFERRED,
4731         seq_no          INT               NOT NULL
4732                                           CONSTRAINT qsf_pos_seq_no
4733                                           CHECK( seq_no > 0 ),
4734         subfield_type   INT               NOT NULL
4735                                           REFERENCES query.datatype(id)
4736                                           DEFERRABLE INITIALLY DEFERRED,
4737         CONSTRAINT qsf_datatype_seq_no UNIQUE (composite_type, seq_no)
4738 );
4739
4740 CREATE TABLE query.function_sig (
4741         id              SERIAL            PRIMARY KEY,
4742         function_name   TEXT              NOT NULL,
4743         return_type     INT               REFERENCES query.datatype(id)
4744                                           DEFERRABLE INITIALLY DEFERRED,
4745         is_aggregate    BOOL              NOT NULL DEFAULT FALSE,
4746         CONSTRAINT qfd_rtn_or_aggr CHECK
4747         ( return_type IS NULL OR is_aggregate = FALSE )
4748 );
4749
4750 CREATE INDEX query_function_sig_name_idx 
4751         ON query.function_sig (function_name);
4752
4753 CREATE TABLE query.function_param_def (
4754         id              SERIAL            PRIMARY KEY,
4755         function_id     INT               NOT NULL
4756                                           REFERENCES query.function_sig( id )
4757                                           ON DELETE CASCADE
4758                                           DEFERRABLE INITIALLY DEFERRED,
4759         seq_no          INT               NOT NULL
4760                                           CONSTRAINT qfpd_pos_seq_no CHECK
4761                                           ( seq_no > 0 ),
4762         datatype        INT               NOT NULL
4763                                           REFERENCES query.datatype( id )
4764                                           DEFERRABLE INITIALLY DEFERRED,
4765         CONSTRAINT qfpd_function_param_seq UNIQUE (function_id, seq_no)
4766 );
4767
4768 CREATE TABLE  query.stored_query (
4769         id            SERIAL         PRIMARY KEY,
4770         type          TEXT           NOT NULL CONSTRAINT query_type CHECK
4771                                      ( type IN ( 'SELECT', 'UNION', 'INTERSECT', 'EXCEPT' ) ),
4772         use_all       BOOLEAN        NOT NULL DEFAULT FALSE,
4773         use_distinct  BOOLEAN        NOT NULL DEFAULT FALSE,
4774         from_clause   INT            , --REFERENCES query.from_clause
4775                                      --DEFERRABLE INITIALLY DEFERRED,
4776         where_clause  INT            , --REFERENCES query.expression
4777                                      --DEFERRABLE INITIALLY DEFERRED,
4778         having_clause INT            , --REFERENCES query.expression
4779                                      --DEFERRABLE INITIALLY DEFERRED
4780         limit_count   INT            , --REFERENCES query.expression( id )
4781                                      --DEFERRABLE INITIALLY DEFERRED,
4782         offset_count  INT            --REFERENCES query.expression( id )
4783                                      --DEFERRABLE INITIALLY DEFERRED
4784 );
4785
4786 -- (Foreign keys to be defined later after other tables are created)
4787
4788 CREATE TABLE query.query_sequence (
4789         id              SERIAL            PRIMARY KEY,
4790         parent_query    INT               NOT NULL
4791                                           REFERENCES query.stored_query
4792                                                                           ON DELETE CASCADE
4793                                                                           DEFERRABLE INITIALLY DEFERRED,
4794         seq_no          INT               NOT NULL,
4795         child_query     INT               NOT NULL
4796                                           REFERENCES query.stored_query
4797                                                                           ON DELETE CASCADE
4798                                                                           DEFERRABLE INITIALLY DEFERRED,
4799         CONSTRAINT query_query_seq UNIQUE( parent_query, seq_no )
4800 );
4801
4802 CREATE TABLE query.bind_variable (
4803         name          TEXT             PRIMARY KEY,
4804         type          TEXT             NOT NULL
4805                                            CONSTRAINT bind_variable_type CHECK
4806                                            ( type in ( 'string', 'number', 'string_list', 'number_list' )),
4807         description   TEXT             NOT NULL,
4808         default_value TEXT,            -- to be encoded in JSON
4809         label         TEXT             NOT NULL
4810 );
4811
4812 CREATE TABLE query.expression (
4813         id            SERIAL        PRIMARY KEY,
4814         type          TEXT          NOT NULL CONSTRAINT expression_type CHECK
4815                                     ( type IN (
4816                                     'xbet',    -- between
4817                                     'xbind',   -- bind variable
4818                                     'xbool',   -- boolean
4819                                     'xcase',   -- case
4820                                     'xcast',   -- cast
4821                                     'xcol',    -- column
4822                                     'xex',     -- exists
4823                                     'xfunc',   -- function
4824                                     'xin',     -- in
4825                                     'xisnull', -- is null
4826                                     'xnull',   -- null
4827                                     'xnum',    -- number
4828                                     'xop',     -- operator
4829                                     'xser',    -- series
4830                                     'xstr',    -- string
4831                                     'xsubq'    -- subquery
4832                                                                 ) ),
4833         parenthesize  BOOL          NOT NULL DEFAULT FALSE,
4834         parent_expr   INT           REFERENCES query.expression
4835                                     ON DELETE CASCADE
4836                                     DEFERRABLE INITIALLY DEFERRED,
4837         seq_no        INT           NOT NULL DEFAULT 1,
4838         literal       TEXT,
4839         table_alias   TEXT,
4840         column_name   TEXT,
4841         left_operand  INT           REFERENCES query.expression
4842                                     DEFERRABLE INITIALLY DEFERRED,
4843         operator      TEXT,
4844         right_operand INT           REFERENCES query.expression
4845                                     DEFERRABLE INITIALLY DEFERRED,
4846         function_id   INT           REFERENCES query.function_sig
4847                                     DEFERRABLE INITIALLY DEFERRED,
4848         subquery      INT           REFERENCES query.stored_query
4849                                     DEFERRABLE INITIALLY DEFERRED,
4850         cast_type     INT           REFERENCES query.datatype
4851                                     DEFERRABLE INITIALLY DEFERRED,
4852         negate        BOOL          NOT NULL DEFAULT FALSE,
4853         bind_variable TEXT          REFERENCES query.bind_variable
4854                                         DEFERRABLE INITIALLY DEFERRED
4855 );
4856
4857 CREATE UNIQUE INDEX query_expr_parent_seq
4858         ON query.expression( parent_expr, seq_no )
4859         WHERE parent_expr IS NOT NULL;
4860
4861 -- Due to some circular references, the following foreign key definitions
4862 -- had to be deferred until query.expression existed:
4863
4864 ALTER TABLE query.stored_query
4865         ADD FOREIGN KEY ( where_clause )
4866         REFERENCES query.expression( id )
4867         DEFERRABLE INITIALLY DEFERRED;
4868
4869 ALTER TABLE query.stored_query
4870         ADD FOREIGN KEY ( having_clause )
4871         REFERENCES query.expression( id )
4872         DEFERRABLE INITIALLY DEFERRED;
4873
4874 ALTER TABLE query.stored_query
4875     ADD FOREIGN KEY ( limit_count )
4876     REFERENCES query.expression( id )
4877     DEFERRABLE INITIALLY DEFERRED;
4878
4879 ALTER TABLE query.stored_query
4880     ADD FOREIGN KEY ( offset_count )
4881     REFERENCES query.expression( id )
4882     DEFERRABLE INITIALLY DEFERRED;
4883
4884 CREATE TABLE query.case_branch (
4885         id            SERIAL        PRIMARY KEY,
4886         parent_expr   INT           NOT NULL REFERENCES query.expression
4887                                     ON DELETE CASCADE
4888                                     DEFERRABLE INITIALLY DEFERRED,
4889         seq_no        INT           NOT NULL,
4890         condition     INT           REFERENCES query.expression
4891                                     DEFERRABLE INITIALLY DEFERRED,
4892         result        INT           NOT NULL REFERENCES query.expression
4893                                     DEFERRABLE INITIALLY DEFERRED,
4894         CONSTRAINT case_branch_parent_seq UNIQUE (parent_expr, seq_no)
4895 );
4896
4897 CREATE TABLE query.from_relation (
4898         id               SERIAL        PRIMARY KEY,
4899         type             TEXT          NOT NULL CONSTRAINT relation_type CHECK (
4900                                            type IN ( 'RELATION', 'SUBQUERY', 'FUNCTION' ) ),
4901         table_name       TEXT,
4902         class_name       TEXT,
4903         subquery         INT           REFERENCES query.stored_query,
4904         function_call    INT           REFERENCES query.expression,
4905         table_alias      TEXT,
4906         parent_relation  INT           REFERENCES query.from_relation
4907                                        ON DELETE CASCADE
4908                                        DEFERRABLE INITIALLY DEFERRED,
4909         seq_no           INT           NOT NULL DEFAULT 1,
4910         join_type        TEXT          CONSTRAINT good_join_type CHECK (
4911                                            join_type IS NULL OR join_type IN
4912                                            ( 'INNER', 'LEFT', 'RIGHT', 'FULL' )
4913                                        ),
4914         on_clause        INT           REFERENCES query.expression
4915                                        DEFERRABLE INITIALLY DEFERRED,
4916         CONSTRAINT join_or_core CHECK (
4917         ( parent_relation IS NULL AND join_type IS NULL
4918           AND on_clause IS NULL )
4919         OR
4920         ( parent_relation IS NOT NULL AND join_type IS NOT NULL
4921           AND on_clause IS NOT NULL )
4922         )
4923 );
4924
4925 CREATE UNIQUE INDEX from_parent_seq
4926         ON query.from_relation( parent_relation, seq_no )
4927         WHERE parent_relation IS NOT NULL;
4928
4929 -- The following foreign key had to be deferred until
4930 -- query.from_relation existed
4931
4932 ALTER TABLE query.stored_query
4933         ADD FOREIGN KEY (from_clause)
4934         REFERENCES query.from_relation
4935         DEFERRABLE INITIALLY DEFERRED;
4936
4937 CREATE TABLE query.record_column (
4938         id            SERIAL            PRIMARY KEY,
4939         from_relation INT               NOT NULL REFERENCES query.from_relation
4940                                         ON DELETE CASCADE
4941                                         DEFERRABLE INITIALLY DEFERRED,
4942         seq_no        INT               NOT NULL,
4943         column_name   TEXT              NOT NULL,
4944         column_type   INT               NOT NULL REFERENCES query.datatype
4945                                         ON DELETE CASCADE
4946                                                                         DEFERRABLE INITIALLY DEFERRED,
4947         CONSTRAINT column_sequence UNIQUE (from_relation, seq_no)
4948 );
4949
4950 CREATE TABLE query.select_item (
4951         id               SERIAL         PRIMARY KEY,
4952         stored_query     INT            NOT NULL REFERENCES query.stored_query
4953                                         ON DELETE CASCADE
4954                                         DEFERRABLE INITIALLY DEFERRED,
4955         seq_no           INT            NOT NULL,
4956         expression       INT            NOT NULL REFERENCES query.expression
4957                                         DEFERRABLE INITIALLY DEFERRED,
4958         column_alias     TEXT,
4959         grouped_by       BOOL           NOT NULL DEFAULT FALSE,
4960         CONSTRAINT select_sequence UNIQUE( stored_query, seq_no )
4961 );
4962
4963 CREATE TABLE query.order_by_item (
4964         id               SERIAL         PRIMARY KEY,
4965         stored_query     INT            NOT NULL REFERENCES query.stored_query
4966                                         ON DELETE CASCADE
4967                                         DEFERRABLE INITIALLY DEFERRED,
4968         seq_no           INT            NOT NULL,
4969         expression       INT            NOT NULL REFERENCES query.expression
4970                                         ON DELETE CASCADE
4971                                         DEFERRABLE INITIALLY DEFERRED,
4972         CONSTRAINT order_by_sequence UNIQUE( stored_query, seq_no )
4973 );
4974
4975 ------------------------------------------------------------
4976 -- Create updatable views for different kinds of expressions
4977 ------------------------------------------------------------
4978
4979 -- Create updatable view for BETWEEN expressions
4980
4981 CREATE OR REPLACE VIEW query.expr_xbet AS
4982     SELECT
4983                 id,
4984                 parenthesize,
4985                 parent_expr,
4986                 seq_no,
4987                 left_operand,
4988                 negate
4989     FROM
4990         query.expression
4991     WHERE
4992         type = 'xbet';
4993
4994 CREATE OR REPLACE RULE query_expr_xbet_insert_rule AS
4995     ON INSERT TO query.expr_xbet
4996     DO INSTEAD
4997     INSERT INTO query.expression (
4998                 id,
4999                 type,
5000                 parenthesize,
5001                 parent_expr,
5002                 seq_no,
5003                 left_operand,
5004                 negate
5005     ) VALUES (
5006         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5007         'xbet',
5008         COALESCE(NEW.parenthesize, FALSE),
5009         NEW.parent_expr,
5010         COALESCE(NEW.seq_no, 1),
5011                 NEW.left_operand,
5012                 COALESCE(NEW.negate, false)
5013     );
5014
5015 CREATE OR REPLACE RULE query_expr_xbet_update_rule AS
5016     ON UPDATE TO query.expr_xbet
5017     DO INSTEAD
5018     UPDATE query.expression SET
5019         id = NEW.id,
5020         parenthesize = NEW.parenthesize,
5021         parent_expr = NEW.parent_expr,
5022         seq_no = NEW.seq_no,
5023                 left_operand = NEW.left_operand,
5024                 negate = NEW.negate
5025     WHERE
5026         id = OLD.id;
5027
5028 CREATE OR REPLACE RULE query_expr_xbet_delete_rule AS
5029     ON DELETE TO query.expr_xbet
5030     DO INSTEAD
5031     DELETE FROM query.expression WHERE id = OLD.id;
5032
5033 -- Create updatable view for bind variable expressions
5034
5035 CREATE OR REPLACE VIEW query.expr_xbind AS
5036     SELECT
5037                 id,
5038                 parenthesize,
5039                 parent_expr,
5040                 seq_no,
5041                 bind_variable
5042     FROM
5043         query.expression
5044     WHERE
5045         type = 'xbind';
5046
5047 CREATE OR REPLACE RULE query_expr_xbind_insert_rule AS
5048     ON INSERT TO query.expr_xbind
5049     DO INSTEAD
5050     INSERT INTO query.expression (
5051                 id,
5052                 type,
5053                 parenthesize,
5054                 parent_expr,
5055                 seq_no,
5056                 bind_variable
5057     ) VALUES (
5058         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5059         'xbind',
5060         COALESCE(NEW.parenthesize, FALSE),
5061         NEW.parent_expr,
5062         COALESCE(NEW.seq_no, 1),
5063                 NEW.bind_variable
5064     );
5065
5066 CREATE OR REPLACE RULE query_expr_xbind_update_rule AS
5067     ON UPDATE TO query.expr_xbind
5068     DO INSTEAD
5069     UPDATE query.expression SET
5070         id = NEW.id,
5071         parenthesize = NEW.parenthesize,
5072         parent_expr = NEW.parent_expr,
5073         seq_no = NEW.seq_no,
5074                 bind_variable = NEW.bind_variable
5075     WHERE
5076         id = OLD.id;
5077
5078 CREATE OR REPLACE RULE query_expr_xbind_delete_rule AS
5079     ON DELETE TO query.expr_xbind
5080     DO INSTEAD
5081     DELETE FROM query.expression WHERE id = OLD.id;
5082
5083 -- Create updatable view for boolean expressions
5084
5085 CREATE OR REPLACE VIEW query.expr_xbool AS
5086     SELECT
5087                 id,
5088                 parenthesize,
5089                 parent_expr,
5090                 seq_no,
5091                 literal,
5092                 negate
5093     FROM
5094         query.expression
5095     WHERE
5096         type = 'xbool';
5097
5098 CREATE OR REPLACE RULE query_expr_xbool_insert_rule AS
5099     ON INSERT TO query.expr_xbool
5100     DO INSTEAD
5101     INSERT INTO query.expression (
5102                 id,
5103                 type,
5104                 parenthesize,
5105                 parent_expr,
5106                 seq_no,
5107                 literal,
5108                 negate
5109     ) VALUES (
5110         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5111         'xbool',
5112         COALESCE(NEW.parenthesize, FALSE),
5113         NEW.parent_expr,
5114         COALESCE(NEW.seq_no, 1),
5115         NEW.literal,
5116                 COALESCE(NEW.negate, false)
5117     );
5118
5119 CREATE OR REPLACE RULE query_expr_xbool_update_rule AS
5120     ON UPDATE TO query.expr_xbool
5121     DO INSTEAD
5122     UPDATE query.expression SET
5123         id = NEW.id,
5124         parenthesize = NEW.parenthesize,
5125         parent_expr = NEW.parent_expr,
5126         seq_no = NEW.seq_no,
5127         literal = NEW.literal,
5128                 negate = NEW.negate
5129     WHERE
5130         id = OLD.id;
5131
5132 CREATE OR REPLACE RULE query_expr_xbool_delete_rule AS
5133     ON DELETE TO query.expr_xbool
5134     DO INSTEAD
5135     DELETE FROM query.expression WHERE id = OLD.id;
5136
5137 -- Create updatable view for CASE expressions
5138
5139 CREATE OR REPLACE VIEW query.expr_xcase AS
5140     SELECT
5141                 id,
5142                 parenthesize,
5143                 parent_expr,
5144                 seq_no,
5145                 left_operand,
5146                 negate
5147     FROM
5148         query.expression
5149     WHERE
5150         type = 'xcase';
5151
5152 CREATE OR REPLACE RULE query_expr_xcase_insert_rule AS
5153     ON INSERT TO query.expr_xcase
5154     DO INSTEAD
5155     INSERT INTO query.expression (
5156                 id,
5157                 type,
5158                 parenthesize,
5159                 parent_expr,
5160                 seq_no,
5161                 left_operand,
5162                 negate
5163     ) VALUES (
5164         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5165         'xcase',
5166         COALESCE(NEW.parenthesize, FALSE),
5167         NEW.parent_expr,
5168         COALESCE(NEW.seq_no, 1),
5169                 NEW.left_operand,
5170                 COALESCE(NEW.negate, false)
5171     );
5172
5173 CREATE OR REPLACE RULE query_expr_xcase_update_rule AS
5174     ON UPDATE TO query.expr_xcase
5175     DO INSTEAD
5176     UPDATE query.expression SET
5177         id = NEW.id,
5178         parenthesize = NEW.parenthesize,
5179         parent_expr = NEW.parent_expr,
5180         seq_no = NEW.seq_no,
5181                 left_operand = NEW.left_operand,
5182                 negate = NEW.negate
5183     WHERE
5184         id = OLD.id;
5185
5186 CREATE OR REPLACE RULE query_expr_xcase_delete_rule AS
5187     ON DELETE TO query.expr_xcase
5188     DO INSTEAD
5189     DELETE FROM query.expression WHERE id = OLD.id;
5190
5191 -- Create updatable view for cast expressions
5192
5193 CREATE OR REPLACE VIEW query.expr_xcast AS
5194     SELECT
5195                 id,
5196                 parenthesize,
5197                 parent_expr,
5198                 seq_no,
5199                 left_operand,
5200                 cast_type,
5201                 negate
5202     FROM
5203         query.expression
5204     WHERE
5205         type = 'xcast';
5206
5207 CREATE OR REPLACE RULE query_expr_xcast_insert_rule AS
5208     ON INSERT TO query.expr_xcast
5209     DO INSTEAD
5210     INSERT INTO query.expression (
5211         id,
5212         type,
5213         parenthesize,
5214         parent_expr,
5215         seq_no,
5216         left_operand,
5217         cast_type,
5218         negate
5219     ) VALUES (
5220         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5221         'xcast',
5222         COALESCE(NEW.parenthesize, FALSE),
5223         NEW.parent_expr,
5224         COALESCE(NEW.seq_no, 1),
5225         NEW.left_operand,
5226         NEW.cast_type,
5227         COALESCE(NEW.negate, false)
5228     );
5229
5230 CREATE OR REPLACE RULE query_expr_xcast_update_rule AS
5231     ON UPDATE TO query.expr_xcast
5232     DO INSTEAD
5233     UPDATE query.expression SET
5234         id = NEW.id,
5235         parenthesize = NEW.parenthesize,
5236         parent_expr = NEW.parent_expr,
5237         seq_no = NEW.seq_no,
5238                 left_operand = NEW.left_operand,
5239                 cast_type = NEW.cast_type,
5240                 negate = NEW.negate
5241     WHERE
5242         id = OLD.id;
5243
5244 CREATE OR REPLACE RULE query_expr_xcast_delete_rule AS
5245     ON DELETE TO query.expr_xcast
5246     DO INSTEAD
5247     DELETE FROM query.expression WHERE id = OLD.id;
5248
5249 -- Create updatable view for column expressions
5250
5251 CREATE OR REPLACE VIEW query.expr_xcol AS
5252     SELECT
5253                 id,
5254                 parenthesize,
5255                 parent_expr,
5256                 seq_no,
5257                 table_alias,
5258                 column_name,
5259                 negate
5260     FROM
5261         query.expression
5262     WHERE
5263         type = 'xcol';
5264
5265 CREATE OR REPLACE RULE query_expr_xcol_insert_rule AS
5266     ON INSERT TO query.expr_xcol
5267     DO INSTEAD
5268     INSERT INTO query.expression (
5269                 id,
5270                 type,
5271                 parenthesize,
5272                 parent_expr,
5273                 seq_no,
5274                 table_alias,
5275                 column_name,
5276                 negate
5277     ) VALUES (
5278         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5279         'xcol',
5280         COALESCE(NEW.parenthesize, FALSE),
5281         NEW.parent_expr,
5282         COALESCE(NEW.seq_no, 1),
5283                 NEW.table_alias,
5284                 NEW.column_name,
5285                 COALESCE(NEW.negate, false)
5286     );
5287
5288 CREATE OR REPLACE RULE query_expr_xcol_update_rule AS
5289     ON UPDATE TO query.expr_xcol
5290     DO INSTEAD
5291     UPDATE query.expression SET
5292         id = NEW.id,
5293         parenthesize = NEW.parenthesize,
5294         parent_expr = NEW.parent_expr,
5295         seq_no = NEW.seq_no,
5296                 table_alias = NEW.table_alias,
5297                 column_name = NEW.column_name,
5298                 negate = NEW.negate
5299     WHERE
5300         id = OLD.id;
5301
5302 CREATE OR REPLACE RULE query_expr_xcol_delete_rule AS
5303     ON DELETE TO query.expr_xcol
5304     DO INSTEAD
5305     DELETE FROM query.expression WHERE id = OLD.id;
5306
5307 -- Create updatable view for EXISTS expressions
5308
5309 CREATE OR REPLACE VIEW query.expr_xex AS
5310     SELECT
5311                 id,
5312                 parenthesize,
5313                 parent_expr,
5314                 seq_no,
5315                 subquery,
5316                 negate
5317     FROM
5318         query.expression
5319     WHERE
5320         type = 'xex';
5321
5322 CREATE OR REPLACE RULE query_expr_xex_insert_rule AS
5323     ON INSERT TO query.expr_xex
5324     DO INSTEAD
5325     INSERT INTO query.expression (
5326                 id,
5327                 type,
5328                 parenthesize,
5329                 parent_expr,
5330                 seq_no,
5331                 subquery,
5332                 negate
5333     ) VALUES (
5334         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5335         'xex',
5336         COALESCE(NEW.parenthesize, FALSE),
5337         NEW.parent_expr,
5338         COALESCE(NEW.seq_no, 1),
5339                 NEW.subquery,
5340                 COALESCE(NEW.negate, false)
5341     );
5342
5343 CREATE OR REPLACE RULE query_expr_xex_update_rule AS
5344     ON UPDATE TO query.expr_xex
5345     DO INSTEAD
5346     UPDATE query.expression SET
5347         id = NEW.id,
5348         parenthesize = NEW.parenthesize,
5349         parent_expr = NEW.parent_expr,
5350         seq_no = NEW.seq_no,
5351                 subquery = NEW.subquery,
5352                 negate = NEW.negate
5353     WHERE
5354         id = OLD.id;
5355
5356 CREATE OR REPLACE RULE query_expr_xex_delete_rule AS
5357     ON DELETE TO query.expr_xex
5358     DO INSTEAD
5359     DELETE FROM query.expression WHERE id = OLD.id;
5360
5361 -- Create updatable view for function call expressions
5362
5363 CREATE OR REPLACE VIEW query.expr_xfunc AS
5364     SELECT
5365         id,
5366         parenthesize,
5367         parent_expr,
5368         seq_no,
5369         column_name,
5370         function_id,
5371         negate
5372     FROM
5373         query.expression
5374     WHERE
5375         type = 'xfunc';
5376
5377 CREATE OR REPLACE RULE query_expr_xfunc_insert_rule AS
5378     ON INSERT TO query.expr_xfunc
5379     DO INSTEAD
5380     INSERT INTO query.expression (
5381         id,
5382         type,
5383         parenthesize,
5384         parent_expr,
5385         seq_no,
5386         column_name,
5387         function_id,
5388         negate
5389     ) VALUES (
5390         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5391         'xfunc',
5392         COALESCE(NEW.parenthesize, FALSE),
5393         NEW.parent_expr,
5394         COALESCE(NEW.seq_no, 1),
5395         NEW.column_name,
5396         NEW.function_id,
5397         COALESCE(NEW.negate, false)
5398     );
5399
5400 CREATE OR REPLACE RULE query_expr_xfunc_update_rule AS
5401     ON UPDATE TO query.expr_xfunc
5402     DO INSTEAD
5403     UPDATE query.expression SET
5404         id = NEW.id,
5405         parenthesize = NEW.parenthesize,
5406         parent_expr = NEW.parent_expr,
5407         seq_no = NEW.seq_no,
5408         column_name = NEW.column_name,
5409         function_id = NEW.function_id,
5410         negate = NEW.negate
5411     WHERE
5412         id = OLD.id;
5413
5414 CREATE OR REPLACE RULE query_expr_xfunc_delete_rule AS
5415     ON DELETE TO query.expr_xfunc
5416     DO INSTEAD
5417     DELETE FROM query.expression WHERE id = OLD.id;
5418
5419 -- Create updatable view for IN expressions
5420
5421 CREATE OR REPLACE VIEW query.expr_xin AS
5422     SELECT
5423                 id,
5424                 parenthesize,
5425                 parent_expr,
5426                 seq_no,
5427                 left_operand,
5428                 subquery,
5429                 negate
5430     FROM
5431         query.expression
5432     WHERE
5433         type = 'xin';
5434
5435 CREATE OR REPLACE RULE query_expr_xin_insert_rule AS
5436     ON INSERT TO query.expr_xin
5437     DO INSTEAD
5438     INSERT INTO query.expression (
5439                 id,
5440                 type,
5441                 parenthesize,
5442                 parent_expr,
5443                 seq_no,
5444                 left_operand,
5445                 subquery,
5446                 negate
5447     ) VALUES (
5448         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5449         'xin',
5450         COALESCE(NEW.parenthesize, FALSE),
5451         NEW.parent_expr,
5452         COALESCE(NEW.seq_no, 1),
5453                 NEW.left_operand,
5454                 NEW.subquery,
5455                 COALESCE(NEW.negate, false)
5456     );
5457
5458 CREATE OR REPLACE RULE query_expr_xin_update_rule AS
5459     ON UPDATE TO query.expr_xin
5460     DO INSTEAD
5461     UPDATE query.expression SET
5462         id = NEW.id,
5463         parenthesize = NEW.parenthesize,
5464         parent_expr = NEW.parent_expr,
5465         seq_no = NEW.seq_no,
5466                 left_operand = NEW.left_operand,
5467                 subquery = NEW.subquery,
5468                 negate = NEW.negate
5469     WHERE
5470         id = OLD.id;
5471
5472 CREATE OR REPLACE RULE query_expr_xin_delete_rule AS
5473     ON DELETE TO query.expr_xin
5474     DO INSTEAD
5475     DELETE FROM query.expression WHERE id = OLD.id;
5476
5477 -- Create updatable view for IS NULL expressions
5478
5479 CREATE OR REPLACE VIEW query.expr_xisnull AS
5480     SELECT
5481                 id,
5482                 parenthesize,
5483                 parent_expr,
5484                 seq_no,
5485                 left_operand,
5486                 negate
5487     FROM
5488         query.expression
5489     WHERE
5490         type = 'xisnull';
5491
5492 CREATE OR REPLACE RULE query_expr_xisnull_insert_rule AS
5493     ON INSERT TO query.expr_xisnull
5494     DO INSTEAD
5495     INSERT INTO query.expression (
5496                 id,
5497                 type,
5498                 parenthesize,
5499                 parent_expr,
5500                 seq_no,
5501                 left_operand,
5502                 negate
5503     ) VALUES (
5504         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5505         'xisnull',
5506         COALESCE(NEW.parenthesize, FALSE),
5507         NEW.parent_expr,
5508         COALESCE(NEW.seq_no, 1),
5509                 NEW.left_operand,
5510                 COALESCE(NEW.negate, false)
5511     );
5512
5513 CREATE OR REPLACE RULE query_expr_xisnull_update_rule AS
5514     ON UPDATE TO query.expr_xisnull
5515     DO INSTEAD
5516     UPDATE query.expression SET
5517         id = NEW.id,
5518         parenthesize = NEW.parenthesize,
5519         parent_expr = NEW.parent_expr,
5520         seq_no = NEW.seq_no,
5521                 left_operand = NEW.left_operand,
5522                 negate = NEW.negate
5523     WHERE
5524         id = OLD.id;
5525
5526 CREATE OR REPLACE RULE query_expr_xisnull_delete_rule AS
5527     ON DELETE TO query.expr_xisnull
5528     DO INSTEAD
5529     DELETE FROM query.expression WHERE id = OLD.id;
5530
5531 -- Create updatable view for NULL expressions
5532
5533 CREATE OR REPLACE VIEW query.expr_xnull AS
5534     SELECT
5535                 id,
5536                 parenthesize,
5537                 parent_expr,
5538                 seq_no,
5539                 negate
5540     FROM
5541         query.expression
5542     WHERE
5543         type = 'xnull';
5544
5545 CREATE OR REPLACE RULE query_expr_xnull_insert_rule AS
5546     ON INSERT TO query.expr_xnull
5547     DO INSTEAD
5548     INSERT INTO query.expression (
5549                 id,
5550                 type,
5551                 parenthesize,
5552                 parent_expr,
5553                 seq_no,
5554                 negate
5555     ) VALUES (
5556         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5557         'xnull',
5558         COALESCE(NEW.parenthesize, FALSE),
5559         NEW.parent_expr,
5560         COALESCE(NEW.seq_no, 1),
5561                 COALESCE(NEW.negate, false)
5562     );
5563
5564 CREATE OR REPLACE RULE query_expr_xnull_update_rule AS
5565     ON UPDATE TO query.expr_xnull
5566     DO INSTEAD
5567     UPDATE query.expression SET
5568         id = NEW.id,
5569         parenthesize = NEW.parenthesize,
5570         parent_expr = NEW.parent_expr,
5571         seq_no = NEW.seq_no,
5572                 negate = NEW.negate
5573     WHERE
5574         id = OLD.id;
5575
5576 CREATE OR REPLACE RULE query_expr_xnull_delete_rule AS
5577     ON DELETE TO query.expr_xnull
5578     DO INSTEAD
5579     DELETE FROM query.expression WHERE id = OLD.id;
5580
5581 -- Create updatable view for numeric literal expressions
5582
5583 CREATE OR REPLACE VIEW query.expr_xnum AS
5584     SELECT
5585                 id,
5586                 parenthesize,
5587                 parent_expr,
5588                 seq_no,
5589                 literal
5590     FROM
5591         query.expression
5592     WHERE
5593         type = 'xnum';
5594
5595 CREATE OR REPLACE RULE query_expr_xnum_insert_rule AS
5596     ON INSERT TO query.expr_xnum
5597     DO INSTEAD
5598     INSERT INTO query.expression (
5599                 id,
5600                 type,
5601                 parenthesize,
5602                 parent_expr,
5603                 seq_no,
5604                 literal
5605     ) VALUES (
5606         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5607         'xnum',
5608         COALESCE(NEW.parenthesize, FALSE),
5609         NEW.parent_expr,
5610         COALESCE(NEW.seq_no, 1),
5611         NEW.literal
5612     );
5613
5614 CREATE OR REPLACE RULE query_expr_xnum_update_rule AS
5615     ON UPDATE TO query.expr_xnum
5616     DO INSTEAD
5617     UPDATE query.expression SET
5618         id = NEW.id,
5619         parenthesize = NEW.parenthesize,
5620         parent_expr = NEW.parent_expr,
5621         seq_no = NEW.seq_no,
5622         literal = NEW.literal
5623     WHERE
5624         id = OLD.id;
5625
5626 CREATE OR REPLACE RULE query_expr_xnum_delete_rule AS
5627     ON DELETE TO query.expr_xnum
5628     DO INSTEAD
5629     DELETE FROM query.expression WHERE id = OLD.id;
5630
5631 -- Create updatable view for operator expressions
5632
5633 CREATE OR REPLACE VIEW query.expr_xop AS
5634     SELECT
5635                 id,
5636                 parenthesize,
5637                 parent_expr,
5638                 seq_no,
5639                 left_operand,
5640                 operator,
5641                 right_operand,
5642                 negate
5643     FROM
5644         query.expression
5645     WHERE
5646         type = 'xop';
5647
5648 CREATE OR REPLACE RULE query_expr_xop_insert_rule AS
5649     ON INSERT TO query.expr_xop
5650     DO INSTEAD
5651     INSERT INTO query.expression (
5652                 id,
5653                 type,
5654                 parenthesize,
5655                 parent_expr,
5656                 seq_no,
5657                 left_operand,
5658                 operator,
5659                 right_operand,
5660                 negate
5661     ) VALUES (
5662         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5663         'xop',
5664         COALESCE(NEW.parenthesize, FALSE),
5665         NEW.parent_expr,
5666         COALESCE(NEW.seq_no, 1),
5667                 NEW.left_operand,
5668                 NEW.operator,
5669                 NEW.right_operand,
5670                 COALESCE(NEW.negate, false)
5671     );
5672
5673 CREATE OR REPLACE RULE query_expr_xop_update_rule AS
5674     ON UPDATE TO query.expr_xop
5675     DO INSTEAD
5676     UPDATE query.expression SET
5677         id = NEW.id,
5678         parenthesize = NEW.parenthesize,
5679         parent_expr = NEW.parent_expr,
5680         seq_no = NEW.seq_no,
5681                 left_operand = NEW.left_operand,
5682                 operator = NEW.operator,
5683                 right_operand = NEW.right_operand,
5684                 negate = NEW.negate
5685     WHERE
5686         id = OLD.id;
5687
5688 CREATE OR REPLACE RULE query_expr_xop_delete_rule AS
5689     ON DELETE TO query.expr_xop
5690     DO INSTEAD
5691     DELETE FROM query.expression WHERE id = OLD.id;
5692
5693 -- Create updatable view for series expressions
5694 -- i.e. series of expressions separated by operators
5695
5696 CREATE OR REPLACE VIEW query.expr_xser AS
5697     SELECT
5698                 id,
5699                 parenthesize,
5700                 parent_expr,
5701                 seq_no,
5702                 operator,
5703                 negate
5704     FROM
5705         query.expression
5706     WHERE
5707         type = 'xser';
5708
5709 CREATE OR REPLACE RULE query_expr_xser_insert_rule AS
5710     ON INSERT TO query.expr_xser
5711     DO INSTEAD
5712     INSERT INTO query.expression (
5713                 id,
5714                 type,
5715                 parenthesize,
5716                 parent_expr,
5717                 seq_no,
5718                 operator,
5719                 negate
5720     ) VALUES (
5721         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5722         'xser',
5723         COALESCE(NEW.parenthesize, FALSE),
5724         NEW.parent_expr,
5725         COALESCE(NEW.seq_no, 1),
5726                 NEW.operator,
5727                 COALESCE(NEW.negate, false)
5728     );
5729
5730 CREATE OR REPLACE RULE query_expr_xser_update_rule AS
5731     ON UPDATE TO query.expr_xser
5732     DO INSTEAD
5733     UPDATE query.expression SET
5734         id = NEW.id,
5735         parenthesize = NEW.parenthesize,
5736         parent_expr = NEW.parent_expr,
5737         seq_no = NEW.seq_no,
5738                 operator = NEW.operator,
5739                 negate = NEW.negate
5740     WHERE
5741         id = OLD.id;
5742
5743 CREATE OR REPLACE RULE query_expr_xser_delete_rule AS
5744     ON DELETE TO query.expr_xser
5745     DO INSTEAD
5746     DELETE FROM query.expression WHERE id = OLD.id;
5747
5748 -- Create updatable view for string literal expressions
5749
5750 CREATE OR REPLACE VIEW query.expr_xstr AS
5751     SELECT
5752         id,
5753         parenthesize,
5754         parent_expr,
5755         seq_no,
5756         literal
5757     FROM
5758         query.expression
5759     WHERE
5760         type = 'xstr';
5761
5762 CREATE OR REPLACE RULE query_expr_string_insert_rule AS
5763     ON INSERT TO query.expr_xstr
5764     DO INSTEAD
5765     INSERT INTO query.expression (
5766         id,
5767         type,
5768         parenthesize,
5769         parent_expr,
5770         seq_no,
5771         literal
5772     ) VALUES (
5773         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5774         'xstr',
5775         COALESCE(NEW.parenthesize, FALSE),
5776         NEW.parent_expr,
5777         COALESCE(NEW.seq_no, 1),
5778         NEW.literal
5779     );
5780
5781 CREATE OR REPLACE RULE query_expr_string_update_rule AS
5782     ON UPDATE TO query.expr_xstr
5783     DO INSTEAD
5784     UPDATE query.expression SET
5785         id = NEW.id,
5786         parenthesize = NEW.parenthesize,
5787         parent_expr = NEW.parent_expr,
5788         seq_no = NEW.seq_no,
5789         literal = NEW.literal
5790     WHERE
5791         id = OLD.id;
5792
5793 CREATE OR REPLACE RULE query_expr_string_delete_rule AS
5794     ON DELETE TO query.expr_xstr
5795     DO INSTEAD
5796     DELETE FROM query.expression WHERE id = OLD.id;
5797
5798 -- Create updatable view for subquery expressions
5799
5800 CREATE OR REPLACE VIEW query.expr_xsubq AS
5801     SELECT
5802                 id,
5803                 parenthesize,
5804                 parent_expr,
5805                 seq_no,
5806                 subquery,
5807                 negate
5808     FROM
5809         query.expression
5810     WHERE
5811         type = 'xsubq';
5812
5813 CREATE OR REPLACE RULE query_expr_xsubq_insert_rule AS
5814     ON INSERT TO query.expr_xsubq
5815     DO INSTEAD
5816     INSERT INTO query.expression (
5817                 id,
5818                 type,
5819                 parenthesize,
5820                 parent_expr,
5821                 seq_no,
5822                 subquery,
5823                 negate
5824     ) VALUES (
5825         COALESCE(NEW.id, NEXTVAL('query.expression_id_seq'::REGCLASS)),
5826         'xsubq',
5827         COALESCE(NEW.parenthesize, FALSE),
5828         NEW.parent_expr,
5829         COALESCE(NEW.seq_no, 1),
5830                 NEW.subquery,
5831                 COALESCE(NEW.negate, false)
5832     );
5833
5834 CREATE OR REPLACE RULE query_expr_xsubq_update_rule AS
5835     ON UPDATE TO query.expr_xsubq
5836     DO INSTEAD
5837     UPDATE query.expression SET
5838         id = NEW.id,
5839         parenthesize = NEW.parenthesize,
5840         parent_expr = NEW.parent_expr,
5841         seq_no = NEW.seq_no,
5842                 subquery = NEW.subquery,
5843                 negate = NEW.negate
5844     WHERE
5845         id = OLD.id;
5846
5847 CREATE OR REPLACE RULE query_expr_xsubq_delete_rule AS
5848     ON DELETE TO query.expr_xsubq
5849     DO INSTEAD
5850     DELETE FROM query.expression WHERE id = OLD.id;
5851
5852 CREATE TABLE action.fieldset (
5853     id              SERIAL          PRIMARY KEY,
5854     owner           INT             NOT NULL REFERENCES actor.usr (id)
5855                                     DEFERRABLE INITIALLY DEFERRED,
5856     owning_lib      INT             NOT NULL REFERENCES actor.org_unit (id)
5857                                     DEFERRABLE INITIALLY DEFERRED,
5858     status          TEXT            NOT NULL
5859                                     CONSTRAINT valid_status CHECK ( status in
5860                                     ( 'PENDING', 'APPLIED', 'ERROR' )),
5861     creation_time   TIMESTAMPTZ     NOT NULL DEFAULT NOW(),
5862     scheduled_time  TIMESTAMPTZ,
5863     applied_time    TIMESTAMPTZ,
5864     classname       TEXT            NOT NULL, -- an IDL class name
5865     name            TEXT            NOT NULL,
5866     stored_query    INT             REFERENCES query.stored_query (id)
5867                                     DEFERRABLE INITIALLY DEFERRED,
5868     pkey_value      TEXT,
5869     CONSTRAINT lib_name_unique UNIQUE (owning_lib, name),
5870     CONSTRAINT fieldset_one_or_the_other CHECK (
5871         (stored_query IS NOT NULL AND pkey_value IS NULL) OR
5872         (pkey_value IS NOT NULL AND stored_query IS NULL)
5873     )
5874     -- the CHECK constraint means we can update the fields for a single
5875     -- row without all the extra overhead involved in a query
5876 );
5877
5878 CREATE INDEX action_fieldset_sched_time_idx ON action.fieldset( scheduled_time );
5879 CREATE INDEX action_owner_idx               ON action.fieldset( owner );
5880
5881 CREATE TABLE action.fieldset_col_val (
5882     id              SERIAL  PRIMARY KEY,
5883     fieldset        INT     NOT NULL REFERENCES action.fieldset
5884                                          ON DELETE CASCADE
5885                                          DEFERRABLE INITIALLY DEFERRED,
5886     col             TEXT    NOT NULL,  -- "field" from the idl ... the column on the table
5887     val             TEXT,              -- value for the column ... NULL means, well, NULL
5888     CONSTRAINT fieldset_col_once_per_set UNIQUE (fieldset, col)
5889 );
5890
5891 CREATE OR REPLACE FUNCTION action.apply_fieldset(
5892         fieldset_id IN INT,        -- id from action.fieldset
5893         table_name  IN TEXT,       -- table to be updated
5894         pkey_name   IN TEXT,       -- name of primary key column in that table
5895         query       IN TEXT        -- query constructed by qstore (for query-based
5896                                    --    fieldsets only; otherwise null
5897 )
5898 RETURNS TEXT AS $$
5899 DECLARE
5900         statement TEXT;
5901         fs_status TEXT;
5902         fs_pkey_value TEXT;
5903         fs_query TEXT;
5904         sep CHAR;
5905         status_code TEXT;
5906         msg TEXT;
5907         update_count INT;
5908         cv RECORD;
5909 BEGIN
5910         -- Sanity checks
5911         IF fieldset_id IS NULL THEN
5912                 RETURN 'Fieldset ID parameter is NULL';
5913         END IF;
5914         IF table_name IS NULL THEN
5915                 RETURN 'Table name parameter is NULL';
5916         END IF;
5917         IF pkey_name IS NULL THEN
5918                 RETURN 'Primary key name parameter is NULL';
5919         END IF;
5920         --
5921         statement := 'UPDATE ' || table_name || ' SET';
5922         --
5923         SELECT
5924                 status,
5925                 quote_literal( pkey_value )
5926         INTO
5927                 fs_status,
5928                 fs_pkey_value
5929         FROM
5930                 action.fieldset
5931         WHERE
5932                 id = fieldset_id;
5933         --
5934         IF fs_status IS NULL THEN
5935                 RETURN 'No fieldset found for id = ' || fieldset_id;
5936         ELSIF fs_status = 'APPLIED' THEN
5937                 RETURN 'Fieldset ' || fieldset_id || ' has already been applied';
5938         END IF;
5939         --
5940         sep := '';
5941         FOR cv IN
5942                 SELECT  col,
5943                                 val
5944                 FROM    action.fieldset_col_val
5945                 WHERE   fieldset = fieldset_id
5946         LOOP
5947                 statement := statement || sep || ' ' || cv.col
5948                                          || ' = ' || coalesce( quote_literal( cv.val ), 'NULL' );
5949                 sep := ',';
5950         END LOOP;
5951         --
5952         IF sep = '' THEN
5953                 RETURN 'Fieldset ' || fieldset_id || ' has no column values defined';
5954         END IF;
5955         --
5956         -- Add the WHERE clause.  This differs according to whether it's a
5957         -- single-row fieldset or a query-based fieldset.
5958         --
5959         IF query IS NULL        AND fs_pkey_value IS NULL THEN
5960                 RETURN 'Incomplete fieldset: neither a primary key nor a query available';
5961         ELSIF query IS NOT NULL AND fs_pkey_value IS NULL THEN
5962             fs_query := rtrim( query, ';' );
5963             statement := statement || ' WHERE ' || pkey_name || ' IN ( '
5964                          || fs_query || ' );';
5965         ELSIF query IS NULL     AND fs_pkey_value IS NOT NULL THEN
5966                 statement := statement || ' WHERE ' || pkey_name || ' = '
5967                                      || fs_pkey_value || ';';
5968         ELSE  -- both are not null
5969                 RETURN 'Ambiguous fieldset: both a primary key and a query provided';
5970         END IF;
5971         --
5972         -- Execute the update
5973         --
5974         BEGIN
5975                 EXECUTE statement;
5976                 GET DIAGNOSTICS update_count = ROW_COUNT;
5977                 --
5978                 IF UPDATE_COUNT > 0 THEN
5979                         status_code := 'APPLIED';
5980                         msg := NULL;
5981                 ELSE
5982                         status_code := 'ERROR';
5983                         msg := 'No eligible rows found for fieldset ' || fieldset_id;
5984         END IF;
5985         EXCEPTION WHEN OTHERS THEN
5986                 status_code := 'ERROR';
5987                 msg := 'Unable to apply fieldset ' || fieldset_id
5988                            || ': ' || sqlerrm;
5989         END;
5990         --
5991         -- Update fieldset status
5992         --
5993         UPDATE action.fieldset
5994         SET status       = status_code,
5995             applied_time = now()
5996         WHERE id = fieldset_id;
5997         --
5998         RETURN msg;
5999 END;
6000 $$ LANGUAGE plpgsql;
6001
6002 COMMENT ON FUNCTION action.apply_fieldset( INT, TEXT, TEXT, TEXT ) IS $$
6003 /**
6004  * Applies a specified fieldset, using a supplied table name and primary
6005  * key name.  The query parameter should be non-null only for
6006  * query-based fieldsets.
6007  *
6008  * Returns NULL if successful, or an error message if not.
6009  */
6010 $$;
6011
6012 CREATE INDEX uhr_hold_idx ON action.unfulfilled_hold_list (hold);
6013
6014 CREATE OR REPLACE VIEW action.unfulfilled_hold_loops AS
6015     SELECT  u.hold,
6016             c.circ_lib,
6017             count(*)
6018       FROM  action.unfulfilled_hold_list u
6019             JOIN asset.copy c ON (c.id = u.current_copy)
6020       GROUP BY 1,2;
6021
6022 CREATE OR REPLACE VIEW action.unfulfilled_hold_min_loop AS
6023     SELECT  hold,
6024             min(count)
6025       FROM  action.unfulfilled_hold_loops
6026       GROUP BY 1;
6027
6028 CREATE OR REPLACE VIEW action.unfulfilled_hold_innermost_loop AS
6029     SELECT  DISTINCT l.*
6030       FROM  action.unfulfilled_hold_loops l
6031             JOIN action.unfulfilled_hold_min_loop m USING (hold)
6032       WHERE l.count = m.min;
6033
6034 ALTER TABLE asset.copy
6035 ADD COLUMN dummy_isbn TEXT;
6036
6037 ALTER TABLE auditor.asset_copy_history
6038 ADD COLUMN dummy_isbn TEXT;
6039
6040 -- Add new column status_changed_date to asset.copy, with trigger to maintain it
6041 -- Add corresponding new column to auditor.asset_copy_history
6042
6043 ALTER TABLE asset.copy
6044         ADD COLUMN status_changed_time TIMESTAMPTZ;
6045
6046 ALTER TABLE auditor.asset_copy_history
6047         ADD COLUMN status_changed_time TIMESTAMPTZ;
6048
6049 CREATE OR REPLACE FUNCTION asset.acp_status_changed()
6050 RETURNS TRIGGER AS $$
6051 BEGIN
6052         IF NEW.status <> OLD.status THEN
6053                 NEW.status_changed_time := now();
6054         END IF;
6055         RETURN NEW;
6056 END;
6057 $$ LANGUAGE plpgsql;
6058
6059 CREATE TRIGGER acp_status_changed_trig
6060         BEFORE UPDATE ON asset.copy
6061         FOR EACH ROW EXECUTE PROCEDURE asset.acp_status_changed();
6062
6063 ALTER TABLE asset.copy
6064 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6065
6066 ALTER TABLE auditor.asset_copy_history
6067 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
6068
6069 ALTER TABLE asset.copy ADD COLUMN floating BOOL NOT NULL DEFAULT FALSE;
6070 ALTER TABLE auditor.asset_copy_history ADD COLUMN floating BOOL;
6071
6072 DROP INDEX IF EXISTS asset.copy_barcode_key;
6073 CREATE UNIQUE INDEX copy_barcode_key ON asset.copy (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
6074
6075 -- Note: later we create a trigger a_opac_vis_mat_view_tgr
6076 -- AFTER INSERT OR UPDATE ON asset.copy
6077
6078 ALTER TABLE asset.copy ADD COLUMN cost NUMERIC(8,2);
6079 ALTER TABLE auditor.asset_copy_history ADD COLUMN cost NUMERIC(8,2);
6080
6081 -- Moke mostly parallel changes to action.circulation
6082 -- and action.aged_circulation
6083
6084 ALTER TABLE action.circulation
6085 ADD COLUMN workstation INT
6086     REFERENCES actor.workstation
6087         ON DELETE SET NULL
6088         DEFERRABLE INITIALLY DEFERRED;
6089
6090 ALTER TABLE action.aged_circulation
6091 ADD COLUMN workstation INT;
6092
6093 ALTER TABLE action.circulation
6094 ADD COLUMN parent_circ BIGINT
6095         REFERENCES action.circulation(id)
6096         DEFERRABLE INITIALLY DEFERRED;
6097
6098 CREATE UNIQUE INDEX circ_parent_idx
6099 ON action.circulation( parent_circ )
6100 WHERE parent_circ IS NOT NULL;
6101
6102 ALTER TABLE action.aged_circulation
6103 ADD COLUMN parent_circ BIGINT;
6104
6105 ALTER TABLE action.circulation
6106 ADD COLUMN checkin_workstation INT
6107         REFERENCES actor.workstation(id)
6108         ON DELETE SET NULL
6109         DEFERRABLE INITIALLY DEFERRED;
6110
6111 ALTER TABLE action.aged_circulation
6112 ADD COLUMN checkin_workstation INT;
6113
6114 ALTER TABLE action.circulation
6115 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6116
6117 ALTER TABLE action.aged_circulation
6118 ADD COLUMN checkin_scan_time TIMESTAMPTZ;
6119
6120 CREATE INDEX action_circulation_target_copy_idx
6121 ON action.circulation (target_copy);
6122
6123 CREATE INDEX action_aged_circulation_target_copy_idx
6124 ON action.aged_circulation (target_copy);
6125
6126 ALTER TABLE action.circulation
6127 DROP CONSTRAINT circulation_stop_fines_check;
6128
6129 ALTER TABLE action.circulation
6130         ADD CONSTRAINT circulation_stop_fines_check
6131         CHECK (stop_fines IN (
6132         'CHECKIN','CLAIMSRETURNED','LOST','MAXFINES','RENEW','LONGOVERDUE','CLAIMSNEVERCHECKEDOUT'));
6133
6134 -- Correct some long-standing misspellings involving variations of "recur"
6135
6136 ALTER TABLE action.circulation RENAME COLUMN recuring_fine TO recurring_fine;
6137 ALTER TABLE action.circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6138
6139 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine TO recurring_fine;
6140 ALTER TABLE action.aged_circulation RENAME COLUMN recuring_fine_rule TO recurring_fine_rule;
6141
6142 ALTER TABLE config.rule_recuring_fine RENAME TO rule_recurring_fine;
6143 ALTER TABLE config.rule_recuring_fine_id_seq RENAME TO rule_recurring_fine_id_seq;
6144
6145 ALTER TABLE config.rule_recurring_fine RENAME COLUMN recurance_interval TO recurrence_interval;
6146
6147 -- Might as well keep the comment in sync as well
6148 COMMENT ON TABLE config.rule_recurring_fine IS $$
6149 /*
6150  * Copyright (C) 2005  Georgia Public Library Service 
6151  * Mike Rylander <mrylander@gmail.com>
6152  *
6153  * Circulation Recurring Fine rules
6154  *
6155  * Each circulation is given a recurring fine amount based on one of
6156  * these rules.  The recurrence_interval should not be any shorter
6157  * than the interval between runs of the fine_processor.pl script
6158  * (which is run from CRON), or you could miss fines.
6159  * 
6160  *
6161  * ****
6162  *
6163  * This program is free software; you can redistribute it and/or
6164  * modify it under the terms of the GNU General Public License
6165  * as published by the Free Software Foundation; either version 2
6166  * of the License, or (at your option) any later version.
6167  *
6168  * This program is distributed in the hope that it will be useful,
6169  * but WITHOUT ANY WARRANTY; without even the implied warranty of
6170  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6171  * GNU General Public License for more details.
6172  */
6173 $$;
6174
6175 -- Extend the name change to some related views:
6176
6177 DROP VIEW IF EXISTS reporter.overdue_circs;
6178
6179 CREATE OR REPLACE VIEW reporter.overdue_circs AS
6180 SELECT  *
6181   FROM  action.circulation
6182     WHERE checkin_time is null
6183                 AND (stop_fines NOT IN ('LOST','CLAIMSRETURNED') OR stop_fines IS NULL)
6184                                 AND due_date < now();
6185
6186 DROP VIEW IF EXISTS stats.fleshed_circulation;
6187
6188 DROP VIEW IF EXISTS stats.fleshed_copy;
6189
6190 CREATE VIEW stats.fleshed_copy AS
6191         SELECT  cp.*,
6192         CAST(cp.create_date AS DATE) AS create_date_day,
6193         CAST(cp.edit_date AS DATE) AS edit_date_day,
6194         DATE_TRUNC('hour', cp.create_date) AS create_date_hour,
6195         DATE_TRUNC('hour', cp.edit_date) AS edit_date_hour,
6196                 cn.label AS call_number_label,
6197                 cn.owning_lib,
6198                 rd.item_lang,
6199                 rd.item_type,
6200                 rd.item_form
6201         FROM    asset.copy cp
6202                 JOIN asset.call_number cn ON (cp.call_number = cn.id)
6203                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
6204
6205 CREATE VIEW stats.fleshed_circulation AS
6206         SELECT  c.*,
6207                 CAST(c.xact_start AS DATE) AS start_date_day,
6208                 CAST(c.xact_finish AS DATE) AS finish_date_day,
6209                 DATE_TRUNC('hour', c.xact_start) AS start_date_hour,
6210                 DATE_TRUNC('hour', c.xact_finish) AS finish_date_hour,
6211                 cp.call_number_label,
6212                 cp.owning_lib,
6213                 cp.item_lang,
6214                 cp.item_type,
6215                 cp.item_form
6216         FROM    action.circulation c
6217                 JOIN stats.fleshed_copy cp ON (cp.id = c.target_copy);
6218
6219 -- Drop a view temporarily in order to alter action.all_circulation, upon
6220 -- which it is dependent.  We will recreate the view later.
6221
6222 DROP VIEW IF EXISTS extend_reporter.full_circ_count;
6223
6224 -- You would think that CREATE OR REPLACE would be enough, but in testing
6225 -- PostgreSQL complained about renaming the columns in the view. So we
6226 -- drop the view first.
6227 DROP VIEW IF EXISTS action.all_circulation;
6228
6229 CREATE OR REPLACE VIEW action.all_circulation AS
6230     SELECT  id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6231         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6232         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6233         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6234         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6235         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6236       FROM  action.aged_circulation
6237             UNION ALL
6238     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,
6239         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,
6240         cn.record AS copy_bib_record, circ.xact_start, circ.xact_finish, circ.target_copy, circ.circ_lib, circ.circ_staff, circ.checkin_staff,
6241         circ.checkin_lib, circ.renewal_remaining, circ.due_date, circ.stop_fines_time, circ.checkin_time, circ.create_time, circ.duration,
6242         circ.fine_interval, circ.recurring_fine, circ.max_fine, circ.phone_renewal, circ.desk_renewal, circ.opac_renewal, circ.duration_rule,
6243         circ.recurring_fine_rule, circ.max_fine_rule, circ.stop_fines, circ.workstation, circ.checkin_workstation, circ.checkin_scan_time,
6244         circ.parent_circ
6245       FROM  action.circulation circ
6246         JOIN asset.copy cp ON (circ.target_copy = cp.id)
6247         JOIN asset.call_number cn ON (cp.call_number = cn.id)
6248         JOIN actor.usr p ON (circ.usr = p.id)
6249         LEFT JOIN actor.usr_address a ON (p.mailing_address = a.id)
6250         LEFT JOIN actor.usr_address b ON (p.billing_address = a.id);
6251
6252 -- Recreate the temporarily dropped view, having altered the action.all_circulation view:
6253
6254 CREATE OR REPLACE VIEW extend_reporter.full_circ_count AS
6255  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
6256    FROM asset."copy" cp
6257    LEFT JOIN extend_reporter.legacy_circ_count c USING (id)
6258    LEFT JOIN "action".circulation circ ON circ.target_copy = cp.id
6259    LEFT JOIN "action".aged_circulation acirc ON acirc.target_copy = cp.id
6260   GROUP BY cp.id;
6261
6262 CREATE UNIQUE INDEX only_one_concurrent_checkout_per_copy ON action.circulation(target_copy) WHERE checkin_time IS NULL;
6263
6264 ALTER TABLE action.circulation DROP CONSTRAINT action_circulation_target_copy_fkey;
6265
6266 CREATE OR REPLACE FUNCTION action.age_circ_on_delete () RETURNS TRIGGER AS $$
6267 DECLARE
6268 found char := 'N';
6269 BEGIN
6270
6271     -- If there are any renewals for this circulation, don't archive or delete
6272     -- it yet.   We'll do so later, when we archive and delete the renewals.
6273
6274     SELECT 'Y' INTO found
6275     FROM action.circulation
6276     WHERE parent_circ = OLD.id
6277     LIMIT 1;
6278
6279     IF found = 'Y' THEN
6280         RETURN NULL;  -- don't delete
6281         END IF;
6282
6283     -- Archive a copy of the old row to action.aged_circulation
6284
6285     INSERT INTO action.aged_circulation
6286         (id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6287         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6288         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6289         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6290         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6291         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ)
6292       SELECT
6293         id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
6294         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
6295         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, due_date,
6296         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
6297         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
6298         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
6299         FROM action.all_circulation WHERE id = OLD.id;
6300
6301     RETURN OLD;
6302 END;
6303 $$ LANGUAGE 'plpgsql';
6304
6305 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND name = 'title';
6306
6307 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'biblios' AND truncation = 0;
6308
6309 -- Adding circ.holds.target_skip_me OU setting logic to the pre-matchpoint tests
6310
6311 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$
6312 DECLARE
6313     matchpoint_id        INT;
6314     user_object        actor.usr%ROWTYPE;
6315     age_protect_object    config.rule_age_hold_protect%ROWTYPE;
6316     standing_penalty    config.standing_penalty%ROWTYPE;
6317     transit_range_ou_type    actor.org_unit_type%ROWTYPE;
6318     transit_source        actor.org_unit%ROWTYPE;
6319     item_object        asset.copy%ROWTYPE;
6320     ou_skip              actor.org_unit_setting%ROWTYPE;
6321     result            action.matrix_test_result;
6322     hold_test        config.hold_matrix_matchpoint%ROWTYPE;
6323     hold_count        INT;
6324     hold_transit_prox    INT;
6325     frozen_hold_count    INT;
6326     context_org_list    INT[];
6327     done            BOOL := FALSE;
6328 BEGIN
6329     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
6330     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( pickup_ou );
6331
6332     result.success := TRUE;
6333
6334     -- Fail if we couldn't find a user
6335     IF user_object.id IS NULL THEN
6336         result.fail_part := 'no_user';
6337         result.success := FALSE;
6338         done := TRUE;
6339         RETURN NEXT result;
6340         RETURN;
6341     END IF;
6342
6343     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
6344
6345     -- Fail if we couldn't find a copy
6346     IF item_object.id IS NULL THEN
6347         result.fail_part := 'no_item';
6348         result.success := FALSE;
6349         done := TRUE;
6350         RETURN NEXT result;
6351         RETURN;
6352     END IF;
6353
6354     SELECT INTO matchpoint_id action.find_hold_matrix_matchpoint(pickup_ou, request_ou, match_item, match_user, match_requestor);
6355     result.matchpoint := matchpoint_id;
6356
6357     SELECT INTO ou_skip * FROM actor.org_unit_setting WHERE name = 'circ.holds.target_skip_me' AND org_unit = item_object.circ_lib;
6358
6359     -- Fail if the circ_lib for the item has circ.holds.target_skip_me set to true
6360     IF ou_skip.id IS NOT NULL AND ou_skip.value = 'true' THEN
6361         result.fail_part := 'circ.holds.target_skip_me';
6362         result.success := FALSE;
6363         done := TRUE;
6364         RETURN NEXT result;
6365         RETURN;
6366     END IF;
6367
6368     -- Fail if user is barred
6369     IF user_object.barred IS TRUE THEN
6370         result.fail_part := 'actor.usr.barred';
6371         result.success := FALSE;
6372         done := TRUE;
6373         RETURN NEXT result;
6374         RETURN;
6375     END IF;
6376
6377     -- Fail if we couldn't find any matchpoint (requires a default)
6378     IF matchpoint_id IS NULL THEN
6379         result.fail_part := 'no_matchpoint';
6380         result.success := FALSE;
6381         done := TRUE;
6382         RETURN NEXT result;
6383         RETURN;
6384     END IF;
6385
6386     SELECT INTO hold_test * FROM config.hold_matrix_matchpoint WHERE id = matchpoint_id;
6387
6388     IF hold_test.holdable IS FALSE THEN
6389         result.fail_part := 'config.hold_matrix_test.holdable';
6390         result.success := FALSE;
6391         done := TRUE;
6392         RETURN NEXT result;
6393     END IF;
6394
6395     IF hold_test.transit_range IS NOT NULL THEN
6396         SELECT INTO transit_range_ou_type * FROM actor.org_unit_type WHERE id = hold_test.transit_range;
6397         IF hold_test.distance_is_from_owner THEN
6398             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;
6399         ELSE
6400             SELECT INTO transit_source * FROM actor.org_unit WHERE id = item_object.circ_lib;
6401         END IF;
6402
6403         PERFORM * FROM actor.org_unit_descendants( transit_source.id, transit_range_ou_type.depth ) WHERE id = pickup_ou;
6404
6405         IF NOT FOUND THEN
6406             result.fail_part := 'transit_range';
6407             result.success := FALSE;
6408             done := TRUE;
6409             RETURN NEXT result;
6410         END IF;
6411     END IF;
6412  
6413     FOR standing_penalty IN
6414         SELECT  DISTINCT csp.*
6415           FROM  actor.usr_standing_penalty usp
6416                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6417           WHERE usr = match_user
6418                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6419                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6420                 AND csp.block_list LIKE '%HOLD%' LOOP
6421
6422         result.fail_part := standing_penalty.name;
6423         result.success := FALSE;
6424         done := TRUE;
6425         RETURN NEXT result;
6426     END LOOP;
6427
6428     IF hold_test.stop_blocked_user IS TRUE THEN
6429         FOR standing_penalty IN
6430             SELECT  DISTINCT csp.*
6431               FROM  actor.usr_standing_penalty usp
6432                     JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
6433               WHERE usr = match_user
6434                     AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
6435                     AND (usp.stop_date IS NULL or usp.stop_date > NOW())
6436                     AND csp.block_list LIKE '%CIRC%' LOOP
6437     
6438             result.fail_part := standing_penalty.name;
6439             result.success := FALSE;
6440             done := TRUE;
6441             RETURN NEXT result;
6442         END LOOP;
6443     END IF;
6444
6445     IF hold_test.max_holds IS NOT NULL THEN
6446         SELECT    INTO hold_count COUNT(*)
6447           FROM    action.hold_request
6448           WHERE    usr = match_user
6449             AND fulfillment_time IS NULL
6450             AND cancel_time IS NULL
6451             AND CASE WHEN hold_test.include_frozen_holds THEN TRUE ELSE frozen IS FALSE END;
6452
6453         IF hold_count >= hold_test.max_holds THEN
6454             result.fail_part := 'config.hold_matrix_test.max_holds';
6455             result.success := FALSE;
6456             done := TRUE;
6457             RETURN NEXT result;
6458         END IF;
6459     END IF;
6460
6461     IF item_object.age_protect IS NOT NULL THEN
6462         SELECT INTO age_protect_object * FROM config.rule_age_hold_protect WHERE id = item_object.age_protect;
6463
6464         IF item_object.create_date + age_protect_object.age > NOW() THEN
6465             IF hold_test.distance_is_from_owner THEN
6466                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_cn_object.owning_lib AND to_org = pickup_ou;
6467             ELSE
6468                 SELECT INTO hold_transit_prox prox FROM actor.org_unit_proximity WHERE from_org = item_object.circ_lib AND to_org = pickup_ou;
6469             END IF;
6470
6471             IF hold_transit_prox > age_protect_object.prox THEN
6472                 result.fail_part := 'config.rule_age_hold_protect.prox';
6473                 result.success := FALSE;
6474                 done := TRUE;
6475                 RETURN NEXT result;
6476             END IF;
6477         END IF;
6478     END IF;
6479
6480     IF NOT done THEN
6481         RETURN NEXT result;
6482     END IF;
6483
6484     RETURN;
6485 END;
6486 $func$ LANGUAGE plpgsql;
6487
6488 -- New post-delete trigger to propagate deletions to parent(s)
6489
6490 CREATE OR REPLACE FUNCTION action.age_parent_circ_on_delete () RETURNS TRIGGER AS $$
6491 BEGIN
6492
6493     -- Having deleted a renewal, we can delete the original circulation (or a previous
6494     -- renewal, if that's what parent_circ is pointing to).  That deletion will trigger
6495     -- deletion of any prior parents, etc. recursively.
6496
6497     IF OLD.parent_circ IS NOT NULL THEN
6498         DELETE FROM action.circulation
6499         WHERE id = OLD.parent_circ;
6500     END IF;
6501
6502     RETURN OLD;
6503 END;
6504 $$ LANGUAGE 'plpgsql';
6505
6506 CREATE TRIGGER age_parent_circ AFTER DELETE ON action.circulation
6507 FOR EACH ROW EXECUTE PROCEDURE action.age_parent_circ_on_delete ();
6508
6509 -- This only gets inserted if there are no other id > 100 billing types
6510 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;
6511 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101) FROM config.billing_type_id_seq WHERE last_value < 101;
6512
6513 -- Populate xact_type column in the materialized version of billable_xact_summary
6514
6515 CREATE OR REPLACE FUNCTION money.mat_summary_create () RETURNS TRIGGER AS $$
6516 BEGIN
6517         INSERT INTO money.materialized_billable_xact_summary (id, usr, xact_start, xact_finish, total_paid, total_owed, balance_owed, xact_type)
6518                 VALUES ( NEW.id, NEW.usr, NEW.xact_start, NEW.xact_finish, 0.0, 0.0, 0.0, TG_ARGV[0]);
6519         RETURN NEW;
6520 END;
6521 $$ LANGUAGE PLPGSQL;
6522  
6523 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON action.circulation;
6524 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('circulation');
6525  
6526 DROP TRIGGER IF EXISTS mat_summary_create_tgr ON money.grocery;
6527 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON money.grocery FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('grocery');
6528
6529 CREATE RULE money_payment_view_update AS ON UPDATE TO money.payment_view DO INSTEAD 
6530     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;
6531
6532 -- Generate the equivalent of compound subject entries from the existing rows
6533 -- so that we don't have to laboriously reindex them
6534
6535 --INSERT INTO config.metabib_field (field_class, name, format, xpath ) VALUES
6536 --    ( 'subject', 'complete', 'mods32', $$//mods32:mods/mods32:subject//text()$$ );
6537 --
6538 --CREATE INDEX metabib_subject_field_entry_source_idx ON metabib.subject_field_entry (source);
6539 --
6540 --INSERT INTO metabib.subject_field_entry (source, field, value)
6541 --    SELECT source, (
6542 --            SELECT id 
6543 --            FROM config.metabib_field
6544 --            WHERE field_class = 'subject' AND name = 'complete'
6545 --        ), 
6546 --        ARRAY_TO_STRING ( 
6547 --            ARRAY (
6548 --                SELECT value 
6549 --                FROM metabib.subject_field_entry msfe
6550 --                WHERE msfe.source = groupee.source
6551 --                ORDER BY source 
6552 --            ), ' ' 
6553 --        ) AS grouped
6554 --    FROM ( 
6555 --        SELECT source
6556 --        FROM metabib.subject_field_entry
6557 --        GROUP BY source
6558 --    ) AS groupee;
6559
6560 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_del () RETURNS TRIGGER AS $$
6561 DECLARE
6562         prev_billing    money.billing%ROWTYPE;
6563         old_billing     money.billing%ROWTYPE;
6564 BEGIN
6565         SELECT * INTO prev_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1 OFFSET 1;
6566         SELECT * INTO old_billing FROM money.billing WHERE xact = OLD.xact AND NOT voided ORDER BY billing_ts DESC LIMIT 1;
6567
6568         IF OLD.id = old_billing.id THEN
6569                 UPDATE  money.materialized_billable_xact_summary
6570                   SET   last_billing_ts = prev_billing.billing_ts,
6571                         last_billing_note = prev_billing.note,
6572                         last_billing_type = prev_billing.billing_type
6573                   WHERE id = OLD.xact;
6574         END IF;
6575
6576         IF NOT OLD.voided THEN
6577                 UPDATE  money.materialized_billable_xact_summary
6578                   SET   total_owed = total_owed - OLD.amount,
6579                         balance_owed = balance_owed + OLD.amount
6580                   WHERE id = OLD.xact;
6581         END IF;
6582
6583         RETURN OLD;
6584 END;
6585 $$ LANGUAGE PLPGSQL;
6586
6587 -- ARG! need to rid ourselves of the broken table definition ... this mechanism is not ideal, sorry.
6588 DROP TABLE IF EXISTS config.index_normalizer CASCADE;
6589
6590 CREATE OR REPLACE FUNCTION public.naco_normalize( TEXT, TEXT ) RETURNS TEXT AS $func$
6591         use Unicode::Normalize;
6592         use Encode;
6593
6594         # When working with Unicode data, the first step is to decode it to
6595         # a byte string; after that, lowercasing is safe
6596         my $txt = lc(decode_utf8(shift));
6597         my $sf = shift;
6598
6599         $txt = NFD($txt);
6600         $txt =~ s/\pM+//go;     # Remove diacritics
6601
6602         $txt =~ s/\xE6/AE/go;   # Convert ae digraph
6603         $txt =~ s/\x{153}/OE/go;# Convert oe digraph
6604         $txt =~ s/\xFE/TH/go;   # Convert Icelandic thorn
6605
6606         $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
6607         $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
6608
6609         $txt =~ tr/\x{0251}\x{03B1}\x{03B2}\x{0262}\x{03B3}/AABGG/;             # Convert Latin and Greek
6610         $txt =~ tr/\x{2113}\xF0\!\"\(\)\-\{\}\<\>\;\:\.\?\xA1\xBF\/\\\@\*\%\=\xB1\+\xAE\xA9\x{2117}\$\xA3\x{FFE1}\xB0\^\_\~\`/LD /;     # Convert Misc
6611         $txt =~ tr/\'\[\]\|//d;                                                 # Remove Misc
6612
6613         if ($sf && $sf =~ /^a/o) {
6614                 my $commapos = index($txt,',');
6615                 if ($commapos > -1) {
6616                         if ($commapos != length($txt) - 1) {
6617                                 my @list = split /,/, $txt;
6618                                 my $first = shift @list;
6619                                 $txt = $first . ',' . join(' ', @list);
6620                         } else {
6621                                 $txt =~ s/,/ /go;
6622                         }
6623                 }
6624         } else {
6625                 $txt =~ s/,/ /go;
6626         }
6627
6628         $txt =~ s/\s+/ /go;     # Compress multiple spaces
6629         $txt =~ s/^\s+//o;      # Remove leading space
6630         $txt =~ s/\s+$//o;      # Remove trailing space
6631
6632         # Encoding the outgoing string is good practice, but not strictly
6633         # necessary in this case because we've stripped everything from it
6634         return encode_utf8($txt);
6635 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6636
6637 -- Some handy functions, based on existing ones, to provide optional ingest normalization
6638
6639 CREATE OR REPLACE FUNCTION public.left_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6640         SELECT SUBSTRING($1,$2);
6641 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6642
6643 CREATE OR REPLACE FUNCTION public.right_trunc( TEXT, INT ) RETURNS TEXT AS $func$
6644         SELECT SUBSTRING($1,1,$2);
6645 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6646
6647 CREATE OR REPLACE FUNCTION public.naco_normalize_keep_comma( TEXT ) RETURNS TEXT AS $func$
6648         SELECT public.naco_normalize($1,'a');
6649 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6650
6651 CREATE OR REPLACE FUNCTION public.split_date_range( TEXT ) RETURNS TEXT AS $func$
6652         SELECT REGEXP_REPLACE( $1, E'(\\d{4})-(\\d{4})', E'\\1 \\2', 'g' );
6653 $func$ LANGUAGE SQL STRICT IMMUTABLE;
6654
6655 -- And ... a table in which to register them
6656
6657 CREATE TABLE config.index_normalizer (
6658         id              SERIAL  PRIMARY KEY,
6659         name            TEXT    UNIQUE NOT NULL,
6660         description     TEXT,
6661         func            TEXT    NOT NULL,
6662         param_count     INT     NOT NULL DEFAULT 0
6663 );
6664
6665 CREATE TABLE config.metabib_field_index_norm_map (
6666         id      SERIAL  PRIMARY KEY,
6667         field   INT     NOT NULL REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6668         norm    INT     NOT NULL REFERENCES config.index_normalizer (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
6669         params  TEXT,
6670         pos     INT     NOT NULL DEFAULT 0
6671 );
6672
6673 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6674         'NACO Normalize',
6675         'Apply NACO normalization rules to the extracted text.  See http://www.loc.gov/catdir/pcc/naco/normrule-2.html for details.',
6676         'naco_normalize',
6677         0
6678 );
6679
6680 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6681         'Normalize date range',
6682         'Split date ranges in the form of "XXXX-YYYY" into "XXXX YYYY" for proper index.',
6683         'split_date_range',
6684         1
6685 );
6686
6687 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6688         'NACO Normalize -- retain first comma',
6689         '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.',
6690         'naco_normalize_keep_comma',
6691         0
6692 );
6693
6694 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6695         'Strip Diacritics',
6696         'Convert text to NFD form and remove non-spacing combining marks.',
6697         'remove_diacritics',
6698         0
6699 );
6700
6701 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6702         'Up-case',
6703         'Convert text upper case.',
6704         'uppercase',
6705         0
6706 );
6707
6708 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6709         'Down-case',
6710         'Convert text lower case.',
6711         'lowercase',
6712         0
6713 );
6714
6715 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6716         'Extract Dewey-like number',
6717         'Extract a string of numeric characters ther resembles a DDC number.',
6718         'call_number_dewey',
6719         0
6720 );
6721
6722 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6723         'Left truncation',
6724         'Discard the specified number of characters from the left side of the string.',
6725         'left_trunc',
6726         1
6727 );
6728
6729 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6730         'Right truncation',
6731         'Include only the specified number of characters from the left side of the string.',
6732         'right_trunc',
6733         1
6734 );
6735
6736 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
6737         'First word',
6738         'Include only the first space-separated word of a string.',
6739         'first_word',
6740         0
6741 );
6742
6743 INSERT INTO config.metabib_field_index_norm_map (field,norm)
6744         SELECT  m.id,
6745                 i.id
6746           FROM  config.metabib_field m,
6747                 config.index_normalizer i
6748           WHERE i.func IN ('naco_normalize','split_date_range');
6749
6750 CREATE OR REPLACE FUNCTION oils_tsearch2 () RETURNS TRIGGER AS $$
6751 DECLARE
6752     normalizer      RECORD;
6753     value           TEXT := '';
6754 BEGIN
6755
6756     value := NEW.value;
6757
6758     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
6759         FOR normalizer IN
6760             SELECT  n.func AS func,
6761                     n.param_count AS param_count,
6762                     m.params AS params
6763               FROM  config.index_normalizer n
6764                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
6765               WHERE field = NEW.field AND m.pos < 0
6766               ORDER BY m.pos LOOP
6767                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
6768                     quote_literal( value ) ||
6769                     CASE
6770                         WHEN normalizer.param_count > 0
6771                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
6772                             ELSE ''
6773                         END ||
6774                     ')' INTO value;
6775
6776         END LOOP;
6777
6778         NEW.value := value;
6779     END IF;
6780
6781     IF NEW.index_vector = ''::tsvector THEN
6782         RETURN NEW;
6783     END IF;
6784
6785     IF TG_TABLE_NAME::TEXT ~ 'field_entry$' THEN
6786         FOR normalizer IN
6787             SELECT  n.func AS func,
6788                     n.param_count AS param_count,
6789                     m.params AS params
6790               FROM  config.index_normalizer n
6791                     JOIN config.metabib_field_index_norm_map m ON (m.norm = n.id)
6792               WHERE field = NEW.field AND m.pos >= 0
6793               ORDER BY m.pos LOOP
6794                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
6795                     quote_literal( value ) ||
6796                     CASE
6797                         WHEN normalizer.param_count > 0
6798                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
6799                             ELSE ''
6800                         END ||
6801                     ')' INTO value;
6802
6803         END LOOP;
6804     END IF;
6805
6806     IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT > 8.2 THEN
6807         NEW.index_vector = to_tsvector((TG_ARGV[0])::regconfig, value);
6808     ELSE
6809         NEW.index_vector = to_tsvector(TG_ARGV[0], value);
6810     END IF;
6811
6812     RETURN NEW;
6813 END;
6814 $$ LANGUAGE PLPGSQL;
6815
6816 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
6817
6818 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
6819
6820 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
6821     SELECT  ARRAY_TO_STRING(
6822                 oils_xpath(
6823                     $1 ||
6824                         CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END,
6825                     $2,
6826                     $4
6827                 ),
6828                 $3
6829             );
6830 $func$ LANGUAGE SQL IMMUTABLE;
6831
6832 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT ) RETURNS TEXT AS $func$
6833     SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] );
6834 $func$ LANGUAGE SQL IMMUTABLE;
6835
6836 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
6837     SELECT oils_xpath_string( $1, $2, '', $3 );
6838 $func$ LANGUAGE SQL IMMUTABLE;
6839
6840 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT ) RETURNS TEXT AS $func$
6841     SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] );
6842 $func$ LANGUAGE SQL IMMUTABLE;
6843
6844 CREATE TYPE metabib.field_entry_template AS (
6845         field_class     TEXT,
6846         field           INT,
6847         source          BIGINT,
6848         value           TEXT
6849 );
6850
6851 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $func$
6852   use strict;
6853
6854   use XML::LibXSLT;
6855   use XML::LibXML;
6856
6857   my $doc = shift;
6858   my $xslt = shift;
6859
6860   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
6861   # methods of parsing XML documents and stylesheets, in the hopes of broader
6862   # compatibility with distributions
6863   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
6864
6865   # Cache the XML parser, if we do not already have one
6866   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
6867     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
6868
6869   my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new();
6870
6871   # Cache the XSLT processor, if we do not already have one
6872   $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser
6873     unless ($_SHARED{'_xslt_process'}{parsers}{xslt});
6874
6875   my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} ||
6876     $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) );
6877
6878   $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet
6879     unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt});
6880
6881   return $stylesheet->output_string(
6882     $stylesheet->transform(
6883       $parser->parse_string($doc)
6884     )
6885   );
6886
6887 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
6888
6889 -- Add two columns so that the following function will compile.
6890 -- Eventually the label column will be NOT NULL, but not yet.
6891 ALTER TABLE config.metabib_field ADD COLUMN label TEXT;
6892 ALTER TABLE config.metabib_field ADD COLUMN facet_xpath TEXT;
6893
6894 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( rid BIGINT, default_joiner TEXT ) RETURNS SETOF metabib.field_entry_template AS $func$
6895 DECLARE
6896     bib     biblio.record_entry%ROWTYPE;
6897     idx     config.metabib_field%ROWTYPE;
6898     xfrm        config.xml_transform%ROWTYPE;
6899     prev_xfrm   TEXT;
6900     transformed_xml TEXT;
6901     xml_node    TEXT;
6902     xml_node_list   TEXT[];
6903     facet_text  TEXT;
6904     raw_text    TEXT;
6905     curr_text   TEXT;
6906     joiner      TEXT := default_joiner; -- XXX will index defs supply a joiner?
6907     output_row  metabib.field_entry_template%ROWTYPE;
6908 BEGIN
6909
6910     -- Get the record
6911     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
6912
6913     -- Loop over the indexing entries
6914     FOR idx IN SELECT * FROM config.metabib_field ORDER BY format LOOP
6915
6916         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
6917
6918         -- See if we can skip the XSLT ... it's expensive
6919         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
6920             -- Can't skip the transform
6921             IF xfrm.xslt <> '---' THEN
6922                 transformed_xml := oils_xslt_process(bib.marc,xfrm.xslt);
6923             ELSE
6924                 transformed_xml := bib.marc;
6925             END IF;
6926
6927             prev_xfrm := xfrm.name;
6928         END IF;
6929
6930         xml_node_list := oils_xpath( idx.xpath, transformed_xml, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
6931
6932         raw_text := NULL;
6933         FOR xml_node IN SELECT x FROM explode_array(xml_node_list) AS x LOOP
6934             CONTINUE WHEN xml_node !~ E'^\\s*<';
6935
6936             curr_text := ARRAY_TO_STRING(
6937                 oils_xpath( '//text()',
6938                     REGEXP_REPLACE( -- This escapes all &s not followed by "amp;".  Data ise returned from oils_xpath (above) in UTF-8, not entity encoded
6939                         REGEXP_REPLACE( -- This escapes embeded <s
6940                             xml_node,
6941                             $re$(>[^<]+)(<)([^>]+<)$re$,
6942                             E'\\1&lt;\\3',
6943                             'g'
6944                         ),
6945                         '&(?!amp;)',
6946                         '&amp;',
6947                         'g'
6948                     )
6949                 ),
6950                 ' '
6951             );
6952
6953             CONTINUE WHEN curr_text IS NULL OR curr_text = '';
6954
6955             IF raw_text IS NOT NULL THEN
6956                 raw_text := raw_text || joiner;
6957             END IF;
6958
6959             raw_text := COALESCE(raw_text,'') || curr_text;
6960
6961             -- insert raw node text for faceting
6962             IF idx.facet_field THEN
6963
6964                 IF idx.facet_xpath IS NOT NULL AND idx.facet_xpath <> '' THEN
6965                     facet_text := oils_xpath_string( idx.facet_xpath, xml_node, joiner, ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]] );
6966                 ELSE
6967                     facet_text := curr_text;
6968                 END IF;
6969
6970                 output_row.field_class = idx.field_class;
6971                 output_row.field = -1 * idx.id;
6972                 output_row.source = rid;
6973                 output_row.value = BTRIM(REGEXP_REPLACE(facet_text, E'\\s+', ' ', 'g'));
6974
6975                 RETURN NEXT output_row;
6976             END IF;
6977
6978         END LOOP;
6979
6980         CONTINUE WHEN raw_text IS NULL OR raw_text = '';
6981
6982         -- insert combined node text for searching
6983         IF idx.search_field THEN
6984             output_row.field_class = idx.field_class;
6985             output_row.field = idx.id;
6986             output_row.source = rid;
6987             output_row.value = BTRIM(REGEXP_REPLACE(raw_text, E'\\s+', ' ', 'g'));
6988
6989             RETURN NEXT output_row;
6990         END IF;
6991
6992     END LOOP;
6993
6994 END;
6995 $func$ LANGUAGE PLPGSQL;
6996
6997 -- default to a space joiner
6998 CREATE OR REPLACE FUNCTION biblio.extract_metabib_field_entry ( BIGINT ) RETURNS SETOF metabib.field_entry_template AS $func$
6999         SELECT * FROM biblio.extract_metabib_field_entry($1, ' ');
7000 $func$ LANGUAGE SQL;
7001
7002 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( TEXT ) RETURNS SETOF metabib.full_rec AS $func$
7003
7004 use MARC::Record;
7005 use MARC::File::XML (BinaryEncoding => 'UTF-8');
7006
7007 my $xml = shift;
7008 my $r = MARC::Record->new_from_xml( $xml );
7009
7010 return_next( { tag => 'LDR', value => $r->leader } );
7011
7012 for my $f ( $r->fields ) {
7013     if ($f->is_control_field) {
7014         return_next({ tag => $f->tag, value => $f->data });
7015     } else {
7016         for my $s ($f->subfields) {
7017             return_next({
7018                 tag      => $f->tag,
7019                 ind1     => $f->indicator(1),
7020                 ind2     => $f->indicator(2),
7021                 subfield => $s->[0],
7022                 value    => $s->[1]
7023             });
7024
7025             if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
7026                 my $trim = $f->indicator(2) || 0;
7027                 return_next({
7028                     tag      => 'tnf',
7029                     ind1     => $f->indicator(1),
7030                     ind2     => $f->indicator(2),
7031                     subfield => 'a',
7032                     value    => substr( $s->[1], $trim )
7033                 });
7034             }
7035         }
7036     }
7037 }
7038
7039 return undef;
7040
7041 $func$ LANGUAGE PLPERLU;
7042
7043 CREATE OR REPLACE FUNCTION biblio.flatten_marc ( rid BIGINT ) RETURNS SETOF metabib.full_rec AS $func$
7044 DECLARE
7045     bib biblio.record_entry%ROWTYPE;
7046     output  metabib.full_rec%ROWTYPE;
7047     field   RECORD;
7048 BEGIN
7049     SELECT INTO bib * FROM biblio.record_entry WHERE id = rid;
7050
7051     FOR field IN SELECT * FROM biblio.flatten_marc( bib.marc ) LOOP
7052         output.record := rid;
7053         output.ind1 := field.ind1;
7054         output.ind2 := field.ind2;
7055         output.tag := field.tag;
7056         output.subfield := field.subfield;
7057         IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields
7058             output.value := naco_normalize(field.value, field.subfield);
7059         ELSE
7060             output.value := field.value;
7061         END IF;
7062
7063         CONTINUE WHEN output.value IS NULL;
7064
7065         RETURN NEXT output;
7066     END LOOP;
7067 END;
7068 $func$ LANGUAGE PLPGSQL;
7069
7070 -- functions to create auditor objects
7071
7072 CREATE FUNCTION auditor.create_auditor_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7073 BEGIN
7074     EXECUTE $$
7075         CREATE SEQUENCE auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
7076     $$;
7077         RETURN TRUE;
7078 END;
7079 $creator$ LANGUAGE 'plpgsql';
7080
7081 CREATE FUNCTION auditor.create_auditor_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7082 BEGIN
7083     EXECUTE $$
7084         CREATE TABLE auditor.$$ || sch || $$_$$ || tbl || $$_history (
7085             audit_id    BIGINT                          PRIMARY KEY,
7086             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
7087             audit_action        TEXT                            NOT NULL,
7088             LIKE $$ || sch || $$.$$ || tbl || $$
7089         );
7090     $$;
7091         RETURN TRUE;
7092 END;
7093 $creator$ LANGUAGE 'plpgsql';
7094
7095 CREATE FUNCTION auditor.create_auditor_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7096 BEGIN
7097     EXECUTE $$
7098         CREATE FUNCTION auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ()
7099         RETURNS TRIGGER AS $func$
7100         BEGIN
7101             INSERT INTO auditor.$$ || sch || $$_$$ || tbl || $$_history
7102                 SELECT  nextval('auditor.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
7103                     now(),
7104                     SUBSTR(TG_OP,1,1),
7105                     OLD.*;
7106             RETURN NULL;
7107         END;
7108         $func$ LANGUAGE 'plpgsql';
7109     $$;
7110     RETURN TRUE;
7111 END;
7112 $creator$ LANGUAGE 'plpgsql';
7113
7114 CREATE FUNCTION auditor.create_auditor_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7115 BEGIN
7116     EXECUTE $$
7117         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
7118             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
7119             EXECUTE PROCEDURE auditor.audit_$$ || sch || $$_$$ || tbl || $$_func ();
7120     $$;
7121         RETURN TRUE;
7122 END;
7123 $creator$ LANGUAGE 'plpgsql';
7124
7125 CREATE FUNCTION auditor.create_auditor_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7126 BEGIN
7127     EXECUTE $$
7128         CREATE VIEW auditor.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
7129             SELECT      -1, now() as audit_time, '-' as audit_action, *
7130               FROM      $$ || sch || $$.$$ || tbl || $$
7131                 UNION ALL
7132             SELECT      *
7133               FROM      auditor.$$ || sch || $$_$$ || tbl || $$_history;
7134     $$;
7135         RETURN TRUE;
7136 END;
7137 $creator$ LANGUAGE 'plpgsql';
7138
7139 DROP FUNCTION IF EXISTS auditor.create_auditor (TEXT, TEXT);
7140
7141 -- The main event
7142
7143 CREATE FUNCTION auditor.create_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
7144 BEGIN
7145     PERFORM auditor.create_auditor_seq(sch, tbl);
7146     PERFORM auditor.create_auditor_history(sch, tbl);
7147     PERFORM auditor.create_auditor_func(sch, tbl);
7148     PERFORM auditor.create_auditor_update_trigger(sch, tbl);
7149     PERFORM auditor.create_auditor_lifecycle(sch, tbl);
7150         RETURN TRUE;
7151 END;
7152 $creator$ LANGUAGE 'plpgsql';
7153
7154 ALTER TABLE action.hold_request ADD COLUMN cut_in_line BOOL;
7155
7156 ALTER TABLE action.hold_request
7157 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
7158
7159 ALTER TABLE action.hold_request
7160 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
7161
7162 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_current_copy_fkey;
7163
7164 ALTER TABLE action.hold_request DROP CONSTRAINT hold_request_hold_type_check;
7165
7166 UPDATE config.index_normalizer SET param_count = 0 WHERE func = 'split_date_range';
7167
7168 CREATE INDEX actor_usr_usrgroup_idx ON actor.usr (usrgroup);
7169
7170 -- Add claims_never_checked_out_count to actor.usr, related history
7171
7172 ALTER TABLE actor.usr ADD COLUMN
7173         claims_never_checked_out_count  INT         NOT NULL DEFAULT 0;
7174
7175 ALTER TABLE AUDITOR.actor_usr_history ADD COLUMN 
7176         claims_never_checked_out_count INT;
7177
7178 DROP VIEW auditor.actor_usr_lifecycle;
7179
7180 SELECT auditor.create_auditor_lifecycle( 'actor', 'usr' );
7181
7182 -----------
7183
7184 CREATE OR REPLACE FUNCTION action.circulation_claims_returned () RETURNS TRIGGER AS $$
7185 BEGIN
7186         IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN
7187                 IF NEW.stop_fines = 'CLAIMSRETURNED' THEN
7188                         UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr;
7189                 END IF;
7190                 IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN
7191                         UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr;
7192                 END IF;
7193                 IF NEW.stop_fines = 'LOST' THEN
7194                         UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy;
7195                 END IF;
7196         END IF;
7197         RETURN NEW;
7198 END;
7199 $$ LANGUAGE 'plpgsql';
7200
7201 -- Create new table acq.fund_allocation_percent
7202 -- Populate it from acq.fund_allocation
7203 -- Convert all percentages to amounts in acq.fund_allocation
7204
7205 CREATE TABLE acq.fund_allocation_percent
7206 (
7207     id                   SERIAL            PRIMARY KEY,
7208     funding_source       INT               NOT NULL REFERENCES acq.funding_source
7209                                                DEFERRABLE INITIALLY DEFERRED,
7210     org                  INT               NOT NULL REFERENCES actor.org_unit
7211                                                DEFERRABLE INITIALLY DEFERRED,
7212     fund_code            TEXT,
7213     percent              NUMERIC           NOT NULL,
7214     allocator            INTEGER           NOT NULL REFERENCES actor.usr
7215                                                DEFERRABLE INITIALLY DEFERRED,
7216     note                 TEXT,
7217     create_time          TIMESTAMPTZ       NOT NULL DEFAULT now(),
7218     CONSTRAINT logical_key UNIQUE( funding_source, org, fund_code ),
7219     CONSTRAINT percentage_range CHECK( percent >= 0 AND percent <= 100 )
7220 );
7221
7222 -- Trigger function to validate combination of org_unit and fund_code
7223
7224 CREATE OR REPLACE FUNCTION acq.fund_alloc_percent_val()
7225 RETURNS TRIGGER AS $$
7226 --
7227 DECLARE
7228 --
7229 dummy int := 0;
7230 --
7231 BEGIN
7232     SELECT
7233         1
7234     INTO
7235         dummy
7236     FROM
7237         acq.fund
7238     WHERE
7239         org = NEW.org
7240         AND code = NEW.fund_code
7241         LIMIT 1;
7242     --
7243     IF dummy = 1 then
7244         RETURN NEW;
7245     ELSE
7246         RAISE EXCEPTION 'No fund exists for org % and code %', NEW.org, NEW.fund_code;
7247     END IF;
7248 END;
7249 $$ LANGUAGE plpgsql;
7250
7251 CREATE TRIGGER acq_fund_alloc_percent_val_trig
7252     BEFORE INSERT OR UPDATE ON acq.fund_allocation_percent
7253     FOR EACH ROW EXECUTE PROCEDURE acq.fund_alloc_percent_val();
7254
7255 CREATE OR REPLACE FUNCTION acq.fap_limit_100()
7256 RETURNS TRIGGER AS $$
7257 DECLARE
7258 --
7259 total_percent numeric;
7260 --
7261 BEGIN
7262     SELECT
7263         sum( percent )
7264     INTO
7265         total_percent
7266     FROM
7267         acq.fund_allocation_percent AS fap
7268     WHERE
7269         fap.funding_source = NEW.funding_source;
7270     --
7271     IF total_percent > 100 THEN
7272         RAISE EXCEPTION 'Total percentages exceed 100 for funding_source %',
7273             NEW.funding_source;
7274     ELSE
7275         RETURN NEW;
7276     END IF;
7277 END;
7278 $$ LANGUAGE plpgsql;
7279
7280 CREATE TRIGGER acqfap_limit_100_trig
7281     AFTER INSERT OR UPDATE ON acq.fund_allocation_percent
7282     FOR EACH ROW EXECUTE PROCEDURE acq.fap_limit_100();
7283
7284 -- Populate new table from acq.fund_allocation
7285
7286 INSERT INTO acq.fund_allocation_percent
7287 (
7288     funding_source,
7289     org,
7290     fund_code,
7291     percent,
7292     allocator,
7293     note,
7294     create_time
7295 )
7296     SELECT
7297         fa.funding_source,
7298         fund.org,
7299         fund.code,
7300         fa.percent,
7301         fa.allocator,
7302         fa.note,
7303         fa.create_time
7304     FROM
7305         acq.fund_allocation AS fa
7306             INNER JOIN acq.fund AS fund
7307                 ON ( fa.fund = fund.id )
7308     WHERE
7309         fa.percent is not null
7310     ORDER BY
7311         fund.org;
7312
7313 -- Temporary function to convert percentages to amounts in acq.fund_allocation
7314
7315 -- Algorithm to apply to each funding source:
7316
7317 -- 1. Add up the credits.
7318 -- 2. Add up the percentages.
7319 -- 3. Multiply the sum of the percentages times the sum of the credits.  Drop any
7320 --    fractional cents from the result.  This is the total amount to be allocated.
7321 -- 4. For each allocation: multiply the percentage by the total allocation.  Drop any
7322 --    fractional cents to get a preliminary amount.
7323 -- 5. Add up the preliminary amounts for all the allocations.
7324 -- 6. Subtract the results of step 5 from the result of step 3.  The difference is the
7325 --    number of residual cents (resulting from having dropped fractional cents) that
7326 --    must be distributed across the funds in order to make the total of the amounts
7327 --    match the total allocation.
7328 -- 7. Make a second pass through the allocations, in decreasing order of the fractional
7329 --    cents that were dropped from their amounts in step 4.  Add one cent to the amount
7330 --    for each successive fund, until all the residual cents have been exhausted.
7331
7332 -- Result: the sum of the individual allocations now equals the total to be allocated,
7333 -- to the penny.  The individual amounts match the percentages as closely as possible,
7334 -- given the constraint that the total must match.
7335
7336 CREATE OR REPLACE FUNCTION acq.apply_percents()
7337 RETURNS VOID AS $$
7338 declare
7339 --
7340 tot              RECORD;
7341 fund             RECORD;
7342 tot_cents        INTEGER;
7343 src              INTEGER;
7344 id               INTEGER[];
7345 curr_id          INTEGER;
7346 pennies          NUMERIC[];
7347 curr_amount      NUMERIC;
7348 i                INTEGER;
7349 total_of_floors  INTEGER;
7350 total_percent    NUMERIC;
7351 total_allocation INTEGER;
7352 residue          INTEGER;
7353 --
7354 begin
7355         RAISE NOTICE 'Applying percents';
7356         FOR tot IN
7357                 SELECT
7358                         fsrc.funding_source,
7359                         sum( fsrc.amount ) AS total
7360                 FROM
7361                         acq.funding_source_credit AS fsrc
7362                 WHERE fsrc.funding_source IN
7363                         ( SELECT DISTINCT fa.funding_source
7364                           FROM acq.fund_allocation AS fa
7365                           WHERE fa.percent IS NOT NULL )
7366                 GROUP BY
7367                         fsrc.funding_source
7368         LOOP
7369                 tot_cents = floor( tot.total * 100 );
7370                 src = tot.funding_source;
7371                 RAISE NOTICE 'Funding source % total %',
7372                         src, tot_cents;
7373                 i := 0;
7374                 total_of_floors := 0;
7375                 total_percent := 0;
7376                 --
7377                 FOR fund in
7378                         SELECT
7379                                 fa.id,
7380                                 fa.percent,
7381                                 floor( fa.percent * tot_cents / 100 ) as floor_pennies
7382                         FROM
7383                                 acq.fund_allocation AS fa
7384                         WHERE
7385                                 fa.funding_source = src
7386                                 AND fa.percent IS NOT NULL
7387                         ORDER BY
7388                                 mod( fa.percent * tot_cents / 100, 1 ),
7389                                 fa.fund,
7390                                 fa.id
7391                 LOOP
7392                         RAISE NOTICE '   %: %',
7393                                 fund.id,
7394                                 fund.floor_pennies;
7395                         i := i + 1;
7396                         id[i] = fund.id;
7397                         pennies[i] = fund.floor_pennies;
7398                         total_percent := total_percent + fund.percent;
7399                         total_of_floors := total_of_floors + pennies[i];
7400                 END LOOP;
7401                 total_allocation := floor( total_percent * tot_cents /100 );
7402                 RAISE NOTICE 'Total before distributing residue: %', total_of_floors;
7403                 residue := total_allocation - total_of_floors;
7404                 RAISE NOTICE 'Residue: %', residue;
7405                 --
7406                 -- Post the calculated amounts, revising as needed to
7407                 -- distribute the rounding error
7408                 --
7409                 WHILE i > 0 LOOP
7410                         IF residue > 0 THEN
7411                                 pennies[i] = pennies[i] + 1;
7412                                 residue := residue - 1;
7413                         END IF;
7414                         --
7415                         -- Post amount
7416                         --
7417                         curr_id     := id[i];
7418                         curr_amount := trunc( pennies[i] / 100, 2 );
7419                         --
7420                         UPDATE
7421                                 acq.fund_allocation AS fa
7422                         SET
7423                                 amount = curr_amount,
7424                                 percent = NULL
7425                         WHERE
7426                                 fa.id = curr_id;
7427                         --
7428                         RAISE NOTICE '   ID % and amount %',
7429                                 curr_id,
7430                                 curr_amount;
7431                         i = i - 1;
7432                 END LOOP;
7433         END LOOP;
7434 end;
7435 $$ LANGUAGE 'plpgsql';
7436
7437 -- Run the temporary function
7438
7439 select * from acq.apply_percents();
7440
7441 -- Drop the temporary function now that we're done with it
7442
7443 DROP FUNCTION IF EXISTS acq.apply_percents();
7444
7445 -- Eliminate acq.fund_allocation.percent, which has been moved to the acq.fund_allocation_percent table.
7446
7447 -- If the following step fails, it's probably because there are still some non-null percent values in
7448 -- acq.fund_allocation.  They should have all been converted to amounts, and then set to null, by a
7449 -- previous upgrade step based on 0049.schema.acq_funding_allocation_percent.sql.  If there are any
7450 -- non-null values, then either that step didn't run, or it didn't work, or some non-null values
7451 -- slipped in afterwards.
7452
7453 -- To convert any remaining percents to amounts: create, run, and then drop the temporary stored
7454 -- procedure acq.apply_percents() as defined above.
7455
7456 ALTER TABLE acq.fund_allocation
7457 ALTER COLUMN amount SET NOT NULL;
7458
7459 CREATE OR REPLACE VIEW acq.fund_allocation_total AS
7460     SELECT  fund,
7461             SUM(a.amount * acq.exchange_ratio(s.currency_type, f.currency_type))::NUMERIC(100,2) AS amount
7462     FROM acq.fund_allocation a
7463          JOIN acq.fund f ON (a.fund = f.id)
7464          JOIN acq.funding_source s ON (a.funding_source = s.id)
7465     GROUP BY 1;
7466
7467 CREATE OR REPLACE VIEW acq.funding_source_allocation_total AS
7468     SELECT  funding_source,
7469             SUM(a.amount)::NUMERIC(100,2) AS amount
7470     FROM  acq.fund_allocation a
7471     GROUP BY 1;
7472
7473 ALTER TABLE acq.fund_allocation
7474 DROP COLUMN percent;
7475
7476 CREATE TABLE asset.copy_location_order
7477 (
7478         id              SERIAL           PRIMARY KEY,
7479         location        INT              NOT NULL
7480                                              REFERENCES asset.copy_location
7481                                              ON DELETE CASCADE
7482                                              DEFERRABLE INITIALLY DEFERRED,
7483         org             INT              NOT NULL
7484                                              REFERENCES actor.org_unit
7485                                              ON DELETE CASCADE
7486                                              DEFERRABLE INITIALLY DEFERRED,
7487         position        INT              NOT NULL DEFAULT 0,
7488         CONSTRAINT acplo_once_per_org UNIQUE ( location, org )
7489 );
7490
7491 ALTER TABLE money.credit_card_payment ADD COLUMN cc_processor TEXT;
7492
7493 -- If you ran this before its most recent incarnation:
7494 -- delete from config.upgrade_log where version = '0328';
7495 -- alter table money.credit_card_payment drop column cc_name;
7496
7497 ALTER TABLE money.credit_card_payment ADD COLUMN cc_first_name TEXT;
7498 ALTER TABLE money.credit_card_payment ADD COLUMN cc_last_name TEXT;
7499
7500 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$
7501 DECLARE
7502     current_group    permission.grp_tree%ROWTYPE;
7503     user_object    actor.usr%ROWTYPE;
7504     item_object    asset.copy%ROWTYPE;
7505     cn_object    asset.call_number%ROWTYPE;
7506     rec_descriptor    metabib.rec_descriptor%ROWTYPE;
7507     current_mp    config.circ_matrix_matchpoint%ROWTYPE;
7508     matchpoint    config.circ_matrix_matchpoint%ROWTYPE;
7509 BEGIN
7510     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7511     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7512     SELECT INTO cn_object * FROM asset.call_number WHERE id = item_object.call_number;
7513     SELECT INTO rec_descriptor r.* FROM metabib.rec_descriptor r JOIN asset.call_number c USING (record) WHERE c.id = item_object.call_number;
7514     SELECT INTO current_group * FROM permission.grp_tree WHERE id = user_object.profile;
7515
7516     LOOP 
7517         -- for each potential matchpoint for this ou and group ...
7518         FOR current_mp IN
7519             SELECT  m.*
7520               FROM  config.circ_matrix_matchpoint m
7521                     JOIN actor.org_unit_ancestors( context_ou ) d ON (m.org_unit = d.id)
7522                     LEFT JOIN actor.org_unit_proximity p ON (p.from_org = context_ou AND p.to_org = d.id)
7523               WHERE m.grp = current_group.id
7524                     AND m.active
7525                     AND (m.copy_owning_lib IS NULL OR cn_object.owning_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_owning_lib) ))
7526                     AND (m.copy_circ_lib   IS NULL OR item_object.circ_lib IN ( SELECT id FROM actor.org_unit_descendants(m.copy_circ_lib)   ))
7527               ORDER BY    CASE WHEN p.prox        IS NULL THEN 999 ELSE p.prox END,
7528                     CASE WHEN m.copy_owning_lib IS NOT NULL
7529                         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 )
7530                         ELSE 0
7531                     END +
7532                     CASE WHEN m.copy_circ_lib IS NOT NULL
7533                         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 )
7534                         ELSE 0
7535                     END +
7536                     CASE WHEN m.is_renewal = renewal        THEN 128 ELSE 0 END +
7537                     CASE WHEN m.juvenile_flag    IS NOT NULL THEN 64 ELSE 0 END +
7538                     CASE WHEN m.circ_modifier    IS NOT NULL THEN 32 ELSE 0 END +
7539                     CASE WHEN m.marc_type        IS NOT NULL THEN 16 ELSE 0 END +
7540                     CASE WHEN m.marc_form        IS NOT NULL THEN 8 ELSE 0 END +
7541                     CASE WHEN m.marc_vr_format    IS NOT NULL THEN 4 ELSE 0 END +
7542                     CASE WHEN m.ref_flag        IS NOT NULL THEN 2 ELSE 0 END +
7543                     CASE WHEN m.usr_age_lower_bound    IS NOT NULL THEN 0.5 ELSE 0 END +
7544                     CASE WHEN m.usr_age_upper_bound    IS NOT NULL THEN 0.5 ELSE 0 END DESC LOOP
7545
7546             IF current_mp.is_renewal IS NOT NULL THEN
7547                 CONTINUE WHEN current_mp.is_renewal <> renewal;
7548             END IF;
7549
7550             IF current_mp.circ_modifier IS NOT NULL THEN
7551                 CONTINUE WHEN current_mp.circ_modifier <> item_object.circ_modifier OR item_object.circ_modifier IS NULL;
7552             END IF;
7553
7554             IF current_mp.marc_type IS NOT NULL THEN
7555                 IF item_object.circ_as_type IS NOT NULL THEN
7556                     CONTINUE WHEN current_mp.marc_type <> item_object.circ_as_type;
7557                 ELSE
7558                     CONTINUE WHEN current_mp.marc_type <> rec_descriptor.item_type;
7559                 END IF;
7560             END IF;
7561
7562             IF current_mp.marc_form IS NOT NULL THEN
7563                 CONTINUE WHEN current_mp.marc_form <> rec_descriptor.item_form;
7564             END IF;
7565
7566             IF current_mp.marc_vr_format IS NOT NULL THEN
7567                 CONTINUE WHEN current_mp.marc_vr_format <> rec_descriptor.vr_format;
7568             END IF;
7569
7570             IF current_mp.ref_flag IS NOT NULL THEN
7571                 CONTINUE WHEN current_mp.ref_flag <> item_object.ref;
7572             END IF;
7573
7574             IF current_mp.juvenile_flag IS NOT NULL THEN
7575                 CONTINUE WHEN current_mp.juvenile_flag <> user_object.juvenile;
7576             END IF;
7577
7578             IF current_mp.usr_age_lower_bound IS NOT NULL THEN
7579                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_lower_bound < age(user_object.dob);
7580             END IF;
7581
7582             IF current_mp.usr_age_upper_bound IS NOT NULL THEN
7583                 CONTINUE WHEN user_object.dob IS NULL OR current_mp.usr_age_upper_bound > age(user_object.dob);
7584             END IF;
7585
7586
7587             -- everything was undefined or matched
7588             matchpoint = current_mp;
7589
7590             EXIT WHEN matchpoint.id IS NOT NULL;
7591         END LOOP;
7592
7593         EXIT WHEN current_group.parent IS NULL OR matchpoint.id IS NOT NULL;
7594
7595         SELECT INTO current_group * FROM permission.grp_tree WHERE id = current_group.parent;
7596     END LOOP;
7597
7598     RETURN matchpoint;
7599 END;
7600 $func$ LANGUAGE plpgsql;
7601
7602 CREATE TYPE action.hold_stats AS (
7603     hold_count              INT,
7604     copy_count              INT,
7605     available_count         INT,
7606     total_copy_ratio        FLOAT,
7607     available_copy_ratio    FLOAT
7608 );
7609
7610 CREATE OR REPLACE FUNCTION action.copy_related_hold_stats (copy_id INT) RETURNS action.hold_stats AS $func$
7611 DECLARE
7612     output          action.hold_stats%ROWTYPE;
7613     hold_count      INT := 0;
7614     copy_count      INT := 0;
7615     available_count INT := 0;
7616     hold_map_data   RECORD;
7617 BEGIN
7618
7619     output.hold_count := 0;
7620     output.copy_count := 0;
7621     output.available_count := 0;
7622
7623     SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
7624       FROM  action.hold_copy_map m
7625             JOIN action.hold_request h ON (m.hold = h.id)
7626       WHERE m.target_copy = copy_id
7627             AND NOT h.frozen;
7628
7629     output.hold_count := hold_count;
7630
7631     IF output.hold_count > 0 THEN
7632         FOR hold_map_data IN
7633             SELECT  DISTINCT m.target_copy,
7634                     acp.status
7635               FROM  action.hold_copy_map m
7636                     JOIN asset.copy acp ON (m.target_copy = acp.id)
7637                     JOIN action.hold_request h ON (m.hold = h.id)
7638               WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
7639         LOOP
7640             output.copy_count := output.copy_count + 1;
7641             IF hold_map_data.status IN (0,7,12) THEN
7642                 output.available_count := output.available_count + 1;
7643             END IF;
7644         END LOOP;
7645         output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
7646         output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
7647
7648     END IF;
7649
7650     RETURN output;
7651
7652 END;
7653 $func$ LANGUAGE PLPGSQL;
7654
7655 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN total_copy_hold_ratio FLOAT;
7656 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN available_copy_hold_ratio FLOAT;
7657
7658 ALTER TABLE config.circ_matrix_matchpoint DROP CONSTRAINT ep_once_per_grp_loc_mod_marc;
7659
7660 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_circ_lib   INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7661 ALTER TABLE config.circ_matrix_matchpoint ADD COLUMN copy_owning_lib INT REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED;
7662
7663 ALTER TABLE config.circ_matrix_matchpoint ADD CONSTRAINT ep_once_per_grp_loc_mod_marc UNIQUE (
7664     grp, org_unit, circ_modifier, marc_type, marc_form, marc_vr_format, ref_flag,
7665     juvenile_flag, usr_age_lower_bound, usr_age_upper_bound, is_renewal, copy_circ_lib,
7666     copy_owning_lib
7667 );
7668
7669 -- Return the correct fail_part when the item can't be found
7670 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$
7671 DECLARE
7672     user_object        actor.usr%ROWTYPE;
7673     standing_penalty    config.standing_penalty%ROWTYPE;
7674     item_object        asset.copy%ROWTYPE;
7675     item_status_object    config.copy_status%ROWTYPE;
7676     item_location_object    asset.copy_location%ROWTYPE;
7677     result            action.matrix_test_result;
7678     circ_test        config.circ_matrix_matchpoint%ROWTYPE;
7679     out_by_circ_mod        config.circ_matrix_circ_mod_test%ROWTYPE;
7680     circ_mod_map        config.circ_matrix_circ_mod_test_map%ROWTYPE;
7681     hold_ratio          action.hold_stats%ROWTYPE;
7682     penalty_type         TEXT;
7683     tmp_grp         INT;
7684     items_out        INT;
7685     context_org_list        INT[];
7686     done            BOOL := FALSE;
7687 BEGIN
7688     result.success := TRUE;
7689
7690     -- Fail if the user is BARRED
7691     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
7692
7693     -- Fail if we couldn't find the user 
7694     IF user_object.id IS NULL THEN
7695         result.fail_part := 'no_user';
7696         result.success := FALSE;
7697         done := TRUE;
7698         RETURN NEXT result;
7699         RETURN;
7700     END IF;
7701
7702     SELECT INTO item_object * FROM asset.copy WHERE id = match_item;
7703
7704     -- Fail if we couldn't find the item 
7705     IF item_object.id IS NULL THEN
7706         result.fail_part := 'no_item';
7707         result.success := FALSE;
7708         done := TRUE;
7709         RETURN NEXT result;
7710         RETURN;
7711     END IF;
7712
7713     SELECT INTO circ_test * FROM action.find_circ_matrix_matchpoint(circ_ou, match_item, match_user, renewal);
7714     result.matchpoint := circ_test.id;
7715
7716     -- Fail if we couldn't find a matchpoint
7717     IF result.matchpoint IS NULL THEN
7718         result.fail_part := 'no_matchpoint';
7719         result.success := FALSE;
7720         done := TRUE;
7721         RETURN NEXT result;
7722     END IF;
7723
7724     IF user_object.barred IS TRUE THEN
7725         result.fail_part := 'actor.usr.barred';
7726         result.success := FALSE;
7727         done := TRUE;
7728         RETURN NEXT result;
7729     END IF;
7730
7731     -- Fail if the item can't circulate
7732     IF item_object.circulate IS FALSE THEN
7733         result.fail_part := 'asset.copy.circulate';
7734         result.success := FALSE;
7735         done := TRUE;
7736         RETURN NEXT result;
7737     END IF;
7738
7739     -- Fail if the item isn't in a circulateable status on a non-renewal
7740     IF NOT renewal AND item_object.status NOT IN ( 0, 7, 8 ) THEN
7741         result.fail_part := 'asset.copy.status';
7742         result.success := FALSE;
7743         done := TRUE;
7744         RETURN NEXT result;
7745     ELSIF renewal AND item_object.status <> 1 THEN
7746         result.fail_part := 'asset.copy.status';
7747         result.success := FALSE;
7748         done := TRUE;
7749         RETURN NEXT result;
7750     END IF;
7751
7752     -- Fail if the item can't circulate because of the shelving location
7753     SELECT INTO item_location_object * FROM asset.copy_location WHERE id = item_object.location;
7754     IF item_location_object.circulate IS FALSE THEN
7755         result.fail_part := 'asset.copy_location.circulate';
7756         result.success := FALSE;
7757         done := TRUE;
7758         RETURN NEXT result;
7759     END IF;
7760
7761     SELECT INTO context_org_list ARRAY_ACCUM(id) FROM actor.org_unit_full_path( circ_test.org_unit );
7762
7763     -- Fail if the test is set to hard non-circulating
7764     IF circ_test.circulate IS FALSE THEN
7765         result.fail_part := 'config.circ_matrix_test.circulate';
7766         result.success := FALSE;
7767         done := TRUE;
7768         RETURN NEXT result;
7769     END IF;
7770
7771     -- Fail if the total copy-hold ratio is too low
7772     IF circ_test.total_copy_hold_ratio IS NOT NULL THEN
7773         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
7774         IF hold_ratio.total_copy_ratio IS NOT NULL AND hold_ratio.total_copy_ratio < circ_test.total_copy_hold_ratio THEN
7775             result.fail_part := 'config.circ_matrix_test.total_copy_hold_ratio';
7776             result.success := FALSE;
7777             done := TRUE;
7778             RETURN NEXT result;
7779         END IF;
7780     END IF;
7781
7782     -- Fail if the available copy-hold ratio is too low
7783     IF circ_test.available_copy_hold_ratio IS NOT NULL THEN
7784         SELECT INTO hold_ratio * FROM action.copy_related_hold_stats(match_item);
7785         IF hold_ratio.available_copy_ratio IS NOT NULL AND hold_ratio.available_copy_ratio < circ_test.available_copy_hold_ratio THEN
7786             result.fail_part := 'config.circ_matrix_test.available_copy_hold_ratio';
7787             result.success := FALSE;
7788             done := TRUE;
7789             RETURN NEXT result;
7790         END IF;
7791     END IF;
7792
7793     IF renewal THEN
7794         penalty_type = '%RENEW%';
7795     ELSE
7796         penalty_type = '%CIRC%';
7797     END IF;
7798
7799     FOR standing_penalty IN
7800         SELECT  DISTINCT csp.*
7801           FROM  actor.usr_standing_penalty usp
7802                 JOIN config.standing_penalty csp ON (csp.id = usp.standing_penalty)
7803           WHERE usr = match_user
7804                 AND usp.org_unit IN ( SELECT * FROM explode_array(context_org_list) )
7805                 AND (usp.stop_date IS NULL or usp.stop_date > NOW())
7806                 AND csp.block_list LIKE penalty_type LOOP
7807
7808         result.fail_part := standing_penalty.name;
7809         result.success := FALSE;
7810         done := TRUE;
7811         RETURN NEXT result;
7812     END LOOP;
7813
7814     -- Fail if the user has too many items with specific circ_modifiers checked out
7815     FOR out_by_circ_mod IN SELECT * FROM config.circ_matrix_circ_mod_test WHERE matchpoint = circ_test.id LOOP
7816         SELECT  INTO items_out COUNT(*)
7817           FROM  action.circulation circ
7818             JOIN asset.copy cp ON (cp.id = circ.target_copy)
7819           WHERE circ.usr = match_user
7820                AND circ.circ_lib IN ( SELECT * FROM explode_array(context_org_list) )
7821             AND circ.checkin_time IS NULL
7822             AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL)
7823             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);
7824         IF items_out >= out_by_circ_mod.items_out THEN
7825             result.fail_part := 'config.circ_matrix_circ_mod_test';
7826             result.success := FALSE;
7827             done := TRUE;
7828             RETURN NEXT result;
7829         END IF;
7830     END LOOP;
7831
7832     -- If we passed everything, return the successful matchpoint id
7833     IF NOT done THEN
7834         RETURN NEXT result;
7835     END IF;
7836
7837     RETURN;
7838 END;
7839 $func$ LANGUAGE plpgsql;
7840
7841 CREATE TABLE config.remote_account (
7842     id          SERIAL  PRIMARY KEY,
7843     label       TEXT    NOT NULL,
7844     host        TEXT    NOT NULL,   -- name or IP, :port optional
7845     username    TEXT,               -- optional, since we could default to $USER
7846     password    TEXT,               -- optional, since we could use SSH keys, or anonymous login.
7847     account     TEXT,               -- aka profile or FTP "account" command
7848     path        TEXT,               -- aka directory
7849     owner       INT     NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
7850     last_activity TIMESTAMP WITH TIME ZONE
7851 );
7852
7853 CREATE TABLE acq.edi_account (      -- similar tables can extend remote_account for other parts of EG
7854     provider    INT     NOT NULL REFERENCES acq.provider          (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
7855     in_dir      TEXT,   -- incoming messages dir (probably different than config.remote_account.path, the outgoing dir)
7856         vendcode    TEXT,
7857         vendacct    TEXT
7858
7859 ) INHERITS (config.remote_account);
7860
7861 ALTER TABLE acq.edi_account ADD PRIMARY KEY (id);
7862
7863 CREATE TABLE acq.claim_type (
7864         id             SERIAL           PRIMARY KEY,
7865         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
7866                                                  DEFERRABLE INITIALLY DEFERRED,
7867         code           TEXT             NOT NULL,
7868         description    TEXT             NOT NULL,
7869         CONSTRAINT claim_type_once_per_org UNIQUE ( org_unit, code )
7870 );
7871
7872 CREATE TABLE acq.claim (
7873         id             SERIAL           PRIMARY KEY,
7874         type           INT              NOT NULL REFERENCES acq.claim_type
7875                                                  DEFERRABLE INITIALLY DEFERRED,
7876         lineitem_detail BIGINT          NOT NULL REFERENCES acq.lineitem_detail
7877                                                  DEFERRABLE INITIALLY DEFERRED
7878 );
7879
7880 CREATE TABLE acq.claim_policy (
7881         id              SERIAL       PRIMARY KEY,
7882         org_unit        INT          NOT NULL REFERENCES actor.org_unit
7883                                      DEFERRABLE INITIALLY DEFERRED,
7884         name            TEXT         NOT NULL,
7885         description     TEXT         NOT NULL,
7886         CONSTRAINT name_once_per_org UNIQUE (org_unit, name)
7887 );
7888
7889 -- Add a san column for EDI. 
7890 -- See: http://isbn.org/standards/home/isbn/us/san/san-qa.asp
7891
7892 ALTER TABLE acq.provider ADD COLUMN san INT;
7893
7894 ALTER TABLE acq.provider ALTER COLUMN san TYPE TEXT USING lpad(text(san), 7, '0');
7895
7896 -- null edi_default is OK... it has to be, since we have no values in acq.edi_account yet
7897 ALTER TABLE acq.provider ADD COLUMN edi_default INT REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
7898
7899 ALTER TABLE acq.provider
7900         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
7901
7902 ALTER TABLE acq.provider
7903         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
7904
7905 ALTER TABLE acq.provider
7906         ADD COLUMN url TEXT;
7907
7908 ALTER TABLE acq.provider
7909         ADD COLUMN email TEXT;
7910
7911 ALTER TABLE acq.provider
7912         ADD COLUMN phone TEXT;
7913
7914 ALTER TABLE acq.provider
7915         ADD COLUMN fax_phone TEXT;
7916
7917 ALTER TABLE acq.provider
7918         ADD COLUMN default_claim_policy INT
7919                 REFERENCES acq.claim_policy
7920                 DEFERRABLE INITIALLY DEFERRED;
7921
7922 ALTER TABLE action.transit_copy
7923 ADD COLUMN prev_dest INTEGER REFERENCES actor.org_unit( id )
7924                                                          DEFERRABLE INITIALLY DEFERRED;
7925
7926 DROP SCHEMA IF EXISTS booking CASCADE;
7927
7928 CREATE SCHEMA booking;
7929
7930 CREATE TABLE booking.resource_type (
7931         id             SERIAL          PRIMARY KEY,
7932         name           TEXT            NOT NULL,
7933         fine_interval  INTERVAL,
7934         fine_amount    DECIMAL(8,2)    NOT NULL DEFAULT 0,
7935         owner          INT             NOT NULL
7936                                        REFERENCES actor.org_unit( id )
7937                                        DEFERRABLE INITIALLY DEFERRED,
7938         catalog_item   BOOLEAN         NOT NULL DEFAULT FALSE,
7939         transferable   BOOLEAN         NOT NULL DEFAULT FALSE,
7940     record         BIGINT          REFERENCES biblio.record_entry (id)
7941                                        DEFERRABLE INITIALLY DEFERRED,
7942     max_fine       NUMERIC(8,2),
7943     elbow_room     INTERVAL,
7944     CONSTRAINT brt_name_or_record_once_per_owner UNIQUE(owner, name, record)
7945 );
7946
7947 CREATE TABLE booking.resource (
7948         id             SERIAL           PRIMARY KEY,
7949         owner          INT              NOT NULL
7950                                         REFERENCES actor.org_unit(id)
7951                                         DEFERRABLE INITIALLY DEFERRED,
7952         type           INT              NOT NULL
7953                                         REFERENCES booking.resource_type(id)
7954                                         DEFERRABLE INITIALLY DEFERRED,
7955         overbook       BOOLEAN          NOT NULL DEFAULT FALSE,
7956         barcode        TEXT             NOT NULL,
7957         deposit        BOOLEAN          NOT NULL DEFAULT FALSE,
7958         deposit_amount DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
7959         user_fee       DECIMAL(8,2)     NOT NULL DEFAULT 0.00,
7960         CONSTRAINT br_unique UNIQUE (owner, barcode)
7961 );
7962
7963 -- For non-catalog items: hijack barcode for name/description
7964
7965 CREATE TABLE booking.resource_attr (
7966         id              SERIAL          PRIMARY KEY,
7967         owner           INT             NOT NULL
7968                                         REFERENCES actor.org_unit(id)
7969                                         DEFERRABLE INITIALLY DEFERRED,
7970         name            TEXT            NOT NULL,
7971         resource_type   INT             NOT NULL
7972                                         REFERENCES booking.resource_type(id)
7973                                         ON DELETE CASCADE
7974                                         DEFERRABLE INITIALLY DEFERRED,
7975         required        BOOLEAN         NOT NULL DEFAULT FALSE,
7976         CONSTRAINT bra_name_once_per_type UNIQUE(resource_type, name)
7977 );
7978
7979 CREATE TABLE booking.resource_attr_value (
7980         id               SERIAL         PRIMARY KEY,
7981         owner            INT            NOT NULL
7982                                         REFERENCES actor.org_unit(id)
7983                                         DEFERRABLE INITIALLY DEFERRED,
7984         attr             INT            NOT NULL
7985                                         REFERENCES booking.resource_attr(id)
7986                                         DEFERRABLE INITIALLY DEFERRED,
7987         valid_value      TEXT           NOT NULL,
7988         CONSTRAINT brav_logical_key UNIQUE(owner, attr, valid_value)
7989 );
7990
7991 CREATE TABLE booking.resource_attr_map (
7992         id               SERIAL         PRIMARY KEY,
7993         resource         INT            NOT NULL
7994                                         REFERENCES booking.resource(id)
7995                                         ON DELETE CASCADE
7996                                         DEFERRABLE INITIALLY DEFERRED,
7997         resource_attr    INT            NOT NULL
7998                                         REFERENCES booking.resource_attr(id)
7999                                         ON DELETE CASCADE
8000                                         DEFERRABLE INITIALLY DEFERRED,
8001         value            INT            NOT NULL
8002                                         REFERENCES booking.resource_attr_value(id)
8003                                         DEFERRABLE INITIALLY DEFERRED,
8004         CONSTRAINT bram_one_value_per_attr UNIQUE(resource, resource_attr)
8005 );
8006
8007 CREATE TABLE booking.reservation (
8008         request_time     TIMESTAMPTZ   NOT NULL DEFAULT now(),
8009         start_time       TIMESTAMPTZ,
8010         end_time         TIMESTAMPTZ,
8011         capture_time     TIMESTAMPTZ,
8012         cancel_time      TIMESTAMPTZ,
8013         pickup_time      TIMESTAMPTZ,
8014         return_time      TIMESTAMPTZ,
8015         booking_interval INTERVAL,
8016         fine_interval    INTERVAL,
8017         fine_amount      DECIMAL(8,2),
8018         target_resource_type  INT       NOT NULL
8019                                         REFERENCES booking.resource_type(id)
8020                                         ON DELETE CASCADE
8021                                         DEFERRABLE INITIALLY DEFERRED,
8022         target_resource  INT            REFERENCES booking.resource(id)
8023                                         ON DELETE CASCADE
8024                                         DEFERRABLE INITIALLY DEFERRED,
8025         current_resource INT            REFERENCES booking.resource(id)
8026                                         ON DELETE CASCADE
8027                                         DEFERRABLE INITIALLY DEFERRED,
8028         request_lib      INT            NOT NULL
8029                                         REFERENCES actor.org_unit(id)
8030                                         DEFERRABLE INITIALLY DEFERRED,
8031         pickup_lib       INT            REFERENCES actor.org_unit(id)
8032                                         DEFERRABLE INITIALLY DEFERRED,
8033         capture_staff    INT            REFERENCES actor.usr(id)
8034                                         DEFERRABLE INITIALLY DEFERRED,
8035     max_fine         NUMERIC(8,2)
8036 ) INHERITS (money.billable_xact);
8037
8038 ALTER TABLE booking.reservation ADD PRIMARY KEY (id);
8039
8040 ALTER TABLE booking.reservation
8041         ADD CONSTRAINT booking_reservation_usr_fkey
8042         FOREIGN KEY (usr) REFERENCES actor.usr (id)
8043         DEFERRABLE INITIALLY DEFERRED;
8044
8045 CREATE TABLE booking.reservation_attr_value_map (
8046         id               SERIAL         PRIMARY KEY,
8047         reservation      INT            NOT NULL
8048                                         REFERENCES booking.reservation(id)
8049                                         ON DELETE CASCADE
8050                                         DEFERRABLE INITIALLY DEFERRED,
8051         attr_value       INT            NOT NULL
8052                                         REFERENCES booking.resource_attr_value(id)
8053                                         ON DELETE CASCADE
8054                                         DEFERRABLE INITIALLY DEFERRED,
8055         CONSTRAINT bravm_logical_key UNIQUE(reservation, attr_value)
8056 );
8057
8058 -- represents a circ chain summary
8059 CREATE TYPE action.circ_chain_summary AS (
8060     num_circs INTEGER,
8061     start_time TIMESTAMP WITH TIME ZONE,
8062     checkout_workstation TEXT,
8063     last_renewal_time TIMESTAMP WITH TIME ZONE, -- NULL if no renewals
8064     last_stop_fines TEXT,
8065     last_stop_fines_time TIMESTAMP WITH TIME ZONE,
8066     last_renewal_workstation TEXT, -- NULL if no renewals
8067     last_checkin_workstation TEXT,
8068     last_checkin_time TIMESTAMP WITH TIME ZONE,
8069     last_checkin_scan_time TIMESTAMP WITH TIME ZONE
8070 );
8071
8072 CREATE OR REPLACE FUNCTION action.circ_chain ( ctx_circ_id INTEGER ) RETURNS SETOF action.circulation AS $$
8073 DECLARE
8074     tmp_circ action.circulation%ROWTYPE;
8075     circ_0 action.circulation%ROWTYPE;
8076 BEGIN
8077
8078     SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id;
8079
8080     IF tmp_circ IS NULL THEN
8081         RETURN NEXT tmp_circ;
8082     END IF;
8083     circ_0 := tmp_circ;
8084
8085     -- find the front of the chain
8086     WHILE TRUE LOOP
8087         SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ;
8088         IF tmp_circ IS NULL THEN
8089             EXIT;
8090         END IF;
8091         circ_0 := tmp_circ;
8092     END LOOP;
8093
8094     -- now send the circs to the caller, oldest to newest
8095     tmp_circ := circ_0;
8096     WHILE TRUE LOOP
8097         IF tmp_circ IS NULL THEN
8098             EXIT;
8099         END IF;
8100         RETURN NEXT tmp_circ;
8101         SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id;
8102     END LOOP;
8103
8104 END;
8105 $$ LANGUAGE 'plpgsql';
8106
8107 CREATE OR REPLACE FUNCTION action.summarize_circ_chain ( ctx_circ_id INTEGER ) RETURNS action.circ_chain_summary AS $$
8108
8109 DECLARE
8110
8111     -- first circ in the chain
8112     circ_0 action.circulation%ROWTYPE;
8113
8114     -- last circ in the chain
8115     circ_n action.circulation%ROWTYPE;
8116
8117     -- circ chain under construction
8118     chain action.circ_chain_summary;
8119     tmp_circ action.circulation%ROWTYPE;
8120
8121 BEGIN
8122     
8123     chain.num_circs := 0;
8124     FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP
8125
8126         IF chain.num_circs = 0 THEN
8127             circ_0 := tmp_circ;
8128         END IF;
8129
8130         chain.num_circs := chain.num_circs + 1;
8131         circ_n := tmp_circ;
8132     END LOOP;
8133
8134     chain.start_time := circ_0.xact_start;
8135     chain.last_stop_fines := circ_n.stop_fines;
8136     chain.last_stop_fines_time := circ_n.stop_fines_time;
8137     chain.last_checkin_time := circ_n.checkin_time;
8138     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
8139     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
8140     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
8141
8142     IF chain.num_circs > 1 THEN
8143         chain.last_renewal_time := circ_n.xact_start;
8144         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
8145     END IF;
8146
8147     RETURN chain;
8148
8149 END;
8150 $$ LANGUAGE 'plpgsql';
8151
8152 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('reservation');
8153 CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update ();
8154 CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON booking.reservation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete ();
8155
8156 ALTER TABLE config.standing_penalty
8157         ADD COLUMN org_depth   INTEGER;
8158
8159 CREATE OR REPLACE FUNCTION actor.calculate_system_penalties( match_user INT, context_org INT ) RETURNS SETOF actor.usr_standing_penalty AS $func$
8160 DECLARE
8161     user_object         actor.usr%ROWTYPE;
8162     new_sp_row          actor.usr_standing_penalty%ROWTYPE;
8163     existing_sp_row     actor.usr_standing_penalty%ROWTYPE;
8164     collections_fines   permission.grp_penalty_threshold%ROWTYPE;
8165     max_fines           permission.grp_penalty_threshold%ROWTYPE;
8166     max_overdue         permission.grp_penalty_threshold%ROWTYPE;
8167     max_items_out       permission.grp_penalty_threshold%ROWTYPE;
8168     tmp_grp             INT;
8169     items_overdue       INT;
8170     items_out           INT;
8171     context_org_list    INT[];
8172     current_fines        NUMERIC(8,2) := 0.0;
8173     tmp_fines            NUMERIC(8,2);
8174     tmp_groc            RECORD;
8175     tmp_circ            RECORD;
8176     tmp_org             actor.org_unit%ROWTYPE;
8177     tmp_penalty         config.standing_penalty%ROWTYPE;
8178     tmp_depth           INTEGER;
8179 BEGIN
8180     SELECT INTO user_object * FROM actor.usr WHERE id = match_user;
8181
8182     -- Max fines
8183     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8184
8185     -- Fail if the user has a high fine balance
8186     LOOP
8187         tmp_grp := user_object.profile;
8188         LOOP
8189             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 1 AND org_unit = tmp_org.id;
8190
8191             IF max_fines.threshold IS NULL THEN
8192                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8193             ELSE
8194                 EXIT;
8195             END IF;
8196
8197             IF tmp_grp IS NULL THEN
8198                 EXIT;
8199             END IF;
8200         END LOOP;
8201
8202         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8203             EXIT;
8204         END IF;
8205
8206         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8207
8208     END LOOP;
8209
8210     IF max_fines.threshold IS NOT NULL THEN
8211
8212         FOR existing_sp_row IN
8213                 SELECT  *
8214                   FROM  actor.usr_standing_penalty
8215                   WHERE usr = match_user
8216                         AND org_unit = max_fines.org_unit
8217                         AND (stop_date IS NULL or stop_date > NOW())
8218                         AND standing_penalty = 1
8219                 LOOP
8220             RETURN NEXT existing_sp_row;
8221         END LOOP;
8222
8223         SELECT  SUM(f.balance_owed) INTO current_fines
8224           FROM  money.materialized_billable_xact_summary f
8225                 JOIN (
8226                     SELECT  r.id
8227                       FROM  booking.reservation r
8228                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8229                       WHERE usr = match_user
8230                             AND xact_finish IS NULL
8231                                 UNION ALL
8232                     SELECT  g.id
8233                       FROM  money.grocery g
8234                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8235                       WHERE usr = match_user
8236                             AND xact_finish IS NULL
8237                                 UNION ALL
8238                     SELECT  circ.id
8239                       FROM  action.circulation circ
8240                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8241                       WHERE usr = match_user
8242                             AND xact_finish IS NULL ) l USING (id);
8243
8244         IF current_fines >= max_fines.threshold THEN
8245             new_sp_row.usr := match_user;
8246             new_sp_row.org_unit := max_fines.org_unit;
8247             new_sp_row.standing_penalty := 1;
8248             RETURN NEXT new_sp_row;
8249         END IF;
8250     END IF;
8251
8252     -- Start over for max overdue
8253     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8254
8255     -- Fail if the user has too many overdue items
8256     LOOP
8257         tmp_grp := user_object.profile;
8258         LOOP
8259
8260             SELECT * INTO max_overdue FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 2 AND org_unit = tmp_org.id;
8261
8262             IF max_overdue.threshold IS NULL THEN
8263                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8264             ELSE
8265                 EXIT;
8266             END IF;
8267
8268             IF tmp_grp IS NULL THEN
8269                 EXIT;
8270             END IF;
8271         END LOOP;
8272
8273         IF max_overdue.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8274             EXIT;
8275         END IF;
8276
8277         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8278
8279     END LOOP;
8280
8281     IF max_overdue.threshold IS NOT NULL THEN
8282
8283         FOR existing_sp_row IN
8284                 SELECT  *
8285                   FROM  actor.usr_standing_penalty
8286                   WHERE usr = match_user
8287                         AND org_unit = max_overdue.org_unit
8288                         AND (stop_date IS NULL or stop_date > NOW())
8289                         AND standing_penalty = 2
8290                 LOOP
8291             RETURN NEXT existing_sp_row;
8292         END LOOP;
8293
8294         SELECT  INTO items_overdue COUNT(*)
8295           FROM  action.circulation circ
8296                 JOIN  actor.org_unit_full_path( max_overdue.org_unit ) fp ON (circ.circ_lib = fp.id)
8297           WHERE circ.usr = match_user
8298             AND circ.checkin_time IS NULL
8299             AND circ.due_date < NOW()
8300             AND (circ.stop_fines = 'MAXFINES' OR circ.stop_fines IS NULL);
8301
8302         IF items_overdue >= max_overdue.threshold::INT THEN
8303             new_sp_row.usr := match_user;
8304             new_sp_row.org_unit := max_overdue.org_unit;
8305             new_sp_row.standing_penalty := 2;
8306             RETURN NEXT new_sp_row;
8307         END IF;
8308     END IF;
8309
8310     -- Start over for max out
8311     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8312
8313     -- Fail if the user has too many checked out items
8314     LOOP
8315         tmp_grp := user_object.profile;
8316         LOOP
8317             SELECT * INTO max_items_out FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 3 AND org_unit = tmp_org.id;
8318
8319             IF max_items_out.threshold IS NULL THEN
8320                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8321             ELSE
8322                 EXIT;
8323             END IF;
8324
8325             IF tmp_grp IS NULL THEN
8326                 EXIT;
8327             END IF;
8328         END LOOP;
8329
8330         IF max_items_out.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8331             EXIT;
8332         END IF;
8333
8334         SELECT INTO tmp_org * FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8335
8336     END LOOP;
8337
8338
8339     -- Fail if the user has too many items checked out
8340     IF max_items_out.threshold IS NOT NULL THEN
8341
8342         FOR existing_sp_row IN
8343                 SELECT  *
8344                   FROM  actor.usr_standing_penalty
8345                   WHERE usr = match_user
8346                         AND org_unit = max_items_out.org_unit
8347                         AND (stop_date IS NULL or stop_date > NOW())
8348                         AND standing_penalty = 3
8349                 LOOP
8350             RETURN NEXT existing_sp_row;
8351         END LOOP;
8352
8353         SELECT  INTO items_out COUNT(*)
8354           FROM  action.circulation circ
8355                 JOIN  actor.org_unit_full_path( max_items_out.org_unit ) fp ON (circ.circ_lib = fp.id)
8356           WHERE circ.usr = match_user
8357                 AND circ.checkin_time IS NULL
8358                 AND (circ.stop_fines IN ('MAXFINES','LONGOVERDUE') OR circ.stop_fines IS NULL);
8359
8360            IF items_out >= max_items_out.threshold::INT THEN
8361             new_sp_row.usr := match_user;
8362             new_sp_row.org_unit := max_items_out.org_unit;
8363             new_sp_row.standing_penalty := 3;
8364             RETURN NEXT new_sp_row;
8365            END IF;
8366     END IF;
8367
8368     -- Start over for collections warning
8369     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8370
8371     -- Fail if the user has a collections-level fine balance
8372     LOOP
8373         tmp_grp := user_object.profile;
8374         LOOP
8375             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 4 AND org_unit = tmp_org.id;
8376
8377             IF max_fines.threshold IS NULL THEN
8378                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8379             ELSE
8380                 EXIT;
8381             END IF;
8382
8383             IF tmp_grp IS NULL THEN
8384                 EXIT;
8385             END IF;
8386         END LOOP;
8387
8388         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8389             EXIT;
8390         END IF;
8391
8392         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8393
8394     END LOOP;
8395
8396     IF max_fines.threshold IS NOT NULL THEN
8397
8398         FOR existing_sp_row IN
8399                 SELECT  *
8400                   FROM  actor.usr_standing_penalty
8401                   WHERE usr = match_user
8402                         AND org_unit = max_fines.org_unit
8403                         AND (stop_date IS NULL or stop_date > NOW())
8404                         AND standing_penalty = 4
8405                 LOOP
8406             RETURN NEXT existing_sp_row;
8407         END LOOP;
8408
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 >= max_fines.threshold THEN
8431             new_sp_row.usr := match_user;
8432             new_sp_row.org_unit := max_fines.org_unit;
8433             new_sp_row.standing_penalty := 4;
8434             RETURN NEXT new_sp_row;
8435         END IF;
8436     END IF;
8437
8438     -- Start over for in collections
8439     SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8440
8441     -- Remove the in-collections penalty if the user has paid down enough
8442     -- This penalty is different, because this code is not responsible for creating 
8443     -- new in-collections penalties, only for removing them
8444     LOOP
8445         tmp_grp := user_object.profile;
8446         LOOP
8447             SELECT * INTO max_fines FROM permission.grp_penalty_threshold WHERE grp = tmp_grp AND penalty = 30 AND org_unit = tmp_org.id;
8448
8449             IF max_fines.threshold IS NULL THEN
8450                 SELECT parent INTO tmp_grp FROM permission.grp_tree WHERE id = tmp_grp;
8451             ELSE
8452                 EXIT;
8453             END IF;
8454
8455             IF tmp_grp IS NULL THEN
8456                 EXIT;
8457             END IF;
8458         END LOOP;
8459
8460         IF max_fines.threshold IS NOT NULL OR tmp_org.parent_ou IS NULL THEN
8461             EXIT;
8462         END IF;
8463
8464         SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8465
8466     END LOOP;
8467
8468     IF max_fines.threshold IS NOT NULL THEN
8469
8470         -- first, see if the user had paid down to the threshold
8471         SELECT  SUM(f.balance_owed) INTO current_fines
8472           FROM  money.materialized_billable_xact_summary f
8473                 JOIN (
8474                     SELECT  r.id
8475                       FROM  booking.reservation r
8476                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (r.pickup_lib = fp.id)
8477                       WHERE usr = match_user
8478                             AND xact_finish IS NULL
8479                                 UNION ALL
8480                     SELECT  g.id
8481                       FROM  money.grocery g
8482                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (g.billing_location = fp.id)
8483                       WHERE usr = match_user
8484                             AND xact_finish IS NULL
8485                                 UNION ALL
8486                     SELECT  circ.id
8487                       FROM  action.circulation circ
8488                             JOIN  actor.org_unit_full_path( max_fines.org_unit ) fp ON (circ.circ_lib = fp.id)
8489                       WHERE usr = match_user
8490                             AND xact_finish IS NULL ) l USING (id);
8491
8492         IF current_fines IS NULL OR current_fines <= max_fines.threshold THEN
8493             -- patron has paid down enough
8494
8495             SELECT INTO tmp_penalty * FROM config.standing_penalty WHERE id = 30;
8496
8497             IF tmp_penalty.org_depth IS NOT NULL THEN
8498
8499                 -- since this code is not responsible for applying the penalty, it can't 
8500                 -- guarantee the current context org will match the org at which the penalty 
8501                 --- was applied.  search up the org tree until we hit the configured penalty depth
8502                 SELECT INTO tmp_org * FROM actor.org_unit WHERE id = context_org;
8503                 SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8504
8505                 WHILE tmp_depth >= tmp_penalty.org_depth LOOP
8506
8507                     FOR existing_sp_row IN
8508                             SELECT  *
8509                             FROM  actor.usr_standing_penalty
8510                             WHERE usr = match_user
8511                                     AND org_unit = tmp_org.id
8512                                     AND (stop_date IS NULL or stop_date > NOW())
8513                                     AND standing_penalty = 30 
8514                             LOOP
8515
8516                         -- Penalty exists, return it for removal
8517                         RETURN NEXT existing_sp_row;
8518                     END LOOP;
8519
8520                     IF tmp_org.parent_ou IS NULL THEN
8521                         EXIT;
8522                     END IF;
8523
8524                     SELECT * INTO tmp_org FROM actor.org_unit WHERE id = tmp_org.parent_ou;
8525                     SELECT INTO tmp_depth depth FROM actor.org_unit_type WHERE id = tmp_org.ou_type;
8526                 END LOOP;
8527
8528             ELSE
8529
8530                 -- no penalty depth is defined, look for exact matches
8531
8532                 FOR existing_sp_row IN
8533                         SELECT  *
8534                         FROM  actor.usr_standing_penalty
8535                         WHERE usr = match_user
8536                                 AND org_unit = max_fines.org_unit
8537                                 AND (stop_date IS NULL or stop_date > NOW())
8538                                 AND standing_penalty = 30 
8539                         LOOP
8540                     -- Penalty exists, return it for removal
8541                     RETURN NEXT existing_sp_row;
8542                 END LOOP;
8543             END IF;
8544     
8545         END IF;
8546
8547     END IF;
8548
8549     RETURN;
8550 END;
8551 $func$ LANGUAGE plpgsql;
8552
8553 -- Create a default row in acq.fiscal_calendar
8554 -- Add a column in actor.org_unit to point to it
8555
8556 INSERT INTO acq.fiscal_calendar ( id, name ) VALUES ( 1, 'Default' );
8557
8558 ALTER TABLE actor.org_unit
8559 ADD COLUMN fiscal_calendar INT NOT NULL
8560         REFERENCES acq.fiscal_calendar( id )
8561         DEFERRABLE INITIALLY DEFERRED
8562         DEFAULT 1;
8563
8564 ALTER TABLE auditor.actor_org_unit_history
8565         ADD COLUMN fiscal_calendar INT;
8566
8567 DROP VIEW auditor.actor_org_unit_lifecycle;
8568
8569 SELECT auditor.create_auditor_lifecycle( 'actor', 'org_unit' );
8570
8571 ALTER TABLE acq.funding_source_credit
8572 ADD COLUMN deadline_date TIMESTAMPTZ;
8573
8574 ALTER TABLE acq.funding_source_credit
8575 ADD COLUMN effective_date TIMESTAMPTZ NOT NULL DEFAULT now();
8576
8577 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS','Patron has been referred to a collections agency');
8578
8579 CREATE TABLE acq.fund_transfer (
8580         id               SERIAL         PRIMARY KEY,
8581         src_fund         INT            NOT NULL REFERENCES acq.fund( id )
8582                                         DEFERRABLE INITIALLY DEFERRED,
8583         src_amount       NUMERIC        NOT NULL,
8584         dest_fund        INT            REFERENCES acq.fund( id )
8585                                         DEFERRABLE INITIALLY DEFERRED,
8586         dest_amount      NUMERIC,
8587         transfer_time    TIMESTAMPTZ    NOT NULL DEFAULT now(),
8588         transfer_user    INT            NOT NULL REFERENCES actor.usr( id )
8589                                         DEFERRABLE INITIALLY DEFERRED,
8590         note             TEXT,
8591     funding_source_credit INTEGER   NOT NULL
8592                                         REFERENCES acq.funding_source_credit(id)
8593                                         DEFERRABLE INITIALLY DEFERRED
8594 );
8595
8596 CREATE INDEX acqftr_usr_idx
8597 ON acq.fund_transfer( transfer_user );
8598
8599 COMMENT ON TABLE acq.fund_transfer IS $$
8600 /*
8601  * Copyright (C) 2009  Georgia Public Library Service
8602  * Scott McKellar <scott@esilibrary.com>
8603  *
8604  * Fund Transfer
8605  *
8606  * Each row represents the transfer of money from a source fund
8607  * to a destination fund.  There should be corresponding entries
8608  * in acq.fund_allocation.  The purpose of acq.fund_transfer is
8609  * to record how much money moved from which fund to which other
8610  * fund.
8611  * 
8612  * The presence of two amount fields, rather than one, reflects
8613  * the possibility that the two funds are denominated in different
8614  * currencies.  If they use the same currency type, the two
8615  * amounts should be the same.
8616  *
8617  * ****
8618  *
8619  * This program is free software; you can redistribute it and/or
8620  * modify it under the terms of the GNU General Public License
8621  * as published by the Free Software Foundation; either version 2
8622  * of the License, or (at your option) any later version.
8623  *
8624  * This program is distributed in the hope that it will be useful,
8625  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8626  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8627  * GNU General Public License for more details.
8628  */
8629 $$;
8630
8631 CREATE TABLE acq.claim_event_type (
8632         id             SERIAL           PRIMARY KEY,
8633         org_unit       INT              NOT NULL REFERENCES actor.org_unit(id)
8634                                                  DEFERRABLE INITIALLY DEFERRED,
8635         code           TEXT             NOT NULL,
8636         description    TEXT             NOT NULL,
8637         library_initiated BOOL          NOT NULL DEFAULT FALSE,
8638         CONSTRAINT event_type_once_per_org UNIQUE ( org_unit, code )
8639 );
8640
8641 CREATE TABLE acq.claim_event (
8642         id             BIGSERIAL        PRIMARY KEY,
8643         type           INT              NOT NULL REFERENCES acq.claim_event_type
8644                                                  DEFERRABLE INITIALLY DEFERRED,
8645         claim          SERIAL           NOT NULL REFERENCES acq.claim
8646                                                  DEFERRABLE INITIALLY DEFERRED,
8647         event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
8648         creator        INT              NOT NULL REFERENCES actor.usr
8649                                                  DEFERRABLE INITIALLY DEFERRED,
8650         note           TEXT
8651 );
8652
8653 CREATE INDEX claim_event_claim_date_idx ON acq.claim_event( claim, event_date );
8654
8655 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
8656         src_usr  IN INTEGER,
8657         dest_usr IN INTEGER
8658 ) RETURNS VOID AS $$
8659 DECLARE
8660         suffix TEXT;
8661         renamable_row RECORD;
8662 BEGIN
8663
8664         UPDATE actor.usr SET
8665                 active = FALSE,
8666                 card = NULL,
8667                 mailing_address = NULL,
8668                 billing_address = NULL
8669         WHERE id = src_usr;
8670
8671         -- acq.*
8672         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
8673         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
8674         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
8675         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
8676         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
8677         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
8678         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
8679
8680         -- Update with a rename to avoid collisions
8681         FOR renamable_row in
8682                 SELECT id, name
8683                 FROM   acq.picklist
8684                 WHERE  owner = src_usr
8685         LOOP
8686                 suffix := ' (' || src_usr || ')';
8687                 LOOP
8688                         BEGIN
8689                                 UPDATE  acq.picklist
8690                                 SET     owner = dest_usr, name = name || suffix
8691                                 WHERE   id = renamable_row.id;
8692                         EXCEPTION WHEN unique_violation THEN
8693                                 suffix := suffix || ' ';
8694                                 CONTINUE;
8695                         END;
8696                         EXIT;
8697                 END LOOP;
8698         END LOOP;
8699
8700         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
8701         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
8702         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
8703         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
8704         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
8705         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
8706         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
8707         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
8708
8709         -- action.*
8710         DELETE FROM action.circulation WHERE usr = src_usr;
8711         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
8712         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
8713         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
8714         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
8715         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
8716         DELETE FROM action.hold_request WHERE usr = src_usr;
8717         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
8718         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
8719         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
8720         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
8721         DELETE FROM action.survey_response WHERE usr = src_usr;
8722         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
8723
8724         -- actor.*
8725         DELETE FROM actor.card WHERE usr = src_usr;
8726         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
8727
8728         -- The following update is intended to avoid transient violations of a foreign
8729         -- key constraint, whereby actor.usr_address references itself.  It may not be
8730         -- necessary, but it does no harm.
8731         UPDATE actor.usr_address SET replaces = NULL
8732                 WHERE usr = src_usr AND replaces IS NOT NULL;
8733         DELETE FROM actor.usr_address WHERE usr = src_usr;
8734         DELETE FROM actor.usr_note WHERE usr = src_usr;
8735         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
8736         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
8737         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
8738         DELETE FROM actor.usr_setting WHERE usr = src_usr;
8739         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
8740         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
8741
8742         -- asset.*
8743         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
8744         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
8745         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
8746         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
8747         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
8748         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
8749
8750         -- auditor.*
8751         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
8752         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
8753         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
8754         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
8755         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
8756         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
8757         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
8758         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
8759
8760         -- biblio.*
8761         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
8762         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
8763         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
8764         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
8765
8766         -- container.*
8767         -- Update buckets with a rename to avoid collisions
8768         FOR renamable_row in
8769                 SELECT id, name
8770                 FROM   container.biblio_record_entry_bucket
8771                 WHERE  owner = src_usr
8772         LOOP
8773                 suffix := ' (' || src_usr || ')';
8774                 LOOP
8775                         BEGIN
8776                                 UPDATE  container.biblio_record_entry_bucket
8777                                 SET     owner = dest_usr, name = name || suffix
8778                                 WHERE   id = renamable_row.id;
8779                         EXCEPTION WHEN unique_violation THEN
8780                                 suffix := suffix || ' ';
8781                                 CONTINUE;
8782                         END;
8783                         EXIT;
8784                 END LOOP;
8785         END LOOP;
8786
8787         FOR renamable_row in
8788                 SELECT id, name
8789                 FROM   container.call_number_bucket
8790                 WHERE  owner = src_usr
8791         LOOP
8792                 suffix := ' (' || src_usr || ')';
8793                 LOOP
8794                         BEGIN
8795                                 UPDATE  container.call_number_bucket
8796                                 SET     owner = dest_usr, name = name || suffix
8797                                 WHERE   id = renamable_row.id;
8798                         EXCEPTION WHEN unique_violation THEN
8799                                 suffix := suffix || ' ';
8800                                 CONTINUE;
8801                         END;
8802                         EXIT;
8803                 END LOOP;
8804         END LOOP;
8805
8806         FOR renamable_row in
8807                 SELECT id, name
8808                 FROM   container.copy_bucket
8809                 WHERE  owner = src_usr
8810         LOOP
8811                 suffix := ' (' || src_usr || ')';
8812                 LOOP
8813                         BEGIN
8814                                 UPDATE  container.copy_bucket
8815                                 SET     owner = dest_usr, name = name || suffix
8816                                 WHERE   id = renamable_row.id;
8817                         EXCEPTION WHEN unique_violation THEN
8818                                 suffix := suffix || ' ';
8819                                 CONTINUE;
8820                         END;
8821                         EXIT;
8822                 END LOOP;
8823         END LOOP;
8824
8825         FOR renamable_row in
8826                 SELECT id, name
8827                 FROM   container.user_bucket
8828                 WHERE  owner = src_usr
8829         LOOP
8830                 suffix := ' (' || src_usr || ')';
8831                 LOOP
8832                         BEGIN
8833                                 UPDATE  container.user_bucket
8834                                 SET     owner = dest_usr, name = name || suffix
8835                                 WHERE   id = renamable_row.id;
8836                         EXCEPTION WHEN unique_violation THEN
8837                                 suffix := suffix || ' ';
8838                                 CONTINUE;
8839                         END;
8840                         EXIT;
8841                 END LOOP;
8842         END LOOP;
8843
8844         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
8845
8846         -- money.*
8847         DELETE FROM money.billable_xact WHERE usr = src_usr;
8848         DELETE FROM money.collections_tracker WHERE usr = src_usr;
8849         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
8850
8851         -- permission.*
8852         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
8853         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
8854         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
8855         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
8856
8857         -- reporter.*
8858         -- Update with a rename to avoid collisions
8859         BEGIN
8860                 FOR renamable_row in
8861                         SELECT id, name
8862                         FROM   reporter.output_folder
8863                         WHERE  owner = src_usr
8864                 LOOP
8865                         suffix := ' (' || src_usr || ')';
8866                         LOOP
8867                                 BEGIN
8868                                         UPDATE  reporter.output_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         BEGIN
8883                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
8884         EXCEPTION WHEN undefined_table THEN
8885                 -- do nothing
8886         END;
8887
8888         -- Update with a rename to avoid collisions
8889         BEGIN
8890                 FOR renamable_row in
8891                         SELECT id, name
8892                         FROM   reporter.report_folder
8893                         WHERE  owner = src_usr
8894                 LOOP
8895                         suffix := ' (' || src_usr || ')';
8896                         LOOP
8897                                 BEGIN
8898                                         UPDATE  reporter.report_folder
8899                                         SET     owner = dest_usr, name = name || suffix
8900                                         WHERE   id = renamable_row.id;
8901                                 EXCEPTION WHEN unique_violation THEN
8902                                         suffix := suffix || ' ';
8903                                         CONTINUE;
8904                                 END;
8905                                 EXIT;
8906                         END LOOP;
8907                 END LOOP;
8908         EXCEPTION WHEN undefined_table THEN
8909                 -- do nothing
8910         END;
8911
8912         BEGIN
8913                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
8914         EXCEPTION WHEN undefined_table THEN
8915                 -- do nothing
8916         END;
8917
8918         BEGIN
8919                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
8920         EXCEPTION WHEN undefined_table THEN
8921                 -- do nothing
8922         END;
8923
8924         -- Update with a rename to avoid collisions
8925         BEGIN
8926                 FOR renamable_row in
8927                         SELECT id, name
8928                         FROM   reporter.template_folder
8929                         WHERE  owner = src_usr
8930                 LOOP
8931                         suffix := ' (' || src_usr || ')';
8932                         LOOP
8933                                 BEGIN
8934                                         UPDATE  reporter.template_folder
8935                                         SET     owner = dest_usr, name = name || suffix
8936                                         WHERE   id = renamable_row.id;
8937                                 EXCEPTION WHEN unique_violation THEN
8938                                         suffix := suffix || ' ';
8939                                         CONTINUE;
8940                                 END;
8941                                 EXIT;
8942                         END LOOP;
8943                 END LOOP;
8944         EXCEPTION WHEN undefined_table THEN
8945         -- do nothing
8946         END;
8947
8948         -- vandelay.*
8949         -- Update with a rename to avoid collisions
8950         FOR renamable_row in
8951                 SELECT id, name
8952                 FROM   vandelay.queue
8953                 WHERE  owner = src_usr
8954         LOOP
8955                 suffix := ' (' || src_usr || ')';
8956                 LOOP
8957                         BEGIN
8958                                 UPDATE  vandelay.queue
8959                                 SET     owner = dest_usr, name = name || suffix
8960                                 WHERE   id = renamable_row.id;
8961                         EXCEPTION WHEN unique_violation THEN
8962                                 suffix := suffix || ' ';
8963                                 CONTINUE;
8964                         END;
8965                         EXIT;
8966                 END LOOP;
8967         END LOOP;
8968
8969 END;
8970 $$ LANGUAGE plpgsql;
8971
8972 -- INSERT INTO config.copy_status (id,name) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'));
8973
8974 ALTER TABLE acq.fund
8975 ADD COLUMN rollover BOOL NOT NULL DEFAULT FALSE;
8976
8977 ALTER TABLE acq.fund
8978         ADD COLUMN propagate BOOLEAN NOT NULL DEFAULT TRUE;
8979
8980 -- A fund can't roll over if it doesn't propagate from one year to the next
8981
8982 ALTER TABLE acq.fund
8983         ADD CONSTRAINT acq_fund_rollover_implies_propagate CHECK
8984         ( propagate OR NOT rollover );
8985
8986 ALTER TABLE acq.fund
8987         ADD COLUMN active BOOL NOT NULL DEFAULT TRUE;
8988
8989 ALTER TABLE acq.fund
8990     ADD COLUMN balance_warning_percent INT
8991     CONSTRAINT balance_warning_percent_limit
8992         CHECK( balance_warning_percent <= 100 );
8993
8994 ALTER TABLE acq.fund
8995     ADD COLUMN balance_stop_percent INT
8996     CONSTRAINT balance_stop_percent_limit
8997         CHECK( balance_stop_percent <= 100 );
8998
8999 CREATE VIEW acq.ordered_funding_source_credit AS
9000         SELECT
9001                 CASE WHEN deadline_date IS NULL THEN
9002                         2
9003                 ELSE
9004                         1
9005                 END AS sort_priority,
9006                 CASE WHEN deadline_date IS NULL THEN
9007                         effective_date
9008                 ELSE
9009                         deadline_date
9010                 END AS sort_date,
9011                 id,
9012                 funding_source,
9013                 amount,
9014                 note
9015         FROM
9016                 acq.funding_source_credit;
9017
9018 COMMENT ON VIEW acq.ordered_funding_source_credit IS $$
9019 /*
9020  * Copyright (C) 2009  Georgia Public Library Service
9021  * Scott McKellar <scott@gmail.com>
9022  *
9023  * The acq.ordered_funding_source_credit view is a prioritized
9024  * ordering of funding source credits.  When ordered by the first
9025  * three columns, this view defines the order in which the various
9026  * credits are to be tapped for spending, subject to the allocations
9027  * in the acq.fund_allocation table.
9028  *
9029  * The first column reflects the principle that we should spend
9030  * money with deadlines before spending money without deadlines.
9031  *
9032  * The second column reflects the principle that we should spend the
9033  * oldest money first.  For money with deadlines, that means that we
9034  * spend first from the credit with the earliest deadline.  For
9035  * money without deadlines, we spend first from the credit with the
9036  * earliest effective date.  
9037  *
9038  * The third column is a tie breaker to ensure a consistent
9039  * ordering.
9040  *
9041  * ****
9042  *
9043  * This program is free software; you can redistribute it and/or
9044  * modify it under the terms of the GNU General Public License
9045  * as published by the Free Software Foundation; either version 2
9046  * of the License, or (at your option) any later version.
9047  *
9048  * This program is distributed in the hope that it will be useful,
9049  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9050  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9051  * GNU General Public License for more details.
9052  */
9053 $$;
9054
9055 CREATE OR REPLACE VIEW money.billable_xact_summary_location_view AS
9056         SELECT * FROM money.materialized_billable_xact_summary;
9057
9058 CREATE TABLE config.marc21_rec_type_map (
9059     code        TEXT    PRIMARY KEY,
9060     type_val    TEXT    NOT NULL,
9061     blvl_val    TEXT    NOT NULL
9062 );
9063
9064 CREATE TABLE config.marc21_ff_pos_map (
9065     id          SERIAL  PRIMARY KEY,
9066     fixed_field TEXT    NOT NULL,
9067     tag         TEXT    NOT NULL,
9068     rec_type    TEXT    NOT NULL,
9069     start_pos   INT     NOT NULL,
9070     length      INT     NOT NULL,
9071     default_val TEXT    NOT NULL DEFAULT ' '
9072 );
9073
9074 CREATE TABLE config.marc21_physical_characteristic_type_map (
9075     ptype_key   TEXT    PRIMARY KEY,
9076     label       TEXT    NOT NULL -- I18N
9077 );
9078
9079 CREATE TABLE config.marc21_physical_characteristic_subfield_map (
9080     id          SERIAL  PRIMARY KEY,
9081     ptype_key   TEXT    NOT NULL REFERENCES config.marc21_physical_characteristic_type_map (ptype_key) ON DELETE CASCADE ON UPDATE CASCADE,
9082     subfield    TEXT    NOT NULL,
9083     start_pos   INT     NOT NULL,
9084     length      INT     NOT NULL,
9085     label       TEXT    NOT NULL -- I18N
9086 );
9087
9088 CREATE TABLE config.marc21_physical_characteristic_value_map (
9089     id              SERIAL  PRIMARY KEY,
9090     value           TEXT    NOT NULL,
9091     ptype_subfield  INT     NOT NULL REFERENCES config.marc21_physical_characteristic_subfield_map (id),
9092     label           TEXT    NOT NULL -- I18N
9093 );
9094
9095 ----------------------------------
9096 -- MARC21 record structure data --
9097 ----------------------------------
9098
9099 -- Record type map
9100 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('BKS','at','acdm');
9101 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SER','a','bsi');
9102 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('VIS','gkro','abcdmsi');
9103 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MIX','p','cdi');
9104 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('MAP','ef','abcdmsi');
9105 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('SCO','cd','abcdmsi');
9106 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('REC','ij','abcdmsi');
9107 INSERT INTO config.marc21_rec_type_map (code, type_val, blvl_val) VALUES ('COM','m','abcdmsi');
9108
9109 ------ Physical Characteristics
9110
9111 -- Map
9112 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('a','Map');
9113 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','b','1','1','SMD');
9114 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Atlas');
9115 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diagram');
9116 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Map');
9117 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Profile');
9118 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Model');
9119 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');
9120 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Section');
9121 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9122 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('y',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'View');
9123 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9124 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','d','3','1','Color');
9125 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');
9126 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9127 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','e','4','1','Physical medium');
9128 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9129 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9130 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9131 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9132 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9133 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9134 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9135 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9136 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');
9137 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');
9138 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');
9139 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');
9140 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9141 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');
9142 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9143 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','f','5','1','Type of reproduction');
9144 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9145 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');
9146 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9147 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9148 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','g','6','1','Production/reproduction details');
9149 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');
9150 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photocopy');
9151 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');
9152 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Film');
9153 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9154 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9155 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('a','h','7','1','Positive/negative');
9156 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9157 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9158 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9159 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');
9160
9161 -- Electronic Resource
9162 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('c','Electronic Resource');
9163 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','b','1','1','SMD');
9164 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');
9165 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');
9166 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');
9167 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');
9168 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');
9169 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');
9170 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');
9171 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');
9172 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Remote');
9173 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9174 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9175 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','d','3','1','Color');
9176 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');
9177 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');
9178 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9179 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');
9180 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9181 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');
9182 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9183 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9184 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','e','4','1','Dimensions');
9185 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.');
9186 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.');
9187 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.');
9188 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.');
9189 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.');
9190 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');
9191 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.');
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 ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'8 in.');
9194 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9195 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','f','5','1','Sound');
9196 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)');
9197 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Sound');
9198 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9199 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','g','6','3','Image bit depth');
9200 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('---',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9201 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('mmm',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multiple');
9202 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');
9203 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','h','9','1','File formats');
9204 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');
9205 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');
9206 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9207 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','i','10','1','Quality assurance target(s)');
9208 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Absent');
9209 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');
9210 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Present');
9211 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9212 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','j','11','1','Antecedent/Source');
9213 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');
9214 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');
9215 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');
9216 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)');
9217 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9218 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9219 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9220 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','k','12','1','Level of compression');
9221 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncompressed');
9222 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossless');
9223 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Lossy');
9224 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9225 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9226 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('c','l','13','1','Reformatting quality');
9227 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Access');
9228 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');
9229 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Preservation');
9230 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Replacement');
9231 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9232
9233 -- Globe
9234 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('d','Globe');
9235 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','b','1','1','SMD');
9236 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');
9237 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');
9238 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');
9239 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');
9240 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
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 ('d','d','3','1','Color');
9243 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');
9244 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9245 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','e','4','1','Physical medium');
9246 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9247 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9248 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9249 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9250 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9251 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9252 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9253 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9254 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9255 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9256 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('d','f','5','1','Type of reproduction');
9257 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Facsimile');
9258 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');
9259 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9260 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9261
9262 -- Tactile Material
9263 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('f','Tactile Material');
9264 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','b','1','1','SMD');
9265 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Moon');
9266 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Braille');
9267 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9268 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');
9269 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9270 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9271 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','d','3','2','Class of braille writing');
9272 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');
9273 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');
9274 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');
9275 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');
9276 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');
9277 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');
9278 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');
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_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9281 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','e','4','1','Level of contraction');
9282 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Uncontracted');
9283 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Contracted');
9284 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combination');
9285 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');
9286 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9287 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9288 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','f','6','3','Braille music format');
9289 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');
9290 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');
9291 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');
9292 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paragraph');
9293 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');
9294 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');
9295 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');
9296 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');
9297 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');
9298 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');
9299 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outline');
9300 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');
9301 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');
9302 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9303 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9304 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('f','g','9','1','Special physical characteristics');
9305 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');
9306 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');
9307 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');
9308 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
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
9311 -- Projected Graphic
9312 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('g','Projected Graphic');
9313 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','b','1','1','SMD');
9314 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');
9315 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Filmstrip');
9316 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');
9317 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');
9318 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Slide');
9319 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Transparency');
9320 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9321 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','d','3','1','Color');
9322 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');
9323 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9324 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');
9325 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9326 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');
9327 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9328 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9329 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','e','4','1','Base of emulsion');
9330 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9331 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9332 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');
9333 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');
9334 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');
9335 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9336 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9337 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9338 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');
9339 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');
9340 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');
9341 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9342 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','g','6','1','Medium for sound');
9343 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');
9344 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');
9345 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');
9346 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');
9347 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');
9348 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');
9349 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');
9350 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9351 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9352 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9353 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9354 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('g','h','7','1','Dimensions');
9355 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.');
9356 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.');
9357 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.');
9358 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.');
9359 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.');
9360 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.');
9361 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.');
9362 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.)');
9363 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.)');
9364 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.)');
9365 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.)');
9366 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9367 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.)');
9368 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.)');
9369 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.)');
9370 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.)');
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 ('g','i','8','1','Secondary support material');
9373 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cardboard');
9374 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9375 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9376 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'metal');
9377 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');
9378 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');
9379 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');
9380 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9381 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9382
9383 -- Microform
9384 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('h','Microform');
9385 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','b','1','1','SMD');
9386 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');
9387 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');
9388 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');
9389 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');
9390 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microfiche');
9391 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');
9392 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Microopaque');
9393 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9394 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9395 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','d','3','1','Positive/negative');
9396 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Positive');
9397 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Negative');
9398 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9399 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9400 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','e','4','1','Dimensions');
9401 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.');
9402 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.');
9403 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.');
9404 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'70mm.');
9405 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.');
9406 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.)');
9407 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.)');
9408 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.)');
9409 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.)');
9410 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9411 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9412 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');
9413 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)');
9414 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)');
9415 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)');
9416 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)');
9417 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-)');
9418 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9419 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');
9420 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','g','9','1','Color');
9421 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');
9422 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9423 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9424 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9425 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9426 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','h','10','1','Emulsion on film');
9427 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');
9428 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Diazo');
9429 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vesicular');
9430 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9431 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');
9432 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9433 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9434 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','i','11','1','Quality assurance target(s)');
9435 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');
9436 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');
9437 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');
9438 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');
9439 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9440 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('h','j','12','1','Base of film');
9441 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');
9442 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');
9443 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');
9444 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');
9445 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');
9446 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');
9447 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');
9448 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');
9449 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');
9450 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9451 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9452
9453 -- Non-projected Graphic
9454 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('k','Non-projected Graphic');
9455 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','b','1','1','SMD');
9456 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Collage');
9457 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Drawing');
9458 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Painting');
9459 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');
9460 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photonegative');
9461 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Photoprint');
9462 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Picture');
9463 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('j',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Print');
9464 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');
9465 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Chart');
9466 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');
9467 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9468 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9469 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','d','3','1','Color');
9470 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');
9471 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');
9472 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9473 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');
9474 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9475 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9476 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9477 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','e','4','1','Primary support material');
9478 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9479 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');
9480 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');
9481 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9482 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9483 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9484 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9485 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9486 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');
9487 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9488 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9489 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9490 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9491 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9492 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9493 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9494 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9495 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('k','f','5','1','Secondary support material');
9496 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Canvas');
9497 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');
9498 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');
9499 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Glass');
9500 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Synthetics');
9501 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Skins');
9502 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Textile');
9503 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Metal');
9504 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');
9505 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('o',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Paper');
9506 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('p',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Plaster');
9507 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Hardboard');
9508 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Porcelain');
9509 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stone');
9510 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('t',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Wood');
9511 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9512 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9513
9514 -- Motion Picture
9515 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('m','Motion Picture');
9516 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','b','1','1','SMD');
9517 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');
9518 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');
9519 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');
9520 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9521 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9522 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','d','3','1','Color');
9523 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');
9524 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9525 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');
9526 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9527 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9528 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9529 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','e','4','1','Motion picture presentation format');
9530 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');
9531 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)');
9532 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'3D');
9533 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)');
9534 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');
9535 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');
9536 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9537 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9538 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');
9539 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');
9540 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');
9541 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9542 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','g','6','1','Medium for sound');
9543 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');
9544 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');
9545 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');
9546 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');
9547 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');
9548 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');
9549 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');
9550 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9551 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9552 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9553 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9554 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('m','h','7','1','Dimensions');
9555 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.');
9556 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.');
9557 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.');
9558 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.');
9559 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.');
9560 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.');
9561 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.');
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 ('m','i','8','1','Configuration of playback channels');
9565 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9566 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9567 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');
9568 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');
9569 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
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 ('m','j','9','1','Production elements');
9573 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');
9574 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Trims');
9575 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Outtakes');
9576 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Rushes');
9577 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');
9578 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');
9579 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');
9580 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');
9581 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9582
9583 -- Remote-sensing Image
9584 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('r','Remote-sensing Image');
9585 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','b','1','1','SMD');
9586 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9587 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','d','3','1','Altitude of sensor');
9588 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Surface');
9589 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Airborne');
9590 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Spaceborne');
9591 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('n',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Not applicable');
9592 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9593 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9594 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','e','4','1','Attitude of sensor');
9595 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');
9596 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');
9597 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Vertical');
9598 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');
9599 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9600 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','f','5','1','Cloud cover');
9601 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%');
9602 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%');
9603 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%');
9604 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%');
9605 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%');
9606 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%');
9607 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%');
9608 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%');
9609 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%');
9610 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%');
9611 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');
9612 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9613 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','g','6','1','Platform construction type');
9614 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Balloon');
9615 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');
9616 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');
9617 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');
9618 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');
9619 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');
9620 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');
9621 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');
9622 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');
9623 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');
9624 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9625 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9626 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','h','7','1','Platform use category');
9627 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Meteorological');
9628 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');
9629 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');
9630 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');
9631 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');
9632 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9633 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9634 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','i','8','1','Sensor type');
9635 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Active');
9636 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Passive');
9637 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9638 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9639 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('r','j','9','2','Data type');
9640 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');
9641 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');
9642 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');
9643 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');
9644 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');
9645 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)');
9646 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');
9647 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('dv',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Combinations');
9648 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');
9649 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)');
9650 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)');
9651 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)');
9652 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');
9653 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');
9654 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');
9655 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');
9656 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');
9657 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');
9658 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');
9659 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');
9660 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');
9661 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');
9662 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');
9663 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');
9664 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');
9665 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');
9666 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');
9667 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');
9668 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');
9669 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');
9670 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');
9671 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');
9672 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');
9673 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)');
9674 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');
9675 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rc',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Bouger');
9676 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('rd',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Isostatic');
9677 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');
9678 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');
9679 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('uu',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9680 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('zz',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9681
9682 -- Sound Recording
9683 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('s','Sound Recording');
9684 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','b','1','1','SMD');
9685 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');
9686 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('e',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Cylinder');
9687 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');
9688 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');
9689 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Roll');
9690 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');
9691 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');
9692 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9693 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');
9694 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9695 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','d','3','1','Speed');
9696 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');
9697 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');
9698 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');
9699 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');
9700 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');
9701 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');
9702 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');
9703 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');
9704 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');
9705 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');
9706 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');
9707 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');
9708 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');
9709 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');
9710 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9711 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9712 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','e','4','1','Configuration of playback channels');
9713 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9714 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('q',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadraphonic');
9715 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9716 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9717 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9718 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','f','5','1','Groove width or pitch');
9719 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');
9720 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');
9721 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');
9722 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9723 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9724 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','g','6','1','Dimensions');
9725 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.');
9726 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.');
9727 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.');
9728 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.');
9729 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.');
9730 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.');
9731 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.)');
9732 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.');
9733 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');
9734 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.');
9735 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.');
9736 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9737 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9738 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','h','7','1','Tape width');
9739 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.');
9740 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.');
9741 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');
9742 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.');
9743 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.');
9744 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9745 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9746 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','i','8','1','Tape configuration ');
9747 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');
9748 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');
9749 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');
9750 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');
9751 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');
9752 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');
9753 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');
9754 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9755 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9756 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','m','12','1','Special playback');
9757 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');
9758 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');
9759 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');
9760 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');
9761 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');
9762 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');
9763 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');
9764 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');
9765 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');
9766 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9767 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9768 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('s','n','13','1','Capture and storage');
9769 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');
9770 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');
9771 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');
9772 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');
9773 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9774 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9775
9776 -- Videorecording
9777 INSERT INTO config.marc21_physical_characteristic_type_map (ptype_key, label) VALUES ('v','Videorecording');
9778 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','b','1','1','SMD');
9779 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocartridge');
9780 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9781 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videocassette');
9782 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('r',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videoreel');
9783 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unspecified');
9784 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9785 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','d','3','1','Color');
9786 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');
9787 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('c',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Multicolored');
9788 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9789 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');
9790 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9791 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9792 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','e','4','1','Videorecording format');
9793 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('a',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Beta');
9794 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('b',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'VHS');
9795 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');
9796 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('d',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'EIAJ');
9797 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');
9798 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('f',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Quadruplex');
9799 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('g',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Laserdisc');
9800 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'CED');
9801 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Betacam');
9802 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');
9803 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');
9804 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');
9805 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');
9806 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.');
9807 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.');
9808 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9809 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('v',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'DVD');
9810 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9811 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');
9812 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');
9813 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');
9814 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9815 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','g','6','1','Medium for sound');
9816 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');
9817 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');
9818 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');
9819 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');
9820 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');
9821 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');
9822 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');
9823 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('h',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videotape');
9824 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('i',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Videodisc');
9825 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9826 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9827 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','h','7','1','Dimensions');
9828 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.');
9829 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.');
9830 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.');
9831 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.');
9832 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.');
9833 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.');
9834 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9835 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9836 INSERT INTO config.marc21_physical_characteristic_subfield_map (ptype_key,subfield,start_pos,length,label) VALUES ('v','i','8','1','Configuration of playback channel');
9837 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('k',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Mixed');
9838 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('m',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Monaural');
9839 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');
9840 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');
9841 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('s',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Stereophonic');
9842 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('u',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Unknown');
9843 INSERT INTO config.marc21_physical_characteristic_value_map (value,ptype_subfield,label) VALUES ('z',CURRVAL('config.marc21_physical_characteristic_subfield_map_id_seq'),'Other');
9844
9845 -- Fixed Field position data -- 0-based!
9846 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '006', 'SER', 16, 1, ' ');
9847 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Alph', '008', 'SER', 33, 1, ' ');
9848 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'BKS', 5, 1, ' ');
9849 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'COM', 5, 1, ' ');
9850 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'REC', 5, 1, ' ');
9851 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SCO', 5, 1, ' ');
9852 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'SER', 5, 1, ' ');
9853 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '006', 'VIS', 5, 1, ' ');
9854 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'BKS', 22, 1, ' ');
9855 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'COM', 22, 1, ' ');
9856 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'REC', 22, 1, ' ');
9857 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SCO', 22, 1, ' ');
9858 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'SER', 22, 1, ' ');
9859 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Audn', '008', 'VIS', 22, 1, ' ');
9860 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'BKS', 7, 1, 'm');
9861 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'COM', 7, 1, 'm');
9862 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MAP', 7, 1, 'm');
9863 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'MIX', 7, 1, 'c');
9864 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'REC', 7, 1, 'm');
9865 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SCO', 7, 1, 'm');
9866 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'SER', 7, 1, 's');
9867 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('BLvl', 'ldr', 'VIS', 7, 1, 'm');
9868 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '006', 'BKS', 17, 1, ' ');
9869 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Biog', '008', 'BKS', 34, 1, ' ');
9870 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'BKS', 7, 4, ' ');
9871 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '006', 'SER', 8, 3, ' ');
9872 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'BKS', 24, 4, ' ');
9873 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Conf', '008', 'SER', 25, 3, ' ');
9874 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'BKS', 8, 1, ' ');
9875 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'COM', 8, 1, ' ');
9876 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MAP', 8, 1, ' ');
9877 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'MIX', 8, 1, ' ');
9878 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'REC', 8, 1, ' ');
9879 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SCO', 8, 1, ' ');
9880 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'SER', 8, 1, ' ');
9881 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctrl', 'ldr', 'VIS', 8, 1, ' ');
9882 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'BKS', 15, 3, ' ');
9883 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'COM', 15, 3, ' ');
9884 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MAP', 15, 3, ' ');
9885 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'MIX', 15, 3, ' ');
9886 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'REC', 15, 3, ' ');
9887 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SCO', 15, 3, ' ');
9888 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'SER', 15, 3, ' ');
9889 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ctry', '008', 'VIS', 15, 3, ' ');
9890 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'BKS', 7, 4, ' ');
9891 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'COM', 7, 4, ' ');
9892 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MAP', 7, 4, ' ');
9893 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'MIX', 7, 4, ' ');
9894 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'REC', 7, 4, ' ');
9895 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SCO', 7, 4, ' ');
9896 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'SER', 7, 4, ' ');
9897 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date1', '008', 'VIS', 7, 4, ' ');
9898 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'BKS', 11, 4, ' ');
9899 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'COM', 11, 4, ' ');
9900 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MAP', 11, 4, ' ');
9901 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'MIX', 11, 4, ' ');
9902 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'REC', 11, 4, ' ');
9903 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SCO', 11, 4, ' ');
9904 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'SER', 11, 4, '9');
9905 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Date2', '008', 'VIS', 11, 4, ' ');
9906 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'BKS', 18, 1, ' ');
9907 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'COM', 18, 1, ' ');
9908 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MAP', 18, 1, ' ');
9909 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'MIX', 18, 1, ' ');
9910 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'REC', 18, 1, ' ');
9911 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SCO', 18, 1, ' ');
9912 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'SER', 18, 1, ' ');
9913 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Desc', 'ldr', 'VIS', 18, 1, ' ');
9914 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'BKS', 6, 1, ' ');
9915 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'COM', 6, 1, ' ');
9916 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MAP', 6, 1, ' ');
9917 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'MIX', 6, 1, ' ');
9918 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'REC', 6, 1, ' ');
9919 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SCO', 6, 1, ' ');
9920 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'SER', 6, 1, 'c');
9921 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('DtSt', '008', 'VIS', 6, 1, ' ');
9922 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'BKS', 17, 1, ' ');
9923 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'COM', 17, 1, ' ');
9924 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MAP', 17, 1, ' ');
9925 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'MIX', 17, 1, ' ');
9926 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'REC', 17, 1, ' ');
9927 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SCO', 17, 1, ' ');
9928 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'SER', 17, 1, ' ');
9929 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ELvl', 'ldr', 'VIS', 17, 1, ' ');
9930 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '006', 'BKS', 13, 1, '0');
9931 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Fest', '008', 'BKS', 30, 1, '0');
9932 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'BKS', 6, 1, ' ');
9933 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MAP', 12, 1, ' ');
9934 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'MIX', 6, 1, ' ');
9935 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'REC', 6, 1, ' ');
9936 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SCO', 6, 1, ' ');
9937 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'SER', 6, 1, ' ');
9938 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '006', 'VIS', 12, 1, ' ');
9939 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'BKS', 23, 1, ' ');
9940 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MAP', 29, 1, ' ');
9941 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'MIX', 23, 1, ' ');
9942 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'REC', 23, 1, ' ');
9943 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SCO', 23, 1, ' ');
9944 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'SER', 23, 1, ' ');
9945 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Form', '008', 'VIS', 29, 1, ' ');
9946 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'BKS', 11, 1, ' ');
9947 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'COM', 11, 1, ' ');
9948 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'MAP', 11, 1, ' ');
9949 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'SER', 11, 1, ' ');
9950 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '006', 'VIS', 11, 1, ' ');
9951 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'BKS', 28, 1, ' ');
9952 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'COM', 28, 1, ' ');
9953 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'MAP', 28, 1, ' ');
9954 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'SER', 28, 1, ' ');
9955 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GPub', '008', 'VIS', 28, 1, ' ');
9956 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '006', 'BKS', 1, 4, ' ');
9957 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Ills', '008', 'BKS', 18, 4, ' ');
9958 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'BKS', 14, 1, '0');
9959 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '006', 'MAP', 14, 1, '0');
9960 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'BKS', 31, 1, '0');
9961 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Indx', '008', 'MAP', 31, 1, '0');
9962 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'BKS', 35, 3, ' ');
9963 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'COM', 35, 3, ' ');
9964 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MAP', 35, 3, ' ');
9965 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'MIX', 35, 3, ' ');
9966 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'REC', 35, 3, ' ');
9967 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SCO', 35, 3, ' ');
9968 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'SER', 35, 3, ' ');
9969 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Lang', '008', 'VIS', 35, 3, ' ');
9970 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '006', 'BKS', 16, 1, '0');
9971 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('LitF', '008', 'BKS', 33, 1, '0');
9972 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'BKS', 38, 1, ' ');
9973 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'COM', 38, 1, ' ');
9974 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MAP', 38, 1, ' ');
9975 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'MIX', 38, 1, ' ');
9976 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'REC', 38, 1, ' ');
9977 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SCO', 38, 1, ' ');
9978 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'SER', 38, 1, ' ');
9979 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('MRec', '008', 'VIS', 38, 1, ' ');
9980 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');
9981 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');
9982 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '006', 'VIS', 16, 1, ' ');
9983 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TMat', '008', 'VIS', 33, 1, ' ');
9984 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'BKS', 6, 1, 'a');
9985 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'COM', 6, 1, 'm');
9986 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MAP', 6, 1, 'e');
9987 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'MIX', 6, 1, 'p');
9988 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'REC', 6, 1, 'i');
9989 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SCO', 6, 1, 'c');
9990 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'SER', 6, 1, 'a');
9991 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'VIS', 6, 1, 'g');
9992
9993 CREATE OR REPLACE FUNCTION biblio.marc21_record_type( rid BIGINT ) RETURNS config.marc21_rec_type_map AS $func$
9994 DECLARE
9995         ldr         RECORD;
9996         tval        TEXT;
9997         tval_rec    RECORD;
9998         bval        TEXT;
9999         bval_rec    RECORD;
10000     retval      config.marc21_rec_type_map%ROWTYPE;
10001 BEGIN
10002     SELECT * INTO ldr FROM metabib.full_rec WHERE record = rid AND tag = 'LDR' LIMIT 1;
10003
10004     IF ldr.id IS NULL THEN
10005         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10006         RETURN retval;
10007     END IF;
10008
10009     SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10010     SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10011
10012
10013     tval := SUBSTRING( ldr.value, tval_rec.start_pos + 1, tval_rec.length );
10014     bval := SUBSTRING( ldr.value, bval_rec.start_pos + 1, bval_rec.length );
10015
10016     -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr.value;
10017
10018     SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10019
10020
10021     IF retval.code IS NULL THEN
10022         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
10023     END IF;
10024
10025     RETURN retval;
10026 END;
10027 $func$ LANGUAGE PLPGSQL;
10028
10029 CREATE OR REPLACE FUNCTION biblio.marc21_extract_fixed_field( rid BIGINT, ff TEXT ) RETURNS TEXT AS $func$
10030 DECLARE
10031     rtype       TEXT;
10032     ff_pos      RECORD;
10033     tag_data    RECORD;
10034     val         TEXT;
10035 BEGIN
10036     rtype := (biblio.marc21_record_type( rid )).code;
10037     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP
10038         FOR tag_data IN SELECT * FROM metabib.full_rec WHERE tag = UPPER(ff_pos.tag) AND record = rid LOOP
10039             val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
10040             RETURN val;
10041         END LOOP;
10042         val := REPEAT( ff_pos.default_val, ff_pos.length );
10043         RETURN val;
10044     END LOOP;
10045
10046     RETURN NULL;
10047 END;
10048 $func$ LANGUAGE PLPGSQL;
10049
10050 CREATE TYPE biblio.marc21_physical_characteristics AS ( id INT, record BIGINT, ptype TEXT, subfield INT, value INT );
10051 CREATE OR REPLACE FUNCTION biblio.marc21_physical_characteristics( rid BIGINT ) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
10052 DECLARE
10053     rowid   INT := 0;
10054     _007    RECORD;
10055     ptype   config.marc21_physical_characteristic_type_map%ROWTYPE;
10056     psf     config.marc21_physical_characteristic_subfield_map%ROWTYPE;
10057     pval    config.marc21_physical_characteristic_value_map%ROWTYPE;
10058     retval  biblio.marc21_physical_characteristics%ROWTYPE;
10059 BEGIN
10060
10061     SELECT * INTO _007 FROM metabib.full_rec WHERE record = rid AND tag = '007' LIMIT 1;
10062
10063     IF _007.id IS NOT NULL THEN
10064         SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007.value, 1, 1 );
10065
10066         IF ptype.ptype_key IS NOT NULL THEN
10067             FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP
10068                 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 );
10069
10070                 IF pval.id IS NOT NULL THEN
10071                     rowid := rowid + 1;
10072                     retval.id := rowid;
10073                     retval.record := rid;
10074                     retval.ptype := ptype.ptype_key;
10075                     retval.subfield := psf.id;
10076                     retval.value := pval.id;
10077                     RETURN NEXT retval;
10078                 END IF;
10079
10080             END LOOP;
10081         END IF;
10082     END IF;
10083
10084     RETURN;
10085 END;
10086 $func$ LANGUAGE PLPGSQL;
10087
10088 DROP VIEW IF EXISTS money.open_usr_circulation_summary;
10089 DROP VIEW IF EXISTS money.open_usr_summary;
10090 DROP VIEW IF EXISTS money.open_billable_xact_summary;
10091
10092 -- The view should supply defaults for numeric (amount) columns
10093 CREATE OR REPLACE VIEW money.billable_xact_summary AS
10094     SELECT  xact.id,
10095         xact.usr,
10096         xact.xact_start,
10097         xact.xact_finish,
10098         COALESCE(credit.amount, 0.0::numeric) AS total_paid,
10099         credit.payment_ts AS last_payment_ts,
10100         credit.note AS last_payment_note,
10101         credit.payment_type AS last_payment_type,
10102         COALESCE(debit.amount, 0.0::numeric) AS total_owed,
10103         debit.billing_ts AS last_billing_ts,
10104         debit.note AS last_billing_note,
10105         debit.billing_type AS last_billing_type,
10106         COALESCE(debit.amount, 0.0::numeric) - COALESCE(credit.amount, 0.0::numeric) AS balance_owed,
10107         p.relname AS xact_type
10108       FROM  money.billable_xact xact
10109         JOIN pg_class p ON xact.tableoid = p.oid
10110         LEFT JOIN (
10111             SELECT  billing.xact,
10112                 sum(billing.amount) AS amount,
10113                 max(billing.billing_ts) AS billing_ts,
10114                 last(billing.note) AS note,
10115                 last(billing.billing_type) AS billing_type
10116               FROM  money.billing
10117               WHERE billing.voided IS FALSE
10118               GROUP BY billing.xact
10119             ) debit ON xact.id = debit.xact
10120         LEFT JOIN (
10121             SELECT  payment_view.xact,
10122                 sum(payment_view.amount) AS amount,
10123                 max(payment_view.payment_ts) AS payment_ts,
10124                 last(payment_view.note) AS note,
10125                 last(payment_view.payment_type) AS payment_type
10126               FROM  money.payment_view
10127               WHERE payment_view.voided IS FALSE
10128               GROUP BY payment_view.xact
10129             ) credit ON xact.id = credit.xact
10130       ORDER BY debit.billing_ts, credit.payment_ts;
10131
10132 CREATE OR REPLACE VIEW money.open_billable_xact_summary AS 
10133     SELECT * FROM money.billable_xact_summary_location_view
10134     WHERE xact_finish IS NULL;
10135
10136 CREATE OR REPLACE VIEW money.open_usr_circulation_summary AS
10137     SELECT 
10138         usr,
10139         SUM(total_paid) AS total_paid,
10140         SUM(total_owed) AS total_owed,
10141         SUM(balance_owed) AS balance_owed
10142     FROM  money.materialized_billable_xact_summary
10143     WHERE xact_type = 'circulation' AND xact_finish IS NULL
10144     GROUP BY usr;
10145
10146 CREATE OR REPLACE VIEW money.usr_summary AS
10147     SELECT 
10148         usr, 
10149         sum(total_paid) AS total_paid, 
10150         sum(total_owed) AS total_owed, 
10151         sum(balance_owed) AS balance_owed
10152     FROM money.materialized_billable_xact_summary
10153     GROUP BY usr;
10154
10155 CREATE OR REPLACE VIEW money.open_usr_summary AS
10156     SELECT 
10157         usr, 
10158         sum(total_paid) AS total_paid, 
10159         sum(total_owed) AS total_owed, 
10160         sum(balance_owed) AS balance_owed
10161     FROM money.materialized_billable_xact_summary
10162     WHERE xact_finish IS NULL
10163     GROUP BY usr;
10164
10165 -- 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;
10166
10167 CREATE TABLE config.biblio_fingerprint (
10168         id                      SERIAL  PRIMARY KEY,
10169         name            TEXT    NOT NULL, 
10170         xpath           TEXT    NOT NULL,
10171     first_word  BOOL    NOT NULL DEFAULT FALSE,
10172         format          TEXT    NOT NULL DEFAULT 'marcxml'
10173 );
10174
10175 INSERT INTO config.biblio_fingerprint (name, xpath, format)
10176     VALUES (
10177         'Title',
10178         '//marc:datafield[@tag="700"]/marc:subfield[@code="t"]|' ||
10179             '//marc:datafield[@tag="240"]/marc:subfield[@code="a"]|' ||
10180             '//marc:datafield[@tag="242"]/marc:subfield[@code="a"]|' ||
10181             '//marc:datafield[@tag="246"]/marc:subfield[@code="a"]|' ||
10182             '//marc:datafield[@tag="245"]/marc:subfield[@code="a"]',
10183         'marcxml'
10184     );
10185
10186 INSERT INTO config.biblio_fingerprint (name, xpath, format, first_word)
10187     VALUES (
10188         'Author',
10189         '//marc:datafield[@tag="700" and ./*[@code="t"]]/marc:subfield[@code="a"]|'
10190             '//marc:datafield[@tag="100"]/marc:subfield[@code="a"]|'
10191             '//marc:datafield[@tag="110"]/marc:subfield[@code="a"]|'
10192             '//marc:datafield[@tag="111"]/marc:subfield[@code="a"]|'
10193             '//marc:datafield[@tag="260"]/marc:subfield[@code="b"]',
10194         'marcxml',
10195         TRUE
10196     );
10197
10198 CREATE OR REPLACE FUNCTION biblio.extract_quality ( marc TEXT, best_lang TEXT, best_type TEXT ) RETURNS INT AS $func$
10199 DECLARE
10200     qual        INT;
10201     ldr         TEXT;
10202     tval        TEXT;
10203     tval_rec    RECORD;
10204     bval        TEXT;
10205     bval_rec    RECORD;
10206     type_map    RECORD;
10207     ff_pos      RECORD;
10208     ff_tag_data TEXT;
10209 BEGIN
10210
10211     IF marc IS NULL OR marc = '' THEN
10212         RETURN NULL;
10213     END IF;
10214
10215     -- First, the count of tags
10216     qual := ARRAY_UPPER(oils_xpath('*[local-name()="datafield"]', marc), 1);
10217
10218     -- now go through a bunch of pain to get the record type
10219     IF best_type IS NOT NULL THEN
10220         ldr := (oils_xpath('//*[local-name()="leader"]/text()', marc))[1];
10221
10222         IF ldr IS NOT NULL THEN
10223             SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
10224             SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
10225
10226
10227             tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length );
10228             bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length );
10229
10230             -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr;
10231
10232             SELECT * INTO type_map FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
10233
10234             IF type_map.code IS NOT NULL THEN
10235                 IF best_type = type_map.code THEN
10236                     qual := qual + qual / 2;
10237                 END IF;
10238
10239                 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
10240                     ff_tag_data := SUBSTRING((oils_xpath('//*[@tag="' || ff_pos.tag || '"]/text()',marc))[1], ff_pos.start_pos + 1, ff_pos.length);
10241                     IF ff_tag_data = best_lang THEN
10242                             qual := qual + 100;
10243                     END IF;
10244                 END LOOP;
10245             END IF;
10246         END IF;
10247     END IF;
10248
10249     -- Now look for some quality metrics
10250     -- DCL record?
10251     IF ARRAY_UPPER(oils_xpath('//*[@tag="040"]/*[@code="a" and contains(.,"DLC")]', marc), 1) = 1 THEN
10252         qual := qual + 10;
10253     END IF;
10254
10255     -- From OCLC?
10256     IF (oils_xpath('//*[@tag="003"]/text()', marc))[1] ~* E'oclo?c' THEN
10257         qual := qual + 10;
10258     END IF;
10259
10260     RETURN qual;
10261
10262 END;
10263 $func$ LANGUAGE PLPGSQL;
10264
10265 CREATE OR REPLACE FUNCTION biblio.extract_fingerprint ( marc text ) RETURNS TEXT AS $func$
10266 DECLARE
10267     idx     config.biblio_fingerprint%ROWTYPE;
10268     xfrm        config.xml_transform%ROWTYPE;
10269     prev_xfrm   TEXT;
10270     transformed_xml TEXT;
10271     xml_node    TEXT;
10272     xml_node_list   TEXT[];
10273     raw_text    TEXT;
10274     output_text TEXT := '';
10275 BEGIN
10276
10277     IF marc IS NULL OR marc = '' THEN
10278         RETURN NULL;
10279     END IF;
10280
10281     -- Loop over the indexing entries
10282     FOR idx IN SELECT * FROM config.biblio_fingerprint ORDER BY format, id LOOP
10283
10284         SELECT INTO xfrm * from config.xml_transform WHERE name = idx.format;
10285
10286         -- See if we can skip the XSLT ... it's expensive
10287         IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
10288             -- Can't skip the transform
10289             IF xfrm.xslt <> '---' THEN
10290                 transformed_xml := oils_xslt_process(marc,xfrm.xslt);
10291             ELSE
10292                 transformed_xml := marc;
10293             END IF;
10294
10295             prev_xfrm := xfrm.name;
10296         END IF;
10297
10298         raw_text := COALESCE(
10299             naco_normalize(
10300                 ARRAY_TO_STRING(
10301                     oils_xpath(
10302                         '//text()',
10303                         (oils_xpath(
10304                             idx.xpath,
10305                             transformed_xml,
10306                             ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]
10307                         ))[1]
10308                     ),
10309                     ''
10310                 )
10311             ),
10312             ''
10313         );
10314
10315         raw_text := REGEXP_REPLACE(raw_text, E'\\[.+?\\]', E'');
10316         raw_text := REGEXP_REPLACE(raw_text, E'\\mthe\\M|\\man?d?d\\M', E'', 'g'); -- arg! the pain!
10317
10318         IF idx.first_word IS TRUE THEN
10319             raw_text := REGEXP_REPLACE(raw_text, E'^(\\w+).*?$', E'\\1');
10320         END IF;
10321
10322         output_text := output_text || REGEXP_REPLACE(raw_text, E'\\s+', '', 'g');
10323
10324     END LOOP;
10325
10326     RETURN output_text;
10327
10328 END;
10329 $func$ LANGUAGE PLPGSQL;
10330
10331 -- BEFORE UPDATE OR INSERT trigger for biblio.record_entry
10332 CREATE OR REPLACE FUNCTION biblio.fingerprint_trigger () RETURNS TRIGGER AS $func$
10333 BEGIN
10334
10335     -- For TG_ARGV, first param is language (like 'eng'), second is record type (like 'BKS')
10336
10337     IF NEW.deleted IS TRUE THEN -- we don't much care, then, do we?
10338         RETURN NEW;
10339     END IF;
10340
10341     NEW.fingerprint := biblio.extract_fingerprint(NEW.marc);
10342     NEW.quality := biblio.extract_quality(NEW.marc, TG_ARGV[0], TG_ARGV[1]);
10343
10344     RETURN NEW;
10345
10346 END;
10347 $func$ LANGUAGE PLPGSQL;
10348
10349 CREATE TABLE config.internal_flag (
10350     name    TEXT    PRIMARY KEY,
10351     value   TEXT,
10352     enabled BOOL    NOT NULL DEFAULT FALSE
10353 );
10354 INSERT INTO config.internal_flag (name) VALUES ('ingest.metarecord_mapping.skip_on_insert');
10355 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.force_on_same_marc');
10356 INSERT INTO config.internal_flag (name) VALUES ('ingest.reingest.skip_located_uri');
10357 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_located_uri');
10358 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_full_rec');
10359 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_rec_descriptor');
10360 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_metabib_field_entry');
10361 INSERT INTO config.internal_flag (name) VALUES ('ingest.disable_authority_linking');
10362
10363 CREATE TABLE authority.bib_linking (
10364     id          BIGSERIAL   PRIMARY KEY,
10365     bib         BIGINT      NOT NULL REFERENCES biblio.record_entry (id),
10366     authority   BIGINT      NOT NULL REFERENCES authority.record_entry (id)
10367 );
10368 CREATE INDEX authority_bl_bib_idx ON authority.bib_linking ( bib );
10369 CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON authority.bib_linking ( authority, bib );
10370
10371 CREATE OR REPLACE FUNCTION public.remove_paren_substring( TEXT ) RETURNS TEXT AS $func$
10372     SELECT regexp_replace($1, $$\([^)]+\)$$, '', 'g');
10373 $func$ LANGUAGE SQL STRICT IMMUTABLE;
10374
10375 CREATE OR REPLACE FUNCTION biblio.map_authority_linking (bibid BIGINT, marc TEXT) RETURNS BIGINT AS $func$
10376     DELETE FROM authority.bib_linking WHERE bib = $1;
10377     INSERT INTO authority.bib_linking (bib, authority)
10378         SELECT  y.bib,
10379                 y.authority
10380           FROM (    SELECT  DISTINCT $1 AS bib,
10381                             BTRIM(remove_paren_substring(txt))::BIGINT AS authority
10382                       FROM  explode_array(oils_xpath('//*[@code="0"]/text()',$2)) x(txt)
10383                       WHERE BTRIM(remove_paren_substring(txt)) ~ $re$^\d+$$re$
10384                 ) y JOIN authority.record_entry r ON r.id = y.authority;
10385     SELECT $1;
10386 $func$ LANGUAGE SQL;
10387
10388 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_rec_descriptor( bib_id BIGINT ) RETURNS VOID AS $func$
10389 BEGIN
10390     DELETE FROM metabib.rec_descriptor WHERE record = bib_id;
10391     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)
10392         SELECT  bib_id,
10393                 biblio.marc21_extract_fixed_field( bib_id, 'Type' ),
10394                 biblio.marc21_extract_fixed_field( bib_id, 'Form' ),
10395                 biblio.marc21_extract_fixed_field( bib_id, 'BLvl' ),
10396                 biblio.marc21_extract_fixed_field( bib_id, 'Ctrl' ),
10397                 biblio.marc21_extract_fixed_field( bib_id, 'ELvl' ),
10398                 biblio.marc21_extract_fixed_field( bib_id, 'Audn' ),
10399                 biblio.marc21_extract_fixed_field( bib_id, 'LitF' ),
10400                 biblio.marc21_extract_fixed_field( bib_id, 'TMat' ),
10401                 biblio.marc21_extract_fixed_field( bib_id, 'Desc' ),
10402                 biblio.marc21_extract_fixed_field( bib_id, 'DtSt' ),
10403                 biblio.marc21_extract_fixed_field( bib_id, 'Lang' ),
10404                 (   SELECT  v.value
10405                       FROM  biblio.marc21_physical_characteristics( bib_id) p
10406                             JOIN config.marc21_physical_characteristic_subfield_map s ON (s.id = p.subfield)
10407                             JOIN config.marc21_physical_characteristic_value_map v ON (v.id = p.value)
10408                       WHERE p.ptype = 'v' AND s.subfield = 'e'    ),
10409                 biblio.marc21_extract_fixed_field( bib_id, 'Date1'),
10410                 biblio.marc21_extract_fixed_field( bib_id, 'Date2');
10411
10412     RETURN;
10413 END;
10414 $func$ LANGUAGE PLPGSQL;
10415
10416 CREATE TABLE config.metabib_class (
10417     name    TEXT    PRIMARY KEY,
10418     label   TEXT    NOT NULL UNIQUE
10419 );
10420
10421 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
10422 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label') );
10423 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label') );
10424 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
10425 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
10426
10427 CREATE TABLE metabib.facet_entry (
10428         id              BIGSERIAL       PRIMARY KEY,
10429         source          BIGINT          NOT NULL,
10430         field           INT             NOT NULL,
10431         value           TEXT            NOT NULL
10432 );
10433
10434 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_field_entries( bib_id BIGINT ) RETURNS VOID AS $func$
10435 DECLARE
10436     fclass          RECORD;
10437     ind_data        metabib.field_entry_template%ROWTYPE;
10438 BEGIN
10439     FOR fclass IN SELECT * FROM config.metabib_class LOOP
10440         -- RAISE NOTICE 'Emptying out %', fclass.name;
10441         EXECUTE $$DELETE FROM metabib.$$ || fclass.name || $$_field_entry WHERE source = $$ || bib_id;
10442     END LOOP;
10443
10444     DELETE FROM metabib.facet_entry WHERE source = bib_id;
10445
10446     FOR ind_data IN SELECT * FROM biblio.extract_metabib_field_entry( bib_id ) LOOP
10447         IF ind_data.field < 0 THEN
10448             ind_data.field = -1 * ind_data.field;
10449             INSERT INTO metabib.facet_entry (field, source, value)
10450                 VALUES (ind_data.field, ind_data.source, ind_data.value);
10451         ELSE
10452             EXECUTE $$
10453                 INSERT INTO metabib.$$ || ind_data.field_class || $$_field_entry (field, source, value)
10454                     VALUES ($$ ||
10455                         quote_literal(ind_data.field) || $$, $$ ||
10456                         quote_literal(ind_data.source) || $$, $$ ||
10457                         quote_literal(ind_data.value) ||
10458                     $$);$$;
10459         END IF;
10460
10461     END LOOP;
10462
10463     RETURN;
10464 END;
10465 $func$ LANGUAGE PLPGSQL;
10466
10467 CREATE OR REPLACE FUNCTION biblio.extract_located_uris( bib_id BIGINT, marcxml TEXT, editor_id INT ) RETURNS VOID AS $func$
10468 DECLARE
10469     uris            TEXT[];
10470     uri_xml         TEXT;
10471     uri_label       TEXT;
10472     uri_href        TEXT;
10473     uri_use         TEXT;
10474     uri_owner       TEXT;
10475     uri_owner_id    INT;
10476     uri_id          INT;
10477     uri_cn_id       INT;
10478     uri_map_id      INT;
10479 BEGIN
10480
10481     uris := oils_xpath('//*[@tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]',marcxml);
10482     IF ARRAY_UPPER(uris,1) > 0 THEN
10483         FOR i IN 1 .. ARRAY_UPPER(uris, 1) LOOP
10484             -- First we pull info out of the 856
10485             uri_xml     := uris[i];
10486
10487             uri_href    := (oils_xpath('//*[@code="u"]/text()',uri_xml))[1];
10488             CONTINUE WHEN uri_href IS NULL;
10489
10490             uri_label   := (oils_xpath('//*[@code="y"]/text()|//*[@code="3"]/text()|//*[@code="u"]/text()',uri_xml))[1];
10491             CONTINUE WHEN uri_label IS NULL;
10492
10493             uri_owner   := (oils_xpath('//*[@code="9"]/text()|//*[@code="w"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10494             CONTINUE WHEN uri_owner IS NULL;
10495
10496             uri_use     := (oils_xpath('//*[@code="z"]/text()|//*[@code="2"]/text()|//*[@code="n"]/text()',uri_xml))[1];
10497
10498             uri_owner := REGEXP_REPLACE(uri_owner, $re$^.*?\((\w+)\).*$$re$, E'\\1');
10499
10500             SELECT id INTO uri_owner_id FROM actor.org_unit WHERE shortname = uri_owner;
10501             CONTINUE WHEN NOT FOUND;
10502
10503             -- now we look for a matching uri
10504             SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10505             IF NOT FOUND THEN -- create one
10506                 INSERT INTO asset.uri (label, href, use_restriction) VALUES (uri_label, uri_href, uri_use);
10507                 SELECT id INTO uri_id FROM asset.uri WHERE label = uri_label AND href = uri_href AND use_restriction = uri_use AND active;
10508             END IF;
10509
10510             -- we need a call number to link through
10511             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;
10512             IF NOT FOUND THEN
10513                 INSERT INTO asset.call_number (owning_lib, record, create_date, edit_date, creator, editor, label)
10514                     VALUES (uri_owner_id, bib_id, 'now', 'now', editor_id, editor_id, '##URI##');
10515                 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;
10516             END IF;
10517
10518             -- now, link them if they're not already
10519             SELECT id INTO uri_map_id FROM asset.uri_call_number_map WHERE call_number = uri_cn_id AND uri = uri_id;
10520             IF NOT FOUND THEN
10521                 INSERT INTO asset.uri_call_number_map (call_number, uri) VALUES (uri_cn_id, uri_id);
10522             END IF;
10523
10524         END LOOP;
10525     END IF;
10526
10527     RETURN;
10528 END;
10529 $func$ LANGUAGE PLPGSQL;
10530
10531 CREATE OR REPLACE FUNCTION metabib.remap_metarecord_for_bib( bib_id BIGINT, fp TEXT ) RETURNS BIGINT AS $func$
10532 DECLARE
10533     source_count    INT;
10534     old_mr          BIGINT;
10535     tmp_mr          metabib.metarecord%ROWTYPE;
10536     deleted_mrs     BIGINT[];
10537 BEGIN
10538
10539     DELETE FROM metabib.metarecord_source_map WHERE source = bib_id; -- Rid ourselves of the search-estimate-killing linkage
10540
10541     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
10542
10543         IF old_mr IS NULL AND fp = tmp_mr.fingerprint THEN -- Find the first fingerprint-matching
10544             old_mr := tmp_mr.id;
10545         ELSE
10546             SELECT COUNT(*) INTO source_count FROM metabib.metarecord_source_map WHERE metarecord = tmp_mr.id;
10547             IF source_count = 0 THEN -- No other records
10548                 deleted_mrs := ARRAY_APPEND(deleted_mrs, tmp_mr.id);
10549                 DELETE FROM metabib.metarecord WHERE id = tmp_mr.id;
10550             END IF;
10551         END IF;
10552
10553     END LOOP;
10554
10555     IF old_mr IS NULL THEN -- we found no suitable, preexisting MR based on old source maps
10556         SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp; -- is there one for our current fingerprint?
10557         IF old_mr IS NULL THEN -- nope, create one and grab its id
10558             INSERT INTO metabib.metarecord ( fingerprint, master_record ) VALUES ( fp, bib_id );
10559             SELECT id INTO old_mr FROM metabib.metarecord WHERE fingerprint = fp;
10560         ELSE -- indeed there is. update it with a null cache and recalcualated master record
10561             UPDATE  metabib.metarecord
10562               SET   mods = NULL,
10563                     master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
10564               WHERE id = old_mr;
10565         END IF;
10566     ELSE -- there was one we already attached to, update its mods cache and master_record
10567         UPDATE  metabib.metarecord
10568           SET   mods = NULL,
10569                 master_record = ( SELECT id FROM biblio.record_entry WHERE fingerprint = fp ORDER BY quality DESC LIMIT 1)
10570           WHERE id = old_mr;
10571     END IF;
10572
10573     INSERT INTO metabib.metarecord_source_map (metarecord, source) VALUES (old_mr, bib_id); -- new source mapping
10574
10575     IF ARRAY_UPPER(deleted_mrs,1) > 0 THEN
10576         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
10577     END IF;
10578
10579     RETURN old_mr;
10580
10581 END;
10582 $func$ LANGUAGE PLPGSQL;
10583
10584 CREATE OR REPLACE FUNCTION metabib.reingest_metabib_full_rec( bib_id BIGINT ) RETURNS VOID AS $func$
10585 BEGIN
10586     DELETE FROM metabib.real_full_rec WHERE record = bib_id;
10587     INSERT INTO metabib.real_full_rec (record, tag, ind1, ind2, subfield, value)
10588         SELECT record, tag, ind1, ind2, subfield, value FROM biblio.flatten_marc( bib_id );
10589
10590     RETURN;
10591 END;
10592 $func$ LANGUAGE PLPGSQL;
10593
10594 -- AFTER UPDATE OR INSERT trigger for biblio.record_entry
10595 CREATE OR REPLACE FUNCTION biblio.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
10596 BEGIN
10597
10598     IF NEW.deleted IS TRUE THEN -- If this bib is deleted
10599         DELETE FROM metabib.metarecord_source_map WHERE source = NEW.id; -- Rid ourselves of the search-estimate-killing linkage
10600         DELETE FROM authority.bib_linking WHERE bib = NEW.id; -- Avoid updating fields in bibs that are no longer visible
10601         RETURN NEW; -- and we're done
10602     END IF;
10603
10604     IF TG_OP = 'UPDATE' THEN -- re-ingest?
10605         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
10606
10607         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
10608             RETURN NEW;
10609         END IF;
10610     END IF;
10611
10612     -- Record authority linking
10613     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking' AND enabled;
10614     IF NOT FOUND THEN
10615         PERFORM biblio.map_authority_linking( NEW.id, NEW.marc );
10616     END IF;
10617
10618     -- Flatten and insert the mfr data
10619     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_full_rec' AND enabled;
10620     IF NOT FOUND THEN
10621         PERFORM metabib.reingest_metabib_full_rec(NEW.id);
10622         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_metabib_rec_descriptor' AND enabled;
10623         IF NOT FOUND THEN
10624             PERFORM metabib.reingest_metabib_rec_descriptor(NEW.id);
10625         END IF;
10626     END IF;
10627
10628     -- Gather and insert the field entry data
10629     PERFORM metabib.reingest_metabib_field_entries(NEW.id);
10630
10631     -- Located URI magic
10632     IF TG_OP = 'INSERT' THEN
10633         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
10634         IF NOT FOUND THEN
10635             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
10636         END IF;
10637     ELSE
10638         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_located_uri' AND enabled;
10639         IF NOT FOUND THEN
10640             PERFORM biblio.extract_located_uris( NEW.id, NEW.marc, NEW.editor );
10641         END IF;
10642     END IF;
10643
10644     -- (re)map metarecord-bib linking
10645     IF TG_OP = 'INSERT' THEN -- if not deleted and performing an insert, check for the flag
10646         PERFORM * FROM config.internal_flag WHERE name = 'ingest.metarecord_mapping.skip_on_insert' AND enabled;
10647         IF NOT FOUND THEN
10648             PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
10649         END IF;
10650     ELSE -- we're doing an update, and we're not deleted, remap
10651         PERFORM metabib.remap_metarecord_for_bib( NEW.id, NEW.fingerprint );
10652     END IF;
10653
10654     RETURN NEW;
10655 END;
10656 $func$ LANGUAGE PLPGSQL;
10657
10658 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
10659 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 ();
10660
10661 DROP TRIGGER IF EXISTS zzz_update_materialized_simple_rec_delete_tgr ON biblio.record_entry;
10662
10663 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT )
10664 RETURNS SETOF RECORD AS $func$
10665 DECLARE
10666     xpath_list  TEXT[];
10667     select_list TEXT[];
10668     where_list  TEXT[];
10669     q           TEXT;
10670     out_record  RECORD;
10671     empty_test  RECORD;
10672 BEGIN
10673     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
10674
10675     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
10676
10677     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
10678         select_list := ARRAY_APPEND(
10679             select_list,
10680             $sel$
10681             EXPLODE_ARRAY(
10682                 COALESCE(
10683                     NULLIF(
10684                         oils_xpath(
10685                             $sel$ ||
10686                                 quote_literal(
10687                                     CASE
10688                                         WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
10689                                         ELSE xpath_list[i] || '//text()'
10690                                     END
10691                                 ) ||
10692                             $sel$,
10693                             $sel$ || document_field || $sel$
10694                         ),
10695                        '{}'::TEXT[]
10696                     ),
10697                     '{NULL}'::TEXT[]
10698                 )
10699             ) AS c_$sel$ || i
10700         );
10701         where_list := ARRAY_APPEND(
10702             where_list,
10703             'c_' || i || ' IS NOT NULL'
10704         );
10705     END LOOP;
10706
10707     q := $q$
10708 SELECT * FROM (
10709     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
10710 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' AND ' );
10711     -- RAISE NOTICE 'query: %', q;
10712
10713     FOR out_record IN EXECUTE q LOOP
10714         RETURN NEXT out_record;
10715     END LOOP;
10716
10717     RETURN;
10718 END;
10719 $func$ LANGUAGE PLPGSQL;
10720
10721 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
10722 DECLARE
10723
10724     owning_lib      TEXT;
10725     circ_lib        TEXT;
10726     call_number     TEXT;
10727     copy_number     TEXT;
10728     status          TEXT;
10729     location        TEXT;
10730     circulate       TEXT;
10731     deposit         TEXT;
10732     deposit_amount  TEXT;
10733     ref             TEXT;
10734     holdable        TEXT;
10735     price           TEXT;
10736     barcode         TEXT;
10737     circ_modifier   TEXT;
10738     circ_as_type    TEXT;
10739     alert_message   TEXT;
10740     opac_visible    TEXT;
10741     pub_note        TEXT;
10742     priv_note       TEXT;
10743
10744     attr_def        RECORD;
10745     tmp_attr_set    RECORD;
10746     attr_set        vandelay.import_item%ROWTYPE;
10747
10748     xpath           TEXT;
10749
10750 BEGIN
10751
10752     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
10753
10754     IF FOUND THEN
10755
10756         attr_set.definition := attr_def.id; 
10757     
10758         -- Build the combined XPath
10759     
10760         owning_lib :=
10761             CASE
10762                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
10763                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.owning_lib || '"]'
10764                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.owning_lib
10765             END;
10766     
10767         circ_lib :=
10768             CASE
10769                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
10770                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_lib || '"]'
10771                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_lib
10772             END;
10773     
10774         call_number :=
10775             CASE
10776                 WHEN attr_def.call_number IS NULL THEN 'null()'
10777                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.call_number || '"]'
10778                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.call_number
10779             END;
10780     
10781         copy_number :=
10782             CASE
10783                 WHEN attr_def.copy_number IS NULL THEN 'null()'
10784                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.copy_number || '"]'
10785                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.copy_number
10786             END;
10787     
10788         status :=
10789             CASE
10790                 WHEN attr_def.status IS NULL THEN 'null()'
10791                 WHEN LENGTH( attr_def.status ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.status || '"]'
10792                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.status
10793             END;
10794     
10795         location :=
10796             CASE
10797                 WHEN attr_def.location IS NULL THEN 'null()'
10798                 WHEN LENGTH( attr_def.location ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.location || '"]'
10799                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.location
10800             END;
10801     
10802         circulate :=
10803             CASE
10804                 WHEN attr_def.circulate IS NULL THEN 'null()'
10805                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circulate || '"]'
10806                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circulate
10807             END;
10808     
10809         deposit :=
10810             CASE
10811                 WHEN attr_def.deposit IS NULL THEN 'null()'
10812                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit || '"]'
10813                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit
10814             END;
10815     
10816         deposit_amount :=
10817             CASE
10818                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
10819                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.deposit_amount || '"]'
10820                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.deposit_amount
10821             END;
10822     
10823         ref :=
10824             CASE
10825                 WHEN attr_def.ref IS NULL THEN 'null()'
10826                 WHEN LENGTH( attr_def.ref ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.ref || '"]'
10827                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.ref
10828             END;
10829     
10830         holdable :=
10831             CASE
10832                 WHEN attr_def.holdable IS NULL THEN 'null()'
10833                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.holdable || '"]'
10834                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.holdable
10835             END;
10836     
10837         price :=
10838             CASE
10839                 WHEN attr_def.price IS NULL THEN 'null()'
10840                 WHEN LENGTH( attr_def.price ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.price || '"]'
10841                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.price
10842             END;
10843     
10844         barcode :=
10845             CASE
10846                 WHEN attr_def.barcode IS NULL THEN 'null()'
10847                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.barcode || '"]'
10848                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.barcode
10849             END;
10850     
10851         circ_modifier :=
10852             CASE
10853                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
10854                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_modifier || '"]'
10855                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_modifier
10856             END;
10857     
10858         circ_as_type :=
10859             CASE
10860                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
10861                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.circ_as_type || '"]'
10862                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.circ_as_type
10863             END;
10864     
10865         alert_message :=
10866             CASE
10867                 WHEN attr_def.alert_message IS NULL THEN 'null()'
10868                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.alert_message || '"]'
10869                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.alert_message
10870             END;
10871     
10872         opac_visible :=
10873             CASE
10874                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
10875                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.opac_visible || '"]'
10876                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.opac_visible
10877             END;
10878
10879         pub_note :=
10880             CASE
10881                 WHEN attr_def.pub_note IS NULL THEN 'null()'
10882                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.pub_note || '"]'
10883                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.pub_note
10884             END;
10885         priv_note :=
10886             CASE
10887                 WHEN attr_def.priv_note IS NULL THEN 'null()'
10888                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '//*[@tag="' || attr_def.tag || '"]/*[@code="' || attr_def.priv_note || '"]'
10889                 ELSE '//*[@tag="' || attr_def.tag || '"]/*' || attr_def.priv_note
10890             END;
10891     
10892     
10893         xpath := 
10894             owning_lib      || '|' || 
10895             circ_lib        || '|' || 
10896             call_number     || '|' || 
10897             copy_number     || '|' || 
10898             status          || '|' || 
10899             location        || '|' || 
10900             circulate       || '|' || 
10901             deposit         || '|' || 
10902             deposit_amount  || '|' || 
10903             ref             || '|' || 
10904             holdable        || '|' || 
10905             price           || '|' || 
10906             barcode         || '|' || 
10907             circ_modifier   || '|' || 
10908             circ_as_type    || '|' || 
10909             alert_message   || '|' || 
10910             pub_note        || '|' || 
10911             priv_note       || '|' || 
10912             opac_visible;
10913
10914         -- RAISE NOTICE 'XPath: %', xpath;
10915         
10916         FOR tmp_attr_set IN
10917                 SELECT  *
10918                   FROM  oils_xpath_table( 'id', 'marc', 'vandelay.queued_bib_record', xpath, 'id = ' || import_id )
10919                             AS t( id INT, ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
10920                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
10921                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, opac_vis TEXT )
10922         LOOP
10923     
10924             tmp_attr_set.pr = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
10925             tmp_attr_set.dep_amount = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
10926
10927             tmp_attr_set.pr := NULLIF( tmp_attr_set.pr, '' );
10928             tmp_attr_set.dep_amount := NULLIF( tmp_attr_set.dep_amount, '' );
10929     
10930             SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
10931             SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
10932             SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
10933     
10934             SELECT  id INTO attr_set.location
10935               FROM  asset.copy_location
10936               WHERE LOWER(name) = LOWER(tmp_attr_set.cl)
10937                     AND asset.copy_location.owning_lib = COALESCE(attr_set.owning_lib, attr_set.circ_lib); -- INT
10938     
10939             attr_set.circulate      :=
10940                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
10941                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
10942
10943             attr_set.deposit        :=
10944                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
10945                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
10946
10947             attr_set.holdable       :=
10948                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
10949                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
10950
10951             attr_set.opac_visible   :=
10952                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
10953                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
10954
10955             attr_set.ref            :=
10956                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
10957                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
10958     
10959             attr_set.copy_number    := tmp_attr_set.cnum::INT; -- INT,
10960             attr_set.deposit_amount := tmp_attr_set.dep_amount::NUMERIC(6,2); -- NUMERIC(6,2),
10961             attr_set.price          := tmp_attr_set.pr::NUMERIC(8,2); -- NUMERIC(8,2),
10962     
10963             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
10964             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
10965             attr_set.circ_modifier  := tmp_attr_set.circ_mod; -- TEXT,
10966             attr_set.circ_as_type   := tmp_attr_set.circ_as; -- TEXT,
10967             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
10968             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
10969             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
10970             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
10971     
10972             RETURN NEXT attr_set;
10973     
10974         END LOOP;
10975     
10976     END IF;
10977
10978     RETURN;
10979
10980 END;
10981 $$ LANGUAGE PLPGSQL;
10982
10983 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
10984 DECLARE
10985     attr_def    BIGINT;
10986     item_data   vandelay.import_item%ROWTYPE;
10987 BEGIN
10988
10989     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
10990
10991     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
10992         INSERT INTO vandelay.import_item (
10993             record,
10994             definition,
10995             owning_lib,
10996             circ_lib,
10997             call_number,
10998             copy_number,
10999             status,
11000             location,
11001             circulate,
11002             deposit,
11003             deposit_amount,
11004             ref,
11005             holdable,
11006             price,
11007             barcode,
11008             circ_modifier,
11009             circ_as_type,
11010             alert_message,
11011             pub_note,
11012             priv_note,
11013             opac_visible
11014         ) VALUES (
11015             NEW.id,
11016             item_data.definition,
11017             item_data.owning_lib,
11018             item_data.circ_lib,
11019             item_data.call_number,
11020             item_data.copy_number,
11021             item_data.status,
11022             item_data.location,
11023             item_data.circulate,
11024             item_data.deposit,
11025             item_data.deposit_amount,
11026             item_data.ref,
11027             item_data.holdable,
11028             item_data.price,
11029             item_data.barcode,
11030             item_data.circ_modifier,
11031             item_data.circ_as_type,
11032             item_data.alert_message,
11033             item_data.pub_note,
11034             item_data.priv_note,
11035             item_data.opac_visible
11036         );
11037     END LOOP;
11038
11039     RETURN NULL;
11040 END;
11041 $func$ LANGUAGE PLPGSQL;
11042
11043 CREATE OR REPLACE FUNCTION acq.create_acq_seq     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11044 BEGIN
11045     EXECUTE $$
11046         CREATE SEQUENCE acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq;
11047     $$;
11048         RETURN TRUE;
11049 END;
11050 $creator$ LANGUAGE 'plpgsql';
11051
11052 CREATE OR REPLACE FUNCTION acq.create_acq_history ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11053 BEGIN
11054     EXECUTE $$
11055         CREATE TABLE acq.$$ || sch || $$_$$ || tbl || $$_history (
11056             audit_id    BIGINT                          PRIMARY KEY,
11057             audit_time  TIMESTAMP WITH TIME ZONE        NOT NULL,
11058             audit_action        TEXT                            NOT NULL,
11059             LIKE $$ || sch || $$.$$ || tbl || $$
11060         );
11061     $$;
11062         RETURN TRUE;
11063 END;
11064 $creator$ LANGUAGE 'plpgsql';
11065
11066 CREATE OR REPLACE FUNCTION acq.create_acq_func    ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11067 BEGIN
11068     EXECUTE $$
11069         CREATE OR REPLACE FUNCTION acq.audit_$$ || sch || $$_$$ || tbl || $$_func ()
11070         RETURNS TRIGGER AS $func$
11071         BEGIN
11072             INSERT INTO acq.$$ || sch || $$_$$ || tbl || $$_history
11073                 SELECT  nextval('acq.$$ || sch || $$_$$ || tbl || $$_pkey_seq'),
11074                     now(),
11075                     SUBSTR(TG_OP,1,1),
11076                     OLD.*;
11077             RETURN NULL;
11078         END;
11079         $func$ LANGUAGE 'plpgsql';
11080     $$;
11081         RETURN TRUE;
11082 END;
11083 $creator$ LANGUAGE 'plpgsql';
11084
11085 CREATE OR REPLACE FUNCTION acq.create_acq_update_trigger ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11086 BEGIN
11087     EXECUTE $$
11088         CREATE TRIGGER audit_$$ || sch || $$_$$ || tbl || $$_update_trigger
11089             AFTER UPDATE OR DELETE ON $$ || sch || $$.$$ || tbl || $$ FOR EACH ROW
11090             EXECUTE PROCEDURE acq.audit_$$ || sch || $$_$$ || tbl || $$_func ();
11091     $$;
11092         RETURN TRUE;
11093 END;
11094 $creator$ LANGUAGE 'plpgsql';
11095
11096 CREATE OR REPLACE FUNCTION acq.create_acq_lifecycle     ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11097 BEGIN
11098     EXECUTE $$
11099         CREATE OR REPLACE VIEW acq.$$ || sch || $$_$$ || tbl || $$_lifecycle AS
11100             SELECT      -1, now() as audit_time, '-' as audit_action, *
11101               FROM      $$ || sch || $$.$$ || tbl || $$
11102                 UNION ALL
11103             SELECT      *
11104               FROM      acq.$$ || sch || $$_$$ || tbl || $$_history;
11105     $$;
11106         RETURN TRUE;
11107 END;
11108 $creator$ LANGUAGE 'plpgsql';
11109
11110 -- The main event
11111
11112 CREATE OR REPLACE FUNCTION acq.create_acq_auditor ( sch TEXT, tbl TEXT ) RETURNS BOOL AS $creator$
11113 BEGIN
11114     PERFORM acq.create_acq_seq(sch, tbl);
11115     PERFORM acq.create_acq_history(sch, tbl);
11116     PERFORM acq.create_acq_func(sch, tbl);
11117     PERFORM acq.create_acq_update_trigger(sch, tbl);
11118     PERFORM acq.create_acq_lifecycle(sch, tbl);
11119     RETURN TRUE;
11120 END;
11121 $creator$ LANGUAGE 'plpgsql';
11122
11123 SELECT acq.create_acq_auditor ( 'acq', 'purchase_order' );
11124 CREATE INDEX acq_po_hist_id_idx            ON acq.acq_purchase_order_history( id );
11125
11126 SELECT acq.create_acq_auditor ( 'acq', 'lineitem' );
11127 CREATE INDEX acq_lineitem_hist_id_idx            ON acq.acq_lineitem_history( id );
11128
11129 CREATE OR REPLACE VIEW acq.fund_debit_total AS
11130     SELECT  fund.id AS fund,
11131             fund_debit.encumbrance AS encumbrance,
11132             SUM( COALESCE( fund_debit.amount, 0 ) ) AS amount
11133       FROM acq.fund AS fund
11134                         LEFT JOIN acq.fund_debit AS fund_debit
11135                                 ON ( fund.id = fund_debit.fund )
11136       GROUP BY 1,2;
11137
11138 CREATE TABLE acq.debit_attribution (
11139         id                     INT         NOT NULL PRIMARY KEY,
11140         fund_debit             INT         NOT NULL
11141                                            REFERENCES acq.fund_debit
11142                                            DEFERRABLE INITIALLY DEFERRED,
11143     debit_amount           NUMERIC     NOT NULL,
11144         funding_source_credit  INT         REFERENCES acq.funding_source_credit
11145                                            DEFERRABLE INITIALLY DEFERRED,
11146     credit_amount          NUMERIC
11147 );
11148
11149 CREATE INDEX acq_attribution_debit_idx
11150         ON acq.debit_attribution( fund_debit );
11151
11152 CREATE INDEX acq_attribution_credit_idx
11153         ON acq.debit_attribution( funding_source_credit );
11154
11155 CREATE OR REPLACE FUNCTION acq.attribute_debits() RETURNS VOID AS $$
11156 /*
11157 Function to attribute expenditures and encumbrances to funding source credits,
11158 and thereby to funding sources.
11159
11160 Read the debits in chonological order, attributing each one to one or
11161 more funding source credits.  Constraints:
11162
11163 1. Don't attribute more to a credit than the amount of the credit.
11164
11165 2. For a given fund, don't attribute more to a funding source than the
11166 source has allocated to that fund.
11167
11168 3. Attribute debits to credits with deadlines before attributing them to
11169 credits without deadlines.  Otherwise attribute to the earliest credits
11170 first, based on the deadline date when present, or on the effective date
11171 when there is no deadline.  Use funding_source_credit.id as a tie-breaker.
11172 This ordering is defined by an ORDER BY clause on the view
11173 acq.ordered_funding_source_credit.
11174
11175 Start by truncating the table acq.debit_attribution.  Then insert a row
11176 into that table for each attribution.  If a debit cannot be fully
11177 attributed, insert a row for the unattributable balance, with the 
11178 funding_source_credit and credit_amount columns NULL.
11179 */
11180 DECLARE
11181         curr_fund_source_bal RECORD;
11182         seqno                INT;     -- sequence num for credits applicable to a fund
11183         fund_credit          RECORD;  -- current row in temp t_fund_credit table
11184         fc                   RECORD;  -- used for loading t_fund_credit table
11185         sc                   RECORD;  -- used for loading t_fund_credit table
11186         --
11187         -- Used exclusively in the main loop:
11188         --
11189         deb                 RECORD;   -- current row from acq.fund_debit table
11190         curr_credit_bal     RECORD;   -- current row from temp t_credit table
11191         debit_balance       NUMERIC;  -- amount left to attribute for current debit
11192         conv_debit_balance  NUMERIC;  -- debit balance in currency of the fund
11193         attr_amount         NUMERIC;  -- amount being attributed, in currency of debit
11194         conv_attr_amount    NUMERIC;  -- amount being attributed, in currency of source
11195         conv_cred_balance   NUMERIC;  -- credit_balance in the currency of the fund
11196         conv_alloc_balance  NUMERIC;  -- allocated balance in the currency of the fund
11197         attrib_count        INT;      -- populates id of acq.debit_attribution
11198 BEGIN
11199         --
11200         -- Load a temporary table.  For each combination of fund and funding source,
11201         -- load an entry with the total amount allocated to that fund by that source.
11202         -- This sum may reflect transfers as well as original allocations.  We will
11203         -- reduce this balance whenever we attribute debits to it.
11204         --
11205         CREATE TEMP TABLE t_fund_source_bal
11206         ON COMMIT DROP AS
11207                 SELECT
11208                         fund AS fund,
11209                         funding_source AS source,
11210                         sum( amount ) AS balance
11211                 FROM
11212                         acq.fund_allocation
11213                 GROUP BY
11214                         fund,
11215                         funding_source
11216                 HAVING
11217                         sum( amount ) > 0;
11218         --
11219         CREATE INDEX t_fund_source_bal_idx
11220                 ON t_fund_source_bal( fund, source );
11221         -------------------------------------------------------------------------------
11222         --
11223         -- Load another temporary table.  For each fund, load zero or more
11224         -- funding source credits from which that fund can get money.
11225         --
11226         CREATE TEMP TABLE t_fund_credit (
11227                 fund        INT,
11228                 seq         INT,
11229                 credit      INT
11230         ) ON COMMIT DROP;
11231         --
11232         FOR fc IN
11233                 SELECT DISTINCT fund
11234                 FROM acq.fund_allocation
11235                 ORDER BY fund
11236         LOOP                  -- Loop over the funds
11237                 seqno := 1;
11238                 FOR sc IN
11239                         SELECT
11240                                 ofsc.id
11241                         FROM
11242                                 acq.ordered_funding_source_credit AS ofsc
11243                         WHERE
11244                                 ofsc.funding_source IN
11245                                 (
11246                                         SELECT funding_source
11247                                         FROM acq.fund_allocation
11248                                         WHERE fund = fc.fund
11249                                 )
11250                 ORDER BY
11251                     ofsc.sort_priority,
11252                     ofsc.sort_date,
11253                     ofsc.id
11254                 LOOP                        -- Add each credit to the list
11255                         INSERT INTO t_fund_credit (
11256                                 fund,
11257                                 seq,
11258                                 credit
11259                         ) VALUES (
11260                                 fc.fund,
11261                                 seqno,
11262                                 sc.id
11263                         );
11264                         --RAISE NOTICE 'Fund % credit %', fc.fund, sc.id;
11265                         seqno := seqno + 1;
11266                 END LOOP;     -- Loop over credits for a given fund
11267         END LOOP;         -- Loop over funds
11268         --
11269         CREATE INDEX t_fund_credit_idx
11270                 ON t_fund_credit( fund, seq );
11271         -------------------------------------------------------------------------------
11272         --
11273         -- Load yet another temporary table.  This one is a list of funding source
11274         -- credits, with their balances.  We shall reduce those balances as we
11275         -- attribute debits to them.
11276         --
11277         CREATE TEMP TABLE t_credit
11278         ON COMMIT DROP AS
11279         SELECT
11280             fsc.id AS credit,
11281             fsc.funding_source AS source,
11282             fsc.amount AS balance,
11283             fs.currency_type AS currency_type
11284         FROM
11285             acq.funding_source_credit AS fsc,
11286             acq.funding_source fs
11287         WHERE
11288             fsc.funding_source = fs.id
11289                         AND fsc.amount > 0;
11290         --
11291         CREATE INDEX t_credit_idx
11292                 ON t_credit( credit );
11293         --
11294         -------------------------------------------------------------------------------
11295         --
11296         -- Now that we have loaded the lookup tables: loop through the debits,
11297         -- attributing each one to one or more funding source credits.
11298         -- 
11299         truncate table acq.debit_attribution;
11300         --
11301         attrib_count := 0;
11302         FOR deb in
11303                 SELECT
11304                         fd.id,
11305                         fd.fund,
11306                         fd.amount,
11307                         f.currency_type,
11308                         fd.encumbrance
11309                 FROM
11310                         acq.fund_debit fd,
11311                         acq.fund f
11312                 WHERE
11313                         fd.fund = f.id
11314                 ORDER BY
11315                         fd.id
11316         LOOP
11317                 --RAISE NOTICE 'Debit %, fund %', deb.id, deb.fund;
11318                 --
11319                 debit_balance := deb.amount;
11320                 --
11321                 -- Loop over the funding source credits that are eligible
11322                 -- to pay for this debit
11323                 --
11324                 FOR fund_credit IN
11325                         SELECT
11326                                 credit
11327                         FROM
11328                                 t_fund_credit
11329                         WHERE
11330                                 fund = deb.fund
11331                         ORDER BY
11332                                 seq
11333                 LOOP
11334                         --RAISE NOTICE '   Examining credit %', fund_credit.credit;
11335                         --
11336                         -- Look up the balance for this credit.  If it's zero, then
11337                         -- it's not useful, so treat it as if you didn't find it.
11338                         -- (Actually there shouldn't be any zero balances in the table,
11339                         -- but we check just to make sure.)
11340                         --
11341                         SELECT *
11342                         INTO curr_credit_bal
11343                         FROM t_credit
11344                         WHERE
11345                                 credit = fund_credit.credit
11346                                 AND balance > 0;
11347                         --
11348                         IF curr_credit_bal IS NULL THEN
11349                                 --
11350                                 -- This credit is exhausted; try the next one.
11351                                 --
11352                                 CONTINUE;
11353                         END IF;
11354                         --
11355                         --
11356                         -- At this point we have an applicable credit with some money left.
11357                         -- Now see if the relevant funding_source has any money left.
11358                         --
11359                         -- Look up the balance of the allocation for this combination of
11360                         -- fund and source.  If you find such an entry, but it has a zero
11361                         -- balance, then it's not useful, so treat it as unfound.
11362                         -- (Actually there shouldn't be any zero balances in the table,
11363                         -- but we check just to make sure.)
11364                         --
11365                         SELECT *
11366                         INTO curr_fund_source_bal
11367                         FROM t_fund_source_bal
11368                         WHERE
11369                                 fund = deb.fund
11370                                 AND source = curr_credit_bal.source
11371                                 AND balance > 0;
11372                         --
11373                         IF curr_fund_source_bal IS NULL THEN
11374                                 --
11375                                 -- This fund/source doesn't exist or is already exhausted,
11376                                 -- so we can't use this credit.  Go on to the next one.
11377                                 --
11378                                 CONTINUE;
11379                         END IF;
11380                         --
11381                         -- Convert the available balances to the currency of the fund
11382                         --
11383                         conv_alloc_balance := curr_fund_source_bal.balance * acq.exchange_ratio(
11384                                 curr_credit_bal.currency_type, deb.currency_type );
11385                         conv_cred_balance := curr_credit_bal.balance * acq.exchange_ratio(
11386                                 curr_credit_bal.currency_type, deb.currency_type );
11387                         --
11388                         -- Determine how much we can attribute to this credit: the minimum
11389                         -- of the debit amount, the fund/source balance, and the
11390                         -- credit balance
11391                         --
11392                         --RAISE NOTICE '   deb bal %', debit_balance;
11393                         --RAISE NOTICE '      source % balance %', curr_credit_bal.source, conv_alloc_balance;
11394                         --RAISE NOTICE '      credit % balance %', curr_credit_bal.credit, conv_cred_balance;
11395                         --
11396                         conv_attr_amount := NULL;
11397                         attr_amount := debit_balance;
11398                         --
11399                         IF attr_amount > conv_alloc_balance THEN
11400                                 attr_amount := conv_alloc_balance;
11401                                 conv_attr_amount := curr_fund_source_bal.balance;
11402                         END IF;
11403                         IF attr_amount > conv_cred_balance THEN
11404                                 attr_amount := conv_cred_balance;
11405                                 conv_attr_amount := curr_credit_bal.balance;
11406                         END IF;
11407                         --
11408                         -- If we're attributing all of one of the balances, then that's how
11409                         -- much we will deduct from the balances, and we already captured
11410                         -- that amount above.  Otherwise we must convert the amount of the
11411                         -- attribution from the currency of the fund back to the currency of
11412                         -- the funding source.
11413                         --
11414                         IF conv_attr_amount IS NULL THEN
11415                                 conv_attr_amount := attr_amount * acq.exchange_ratio(
11416                                         deb.currency_type, curr_credit_bal.currency_type );
11417                         END IF;
11418                         --
11419                         -- Insert a row to record the attribution
11420                         --
11421                         attrib_count := attrib_count + 1;
11422                         INSERT INTO acq.debit_attribution (
11423                                 id,
11424                                 fund_debit,
11425                                 debit_amount,
11426                                 funding_source_credit,
11427                                 credit_amount
11428                         ) VALUES (
11429                                 attrib_count,
11430                                 deb.id,
11431                                 attr_amount,
11432                                 curr_credit_bal.credit,
11433                                 conv_attr_amount
11434                         );
11435                         --
11436                         -- Subtract the attributed amount from the various balances
11437                         --
11438                         debit_balance := debit_balance - attr_amount;
11439                         curr_fund_source_bal.balance := curr_fund_source_bal.balance - conv_attr_amount;
11440                         --
11441                         IF curr_fund_source_bal.balance <= 0 THEN
11442                                 --
11443                                 -- This allocation is exhausted.  Delete it so
11444                                 -- that we don't waste time looking at it again.
11445                                 --
11446                                 DELETE FROM t_fund_source_bal
11447                                 WHERE
11448                                         fund = curr_fund_source_bal.fund
11449                                         AND source = curr_fund_source_bal.source;
11450                         ELSE
11451                                 UPDATE t_fund_source_bal
11452                                 SET balance = balance - conv_attr_amount
11453                                 WHERE
11454                                         fund = curr_fund_source_bal.fund
11455                                         AND source = curr_fund_source_bal.source;
11456                         END IF;
11457                         --
11458                         IF curr_credit_bal.balance <= 0 THEN
11459                                 --
11460                                 -- This funding source credit is exhausted.  Delete it
11461                                 -- so that we don't waste time looking at it again.
11462                                 --
11463                                 --DELETE FROM t_credit
11464                                 --WHERE
11465                                 --      credit = curr_credit_bal.credit;
11466                                 --
11467                                 DELETE FROM t_fund_credit
11468                                 WHERE
11469                                         credit = curr_credit_bal.credit;
11470                         ELSE
11471                                 UPDATE t_credit
11472                                 SET balance = curr_credit_bal.balance
11473                                 WHERE
11474                                         credit = curr_credit_bal.credit;
11475                         END IF;
11476                         --
11477                         -- Are we done with this debit yet?
11478                         --
11479                         IF debit_balance <= 0 THEN
11480                                 EXIT;       -- We've fully attributed this debit; stop looking at credits.
11481                         END IF;
11482                 END LOOP;       -- End loop over credits
11483                 --
11484                 IF debit_balance <> 0 THEN
11485                         --
11486                         -- We weren't able to attribute this debit, or at least not
11487                         -- all of it.  Insert a row for the unattributed balance.
11488                         --
11489                         attrib_count := attrib_count + 1;
11490                         INSERT INTO acq.debit_attribution (
11491                                 id,
11492                                 fund_debit,
11493                                 debit_amount,
11494                                 funding_source_credit,
11495                                 credit_amount
11496                         ) VALUES (
11497                                 attrib_count,
11498                                 deb.id,
11499                                 debit_balance,
11500                                 NULL,
11501                                 NULL
11502                         );
11503                 END IF;
11504         END LOOP;   -- End of loop over debits
11505 END;
11506 $$ LANGUAGE 'plpgsql';
11507
11508 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
11509 DECLARE
11510     query TEXT;
11511     output TEXT;
11512 BEGIN
11513     query := $q$
11514         SELECT  regexp_replace(
11515                     oils_xpath_string(
11516                         $q$ || quote_literal($3) || $q$,
11517                         marc,
11518                         ' '
11519                     ),
11520                     $q$ || quote_literal($4) || $q$,
11521                     '',
11522                     'g')
11523           FROM  $q$ || $1 || $q$
11524           WHERE id = $q$ || $2;
11525
11526     EXECUTE query INTO output;
11527
11528     -- RAISE NOTICE 'query: %, output; %', query, output;
11529
11530     RETURN output;
11531 END;
11532 $$ LANGUAGE PLPGSQL IMMUTABLE;
11533
11534 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
11535     SELECT extract_marc_field($1,$2,$3,'');
11536 $$ LANGUAGE SQL IMMUTABLE;
11537
11538 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
11539 DECLARE
11540     moved_objects INT := 0;
11541     source_cn     asset.call_number%ROWTYPE;
11542     target_cn     asset.call_number%ROWTYPE;
11543     metarec       metabib.metarecord%ROWTYPE;
11544     hold          action.hold_request%ROWTYPE;
11545     ser_rec       serial.record_entry%ROWTYPE;
11546     uri_count     INT := 0;
11547     counter       INT := 0;
11548     uri_datafield TEXT;
11549     uri_text      TEXT := '';
11550 BEGIN
11551
11552     -- move any 856 entries on records that have at least one MARC-mapped URI entry
11553     SELECT  INTO uri_count COUNT(*)
11554       FROM  asset.uri_call_number_map m
11555             JOIN asset.call_number cn ON (m.call_number = cn.id)
11556       WHERE cn.record = source_record;
11557
11558     IF uri_count > 0 THEN
11559
11560         SELECT  COUNT(*) INTO counter
11561           FROM  oils_xpath_table(
11562                     'id',
11563                     'marc',
11564                     'biblio.record_entry',
11565                     '//*[@tag="856"]',
11566                     'id=' || source_record
11567                 ) as t(i int,c text);
11568
11569         FOR i IN 1 .. counter LOOP
11570             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' ||
11571                         ' tag="856"' || 
11572                         ' ind1="' || FIRST(ind1) || '"'  || 
11573                         ' ind2="' || FIRST(ind2) || '">' || 
11574                         array_to_string(
11575                             array_accum(
11576                                 '<subfield code="' || subfield || '">' ||
11577                                 regexp_replace(
11578                                     regexp_replace(
11579                                         regexp_replace(data,'&','&amp;','g'),
11580                                         '>', '&gt;', 'g'
11581                                     ),
11582                                     '<', '&lt;', 'g'
11583                                 ) || '</subfield>'
11584                             ), ''
11585                         ) || '</datafield>' INTO uri_datafield
11586               FROM  oils_xpath_table(
11587                         'id',
11588                         'marc',
11589                         'biblio.record_entry',
11590                         '//*[@tag="856"][position()=' || i || ']/@ind1|' || 
11591                         '//*[@tag="856"][position()=' || i || ']/@ind2|' || 
11592                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
11593                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
11594                         'id=' || source_record
11595                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
11596
11597             uri_text := uri_text || uri_datafield;
11598         END LOOP;
11599
11600         IF uri_text <> '' THEN
11601             UPDATE  biblio.record_entry
11602               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
11603               WHERE id = target_record;
11604         END IF;
11605
11606     END IF;
11607
11608     -- Find and move metarecords to the target record
11609     SELECT  INTO metarec *
11610       FROM  metabib.metarecord
11611       WHERE master_record = source_record;
11612
11613     IF FOUND THEN
11614         UPDATE  metabib.metarecord
11615           SET   master_record = target_record,
11616             mods = NULL
11617           WHERE id = metarec.id;
11618
11619         moved_objects := moved_objects + 1;
11620     END IF;
11621
11622     -- Find call numbers attached to the source ...
11623     FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
11624
11625         SELECT  INTO target_cn *
11626           FROM  asset.call_number
11627           WHERE label = source_cn.label
11628             AND owning_lib = source_cn.owning_lib
11629             AND record = target_record;
11630
11631         -- ... and if there's a conflicting one on the target ...
11632         IF FOUND THEN
11633
11634             -- ... move the copies to that, and ...
11635             UPDATE  asset.copy
11636               SET   call_number = target_cn.id
11637               WHERE call_number = source_cn.id;
11638
11639             -- ... move V holds to the move-target call number
11640             FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
11641
11642                 UPDATE  action.hold_request
11643                   SET   target = target_cn.id
11644                   WHERE id = hold.id;
11645
11646                 moved_objects := moved_objects + 1;
11647             END LOOP;
11648
11649         -- ... if not ...
11650         ELSE
11651             -- ... just move the call number to the target record
11652             UPDATE  asset.call_number
11653               SET   record = target_record
11654               WHERE id = source_cn.id;
11655         END IF;
11656
11657         moved_objects := moved_objects + 1;
11658     END LOOP;
11659
11660     -- Find T holds targeting the source record ...
11661     FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
11662
11663         -- ... and move them to the target record
11664         UPDATE  action.hold_request
11665           SET   target = target_record
11666           WHERE id = hold.id;
11667
11668         moved_objects := moved_objects + 1;
11669     END LOOP;
11670
11671     -- Find serial records targeting the source record ...
11672     FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
11673         -- ... and move them to the target record
11674         UPDATE  serial.record_entry
11675           SET   record = target_record
11676           WHERE id = ser_rec.id;
11677
11678         moved_objects := moved_objects + 1;
11679     END LOOP;
11680
11681     -- Finally, "delete" the source record
11682     DELETE FROM biblio.record_entry WHERE id = source_record;
11683
11684     -- That's all, folks!
11685     RETURN moved_objects;
11686 END;
11687 $func$ LANGUAGE plpgsql;
11688
11689 CREATE OR REPLACE FUNCTION acq.transfer_fund(
11690         old_fund   IN INT,
11691         old_amount IN NUMERIC,     -- in currency of old fund
11692         new_fund   IN INT,
11693         new_amount IN NUMERIC,     -- in currency of new fund
11694         user_id    IN INT,
11695         xfer_note  IN TEXT         -- to be recorded in acq.fund_transfer
11696         -- ,funding_source_in IN INT  -- if user wants to specify a funding source (see notes)
11697 ) RETURNS VOID AS $$
11698 /* -------------------------------------------------------------------------------
11699
11700 Function to transfer money from one fund to another.
11701
11702 A transfer is represented as a pair of entries in acq.fund_allocation, with a
11703 negative amount for the old (losing) fund and a positive amount for the new
11704 (gaining) fund.  In some cases there may be more than one such pair of entries
11705 in order to pull the money from different funding sources, or more specifically
11706 from different funding source credits.  For each such pair there is also an
11707 entry in acq.fund_transfer.
11708
11709 Since funding_source is a non-nullable column in acq.fund_allocation, we must
11710 choose a funding source for the transferred money to come from.  This choice
11711 must meet two constraints, so far as possible:
11712
11713 1. The amount transferred from a given funding source must not exceed the
11714 amount allocated to the old fund by the funding source.  To that end we
11715 compare the amount being transferred to the amount allocated.
11716
11717 2. We shouldn't transfer money that has already been spent or encumbered, as
11718 defined by the funding attribution process.  We attribute expenses to the
11719 oldest funding source credits first.  In order to avoid transferring that
11720 attributed money, we reverse the priority, transferring from the newest funding
11721 source credits first.  There can be no guarantee that this approach will
11722 avoid overcommitting a fund, but no other approach can do any better.
11723
11724 In this context the age of a funding source credit is defined by the
11725 deadline_date for credits with deadline_dates, and by the effective_date for
11726 credits without deadline_dates, with the proviso that credits with deadline_dates
11727 are all considered "older" than those without.
11728
11729 ----------
11730
11731 In the signature for this function, there is one last parameter commented out,
11732 named "funding_source_in".  Correspondingly, the WHERE clause for the query
11733 driving the main loop has an OR clause commented out, which references the
11734 funding_source_in parameter.
11735
11736 If these lines are uncommented, this function will allow the user optionally to
11737 restrict a fund transfer to a specified funding source.  If the source
11738 parameter is left NULL, then there will be no such restriction.
11739
11740 ------------------------------------------------------------------------------- */ 
11741 DECLARE
11742         same_currency      BOOLEAN;
11743         currency_ratio     NUMERIC;
11744         old_fund_currency  TEXT;
11745         old_remaining      NUMERIC;  -- in currency of old fund
11746         new_fund_currency  TEXT;
11747         new_fund_active    BOOLEAN;
11748         new_remaining      NUMERIC;  -- in currency of new fund
11749         curr_old_amt       NUMERIC;  -- in currency of old fund
11750         curr_new_amt       NUMERIC;  -- in currency of new fund
11751         source_addition    NUMERIC;  -- in currency of funding source
11752         source_deduction   NUMERIC;  -- in currency of funding source
11753         orig_allocated_amt NUMERIC;  -- in currency of funding source
11754         allocated_amt      NUMERIC;  -- in currency of fund
11755         source             RECORD;
11756 BEGIN
11757         --
11758         -- Sanity checks
11759         --
11760         IF old_fund IS NULL THEN
11761                 RAISE EXCEPTION 'acq.transfer_fund: old fund id is NULL';
11762         END IF;
11763         --
11764         IF old_amount IS NULL THEN
11765                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer is NULL';
11766         END IF;
11767         --
11768         -- The new fund and its amount must be both NULL or both not NULL.
11769         --
11770         IF new_fund IS NOT NULL AND new_amount IS NULL THEN
11771                 RAISE EXCEPTION 'acq.transfer_fund: amount to transfer to receiving fund is NULL';
11772         END IF;
11773         --
11774         IF new_fund IS NULL AND new_amount IS NOT NULL THEN
11775                 RAISE EXCEPTION 'acq.transfer_fund: receiving fund is NULL, its amount is not NULL';
11776         END IF;
11777         --
11778         IF user_id IS NULL THEN
11779                 RAISE EXCEPTION 'acq.transfer_fund: user id is NULL';
11780         END IF;
11781         --
11782         -- Initialize the amounts to be transferred, each denominated
11783         -- in the currency of its respective fund.  They will be
11784         -- reduced on each iteration of the loop.
11785         --
11786         old_remaining := old_amount;
11787         new_remaining := new_amount;
11788         --
11789         -- RAISE NOTICE 'Transferring % in fund % to % in fund %',
11790         --      old_amount, old_fund, new_amount, new_fund;
11791         --
11792         -- Get the currency types of the old and new funds.
11793         --
11794         SELECT
11795                 currency_type
11796         INTO
11797                 old_fund_currency
11798         FROM
11799                 acq.fund
11800         WHERE
11801                 id = old_fund;
11802         --
11803         IF old_fund_currency IS NULL THEN
11804                 RAISE EXCEPTION 'acq.transfer_fund: old fund id % is not defined', old_fund;
11805         END IF;
11806         --
11807         IF new_fund IS NOT NULL THEN
11808                 SELECT
11809                         currency_type,
11810                         active
11811                 INTO
11812                         new_fund_currency,
11813                         new_fund_active
11814                 FROM
11815                         acq.fund
11816                 WHERE
11817                         id = new_fund;
11818                 --
11819                 IF new_fund_currency IS NULL THEN
11820                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is not defined', new_fund;
11821                 ELSIF NOT new_fund_active THEN
11822                         --
11823                         -- No point in putting money into a fund from whence you can't spend it
11824                         --
11825                         RAISE EXCEPTION 'acq.transfer_fund: new fund id % is inactive', new_fund;
11826                 END IF;
11827                 --
11828                 IF new_amount = old_amount THEN
11829                         same_currency := true;
11830                         currency_ratio := 1;
11831                 ELSE
11832                         --
11833                         -- We'll have to translate currency between funds.  We presume that
11834                         -- the calling code has already applied an appropriate exchange rate,
11835                         -- so we'll apply the same conversion to each sub-transfer.
11836                         --
11837                         same_currency := false;
11838                         currency_ratio := new_amount / old_amount;
11839                 END IF;
11840         END IF;
11841         --
11842         -- Identify the funding source(s) from which we want to transfer the money.
11843         -- The principle is that we want to transfer the newest money first, because
11844         -- we spend the oldest money first.  The priority for spending is defined
11845         -- by a sort of the view acq.ordered_funding_source_credit.
11846         --
11847         FOR source in
11848                 SELECT
11849                         ofsc.id,
11850                         ofsc.funding_source,
11851                         ofsc.amount,
11852                         ofsc.amount * acq.exchange_ratio( fs.currency_type, old_fund_currency )
11853                                 AS converted_amt,
11854                         fs.currency_type
11855                 FROM
11856                         acq.ordered_funding_source_credit AS ofsc,
11857                         acq.funding_source fs
11858                 WHERE
11859                         ofsc.funding_source = fs.id
11860                         and ofsc.funding_source IN
11861                         (
11862                                 SELECT funding_source
11863                                 FROM acq.fund_allocation
11864                                 WHERE fund = old_fund
11865                         )
11866                         -- and
11867                         -- (
11868                         --      ofsc.funding_source = funding_source_in
11869                         --      OR funding_source_in IS NULL
11870                         -- )
11871                 ORDER BY
11872                         ofsc.sort_priority desc,
11873                         ofsc.sort_date desc,
11874                         ofsc.id desc
11875         LOOP
11876                 --
11877                 -- Determine how much money the old fund got from this funding source,
11878                 -- denominated in the currency types of the source and of the fund.
11879                 -- This result may reflect transfers from previous iterations.
11880                 --
11881                 SELECT
11882                         COALESCE( sum( amount ), 0 ),
11883                         COALESCE( sum( amount )
11884                                 * acq.exchange_ratio( source.currency_type, old_fund_currency ), 0 )
11885                 INTO
11886                         orig_allocated_amt,     -- in currency of the source
11887                         allocated_amt           -- in currency of the old fund
11888                 FROM
11889                         acq.fund_allocation
11890                 WHERE
11891                         fund = old_fund
11892                         and funding_source = source.funding_source;
11893                 --      
11894                 -- Determine how much to transfer from this credit, in the currency
11895                 -- of the fund.   Begin with the amount remaining to be attributed:
11896                 --
11897                 curr_old_amt := old_remaining;
11898                 --
11899                 -- Can't attribute more than was allocated from the fund:
11900                 --
11901                 IF curr_old_amt > allocated_amt THEN
11902                         curr_old_amt := allocated_amt;
11903                 END IF;
11904                 --
11905                 -- Can't attribute more than the amount of the current credit:
11906                 --
11907                 IF curr_old_amt > source.converted_amt THEN
11908                         curr_old_amt := source.converted_amt;
11909                 END IF;
11910                 --
11911                 curr_old_amt := trunc( curr_old_amt, 2 );
11912                 --
11913                 old_remaining := old_remaining - curr_old_amt;
11914                 --
11915                 -- Determine the amount to be deducted, if any,
11916                 -- from the old allocation.
11917                 --
11918                 IF old_remaining > 0 THEN
11919                         --
11920                         -- In this case we're using the whole allocation, so use that
11921                         -- amount directly instead of applying a currency translation
11922                         -- and thereby inviting round-off errors.
11923                         --
11924                         source_deduction := - orig_allocated_amt;
11925                 ELSE 
11926                         source_deduction := trunc(
11927                                 ( - curr_old_amt ) *
11928                                         acq.exchange_ratio( old_fund_currency, source.currency_type ),
11929                                 2 );
11930                 END IF;
11931                 --
11932                 IF source_deduction <> 0 THEN
11933                         --
11934                         -- Insert negative allocation for old fund in fund_allocation,
11935                         -- converted into the currency of the funding source
11936                         --
11937                         INSERT INTO acq.fund_allocation (
11938                                 funding_source,
11939                                 fund,
11940                                 amount,
11941                                 allocator,
11942                                 note
11943                         ) VALUES (
11944                                 source.funding_source,
11945                                 old_fund,
11946                                 source_deduction,
11947                                 user_id,
11948                                 'Transfer to fund ' || new_fund
11949                         );
11950                 END IF;
11951                 --
11952                 IF new_fund IS NOT NULL THEN
11953                         --
11954                         -- Determine how much to add to the new fund, in
11955                         -- its currency, and how much remains to be added:
11956                         --
11957                         IF same_currency THEN
11958                                 curr_new_amt := curr_old_amt;
11959                         ELSE
11960                                 IF old_remaining = 0 THEN
11961                                         --
11962                                         -- This is the last iteration, so nothing should be left
11963                                         --
11964                                         curr_new_amt := new_remaining;
11965                                         new_remaining := 0;
11966                                 ELSE
11967                                         curr_new_amt := trunc( curr_old_amt * currency_ratio, 2 );
11968                                         new_remaining := new_remaining - curr_new_amt;
11969                                 END IF;
11970                         END IF;
11971                         --
11972                         -- Determine how much to add, if any,
11973                         -- to the new fund's allocation.
11974                         --
11975                         IF old_remaining > 0 THEN
11976                                 --
11977                                 -- In this case we're using the whole allocation, so use that amount
11978                                 -- amount directly instead of applying a currency translation and
11979                                 -- thereby inviting round-off errors.
11980                                 --
11981                                 source_addition := orig_allocated_amt;
11982                         ELSIF source.currency_type = old_fund_currency THEN
11983                                 --
11984                                 -- In this case we don't need a round trip currency translation,
11985                                 -- thereby inviting round-off errors:
11986                                 --
11987                                 source_addition := curr_old_amt;
11988                         ELSE 
11989                                 source_addition := trunc(
11990                                         curr_new_amt *
11991                                                 acq.exchange_ratio( new_fund_currency, source.currency_type ),
11992                                         2 );
11993                         END IF;
11994                         --
11995                         IF source_addition <> 0 THEN
11996                                 --
11997                                 -- Insert positive allocation for new fund in fund_allocation,
11998                                 -- converted to the currency of the founding source
11999                                 --
12000                                 INSERT INTO acq.fund_allocation (
12001                                         funding_source,
12002                                         fund,
12003                                         amount,
12004                                         allocator,
12005                                         note
12006                                 ) VALUES (
12007                                         source.funding_source,
12008                                         new_fund,
12009                                         source_addition,
12010                                         user_id,
12011                                         'Transfer from fund ' || old_fund
12012                                 );
12013                         END IF;
12014                 END IF;
12015                 --
12016                 IF trunc( curr_old_amt, 2 ) <> 0
12017                 OR trunc( curr_new_amt, 2 ) <> 0 THEN
12018                         --
12019                         -- Insert row in fund_transfer, using amounts in the currency of the funds
12020                         --
12021                         INSERT INTO acq.fund_transfer (
12022                                 src_fund,
12023                                 src_amount,
12024                                 dest_fund,
12025                                 dest_amount,
12026                                 transfer_user,
12027                                 note,
12028                                 funding_source_credit
12029                         ) VALUES (
12030                                 old_fund,
12031                                 trunc( curr_old_amt, 2 ),
12032                                 new_fund,
12033                                 trunc( curr_new_amt, 2 ),
12034                                 user_id,
12035                                 xfer_note,
12036                                 source.id
12037                         );
12038                 END IF;
12039                 --
12040                 if old_remaining <= 0 THEN
12041                         EXIT;                   -- Nothing more to be transferred
12042                 END IF;
12043         END LOOP;
12044 END;
12045 $$ LANGUAGE plpgsql;
12046
12047 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_unit(
12048         old_year INTEGER,
12049         user_id INTEGER,
12050         org_unit_id INTEGER
12051 ) RETURNS VOID AS $$
12052 DECLARE
12053 --
12054 new_id      INT;
12055 old_fund    RECORD;
12056 org_found   BOOLEAN;
12057 --
12058 BEGIN
12059         --
12060         -- Sanity checks
12061         --
12062         IF old_year IS NULL THEN
12063                 RAISE EXCEPTION 'Input year argument is NULL';
12064         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12065                 RAISE EXCEPTION 'Input year is out of range';
12066         END IF;
12067         --
12068         IF user_id IS NULL THEN
12069                 RAISE EXCEPTION 'Input user id argument is NULL';
12070         END IF;
12071         --
12072         IF org_unit_id IS NULL THEN
12073                 RAISE EXCEPTION 'Org unit id argument is NULL';
12074         ELSE
12075                 SELECT TRUE INTO org_found
12076                 FROM actor.org_unit
12077                 WHERE id = org_unit_id;
12078                 --
12079                 IF org_found IS NULL THEN
12080                         RAISE EXCEPTION 'Org unit id is invalid';
12081                 END IF;
12082         END IF;
12083         --
12084         -- Loop over the applicable funds
12085         --
12086         FOR old_fund in SELECT * FROM acq.fund
12087         WHERE
12088                 year = old_year
12089                 AND propagate
12090                 AND org = org_unit_id
12091         LOOP
12092                 BEGIN
12093                         INSERT INTO acq.fund (
12094                                 org,
12095                                 name,
12096                                 year,
12097                                 currency_type,
12098                                 code,
12099                                 rollover,
12100                                 propagate,
12101                                 balance_warning_percent,
12102                                 balance_stop_percent
12103                         ) VALUES (
12104                                 old_fund.org,
12105                                 old_fund.name,
12106                                 old_year + 1,
12107                                 old_fund.currency_type,
12108                                 old_fund.code,
12109                                 old_fund.rollover,
12110                                 true,
12111                                 old_fund.balance_warning_percent,
12112                                 old_fund.balance_stop_percent
12113                         )
12114                         RETURNING id INTO new_id;
12115                 EXCEPTION
12116                         WHEN unique_violation THEN
12117                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12118                                 CONTINUE;
12119                 END;
12120                 --RAISE NOTICE 'Propagating fund % to fund %',
12121                 --      old_fund.code, new_id;
12122         END LOOP;
12123 END;
12124 $$ LANGUAGE plpgsql;
12125
12126 CREATE OR REPLACE FUNCTION acq.propagate_funds_by_org_tree(
12127         old_year INTEGER,
12128         user_id INTEGER,
12129         org_unit_id INTEGER
12130 ) RETURNS VOID AS $$
12131 DECLARE
12132 --
12133 new_id      INT;
12134 old_fund    RECORD;
12135 org_found   BOOLEAN;
12136 --
12137 BEGIN
12138         --
12139         -- Sanity checks
12140         --
12141         IF old_year IS NULL THEN
12142                 RAISE EXCEPTION 'Input year argument is NULL';
12143         ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12144                 RAISE EXCEPTION 'Input year is out of range';
12145         END IF;
12146         --
12147         IF user_id IS NULL THEN
12148                 RAISE EXCEPTION 'Input user id argument is NULL';
12149         END IF;
12150         --
12151         IF org_unit_id IS NULL THEN
12152                 RAISE EXCEPTION 'Org unit id argument is NULL';
12153         ELSE
12154                 SELECT TRUE INTO org_found
12155                 FROM actor.org_unit
12156                 WHERE id = org_unit_id;
12157                 --
12158                 IF org_found IS NULL THEN
12159                         RAISE EXCEPTION 'Org unit id is invalid';
12160                 END IF;
12161         END IF;
12162         --
12163         -- Loop over the applicable funds
12164         --
12165         FOR old_fund in SELECT * FROM acq.fund
12166         WHERE
12167                 year = old_year
12168                 AND propagate
12169                 AND org in (
12170                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12171                 )
12172         LOOP
12173                 BEGIN
12174                         INSERT INTO acq.fund (
12175                                 org,
12176                                 name,
12177                                 year,
12178                                 currency_type,
12179                                 code,
12180                                 rollover,
12181                                 propagate,
12182                                 balance_warning_percent,
12183                                 balance_stop_percent
12184                         ) VALUES (
12185                                 old_fund.org,
12186                                 old_fund.name,
12187                                 old_year + 1,
12188                                 old_fund.currency_type,
12189                                 old_fund.code,
12190                                 old_fund.rollover,
12191                                 true,
12192                                 old_fund.balance_warning_percent,
12193                                 old_fund.balance_stop_percent
12194                         )
12195                         RETURNING id INTO new_id;
12196                 EXCEPTION
12197                         WHEN unique_violation THEN
12198                                 --RAISE NOTICE 'Fund % already propagated', old_fund.id;
12199                                 CONTINUE;
12200                 END;
12201                 --RAISE NOTICE 'Propagating fund % to fund %',
12202                 --      old_fund.code, new_id;
12203         END LOOP;
12204 END;
12205 $$ LANGUAGE plpgsql;
12206
12207 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_unit(
12208         old_year INTEGER,
12209         user_id INTEGER,
12210         org_unit_id INTEGER
12211 ) RETURNS VOID AS $$
12212 DECLARE
12213 --
12214 new_fund    INT;
12215 new_year    INT := old_year + 1;
12216 org_found   BOOL;
12217 xfer_amount NUMERIC;
12218 roll_fund   RECORD;
12219 deb         RECORD;
12220 detail      RECORD;
12221 --
12222 BEGIN
12223         --
12224         -- Sanity checks
12225         --
12226         IF old_year IS NULL THEN
12227                 RAISE EXCEPTION 'Input year argument is NULL';
12228     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12229         RAISE EXCEPTION 'Input year is out of range';
12230         END IF;
12231         --
12232         IF user_id IS NULL THEN
12233                 RAISE EXCEPTION 'Input user id argument is NULL';
12234         END IF;
12235         --
12236         IF org_unit_id IS NULL THEN
12237                 RAISE EXCEPTION 'Org unit id argument is NULL';
12238         ELSE
12239                 --
12240                 -- Validate the org unit
12241                 --
12242                 SELECT TRUE
12243                 INTO org_found
12244                 FROM actor.org_unit
12245                 WHERE id = org_unit_id;
12246                 --
12247                 IF org_found IS NULL THEN
12248                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12249                 END IF;
12250         END IF;
12251         --
12252         -- Loop over the propagable funds to identify the details
12253         -- from the old fund plus the id of the new one, if it exists.
12254         --
12255         FOR roll_fund in
12256         SELECT
12257             oldf.id AS old_fund,
12258             oldf.org,
12259             oldf.name,
12260             oldf.currency_type,
12261             oldf.code,
12262                 oldf.rollover,
12263             newf.id AS new_fund_id
12264         FROM
12265         acq.fund AS oldf
12266         LEFT JOIN acq.fund AS newf
12267                 ON ( oldf.code = newf.code )
12268         WHERE
12269                     oldf.org = org_unit_id
12270                 and oldf.year = old_year
12271                 and oldf.propagate
12272         and newf.year = new_year
12273         LOOP
12274                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12275                 --
12276                 IF roll_fund.new_fund_id IS NULL THEN
12277                         --
12278                         -- The old fund hasn't been propagated yet.  Propagate it now.
12279                         --
12280                         INSERT INTO acq.fund (
12281                                 org,
12282                                 name,
12283                                 year,
12284                                 currency_type,
12285                                 code,
12286                                 rollover,
12287                                 propagate,
12288                                 balance_warning_percent,
12289                                 balance_stop_percent
12290                         ) VALUES (
12291                                 roll_fund.org,
12292                                 roll_fund.name,
12293                                 new_year,
12294                                 roll_fund.currency_type,
12295                                 roll_fund.code,
12296                                 true,
12297                                 true,
12298                                 roll_fund.balance_warning_percent,
12299                                 roll_fund.balance_stop_percent
12300                         )
12301                         RETURNING id INTO new_fund;
12302                 ELSE
12303                         new_fund = roll_fund.new_fund_id;
12304                 END IF;
12305                 --
12306                 -- Determine the amount to transfer
12307                 --
12308                 SELECT amount
12309                 INTO xfer_amount
12310                 FROM acq.fund_spent_balance
12311                 WHERE fund = roll_fund.old_fund;
12312                 --
12313                 IF xfer_amount <> 0 THEN
12314                         IF roll_fund.rollover THEN
12315                                 --
12316                                 -- Transfer balance from old fund to new
12317                                 --
12318                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12319                                 --
12320                                 PERFORM acq.transfer_fund(
12321                                         roll_fund.old_fund,
12322                                         xfer_amount,
12323                                         new_fund,
12324                                         xfer_amount,
12325                                         user_id,
12326                                         'Rollover'
12327                                 );
12328                         ELSE
12329                                 --
12330                                 -- Transfer balance from old fund to the void
12331                                 --
12332                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12333                                 --
12334                                 PERFORM acq.transfer_fund(
12335                                         roll_fund.old_fund,
12336                                         xfer_amount,
12337                                         NULL,
12338                                         NULL,
12339                                         user_id,
12340                                         'Rollover'
12341                                 );
12342                         END IF;
12343                 END IF;
12344                 --
12345                 IF roll_fund.rollover THEN
12346                         --
12347                         -- Move any lineitems from the old fund to the new one
12348                         -- where the associated debit is an encumbrance.
12349                         --
12350                         -- Any other tables tying expenditure details to funds should
12351                         -- receive similar treatment.  At this writing there are none.
12352                         --
12353                         UPDATE acq.lineitem_detail
12354                         SET fund = new_fund
12355                         WHERE
12356                         fund = roll_fund.old_fund -- this condition may be redundant
12357                         AND fund_debit in
12358                         (
12359                                 SELECT id
12360                                 FROM acq.fund_debit
12361                                 WHERE
12362                                 fund = roll_fund.old_fund
12363                                 AND encumbrance
12364                         );
12365                         --
12366                         -- Move encumbrance debits from the old fund to the new fund
12367                         --
12368                         UPDATE acq.fund_debit
12369                         SET fund = new_fund
12370                         wHERE
12371                                 fund = roll_fund.old_fund
12372                                 AND encumbrance;
12373                 END IF;
12374                 --
12375                 -- Mark old fund as inactive, now that we've closed it
12376                 --
12377                 UPDATE acq.fund
12378                 SET active = FALSE
12379                 WHERE id = roll_fund.old_fund;
12380         END LOOP;
12381 END;
12382 $$ LANGUAGE plpgsql;
12383
12384 CREATE OR REPLACE FUNCTION acq.rollover_funds_by_org_tree(
12385         old_year INTEGER,
12386         user_id INTEGER,
12387         org_unit_id INTEGER
12388 ) RETURNS VOID AS $$
12389 DECLARE
12390 --
12391 new_fund    INT;
12392 new_year    INT := old_year + 1;
12393 org_found   BOOL;
12394 xfer_amount NUMERIC;
12395 roll_fund   RECORD;
12396 deb         RECORD;
12397 detail      RECORD;
12398 --
12399 BEGIN
12400         --
12401         -- Sanity checks
12402         --
12403         IF old_year IS NULL THEN
12404                 RAISE EXCEPTION 'Input year argument is NULL';
12405     ELSIF old_year NOT BETWEEN 2008 and 2200 THEN
12406         RAISE EXCEPTION 'Input year is out of range';
12407         END IF;
12408         --
12409         IF user_id IS NULL THEN
12410                 RAISE EXCEPTION 'Input user id argument is NULL';
12411         END IF;
12412         --
12413         IF org_unit_id IS NULL THEN
12414                 RAISE EXCEPTION 'Org unit id argument is NULL';
12415         ELSE
12416                 --
12417                 -- Validate the org unit
12418                 --
12419                 SELECT TRUE
12420                 INTO org_found
12421                 FROM actor.org_unit
12422                 WHERE id = org_unit_id;
12423                 --
12424                 IF org_found IS NULL THEN
12425                         RAISE EXCEPTION 'Org unit id % is invalid', org_unit_id;
12426                 END IF;
12427         END IF;
12428         --
12429         -- Loop over the propagable funds to identify the details
12430         -- from the old fund plus the id of the new one, if it exists.
12431         --
12432         FOR roll_fund in
12433         SELECT
12434             oldf.id AS old_fund,
12435             oldf.org,
12436             oldf.name,
12437             oldf.currency_type,
12438             oldf.code,
12439                 oldf.rollover,
12440             newf.id AS new_fund_id
12441         FROM
12442         acq.fund AS oldf
12443         LEFT JOIN acq.fund AS newf
12444                 ON ( oldf.code = newf.code )
12445         WHERE
12446                     oldf.year = old_year
12447                 AND oldf.propagate
12448         AND newf.year = new_year
12449                 AND oldf.org in (
12450                         SELECT id FROM actor.org_unit_descendants( org_unit_id )
12451                 )
12452         LOOP
12453                 --RAISE NOTICE 'Processing fund %', roll_fund.old_fund;
12454                 --
12455                 IF roll_fund.new_fund_id IS NULL THEN
12456                         --
12457                         -- The old fund hasn't been propagated yet.  Propagate it now.
12458                         --
12459                         INSERT INTO acq.fund (
12460                                 org,
12461                                 name,
12462                                 year,
12463                                 currency_type,
12464                                 code,
12465                                 rollover,
12466                                 propagate,
12467                                 balance_warning_percent,
12468                                 balance_stop_percent
12469                         ) VALUES (
12470                                 roll_fund.org,
12471                                 roll_fund.name,
12472                                 new_year,
12473                                 roll_fund.currency_type,
12474                                 roll_fund.code,
12475                                 true,
12476                                 true,
12477                                 roll_fund.balance_warning_percent,
12478                                 roll_fund.balance_stop_percent
12479                         )
12480                         RETURNING id INTO new_fund;
12481                 ELSE
12482                         new_fund = roll_fund.new_fund_id;
12483                 END IF;
12484                 --
12485                 -- Determine the amount to transfer
12486                 --
12487                 SELECT amount
12488                 INTO xfer_amount
12489                 FROM acq.fund_spent_balance
12490                 WHERE fund = roll_fund.old_fund;
12491                 --
12492                 IF xfer_amount <> 0 THEN
12493                         IF roll_fund.rollover THEN
12494                                 --
12495                                 -- Transfer balance from old fund to new
12496                                 --
12497                                 --RAISE NOTICE 'Transferring % from fund % to %', xfer_amount, roll_fund.old_fund, new_fund;
12498                                 --
12499                                 PERFORM acq.transfer_fund(
12500                                         roll_fund.old_fund,
12501                                         xfer_amount,
12502                                         new_fund,
12503                                         xfer_amount,
12504                                         user_id,
12505                                         'Rollover'
12506                                 );
12507                         ELSE
12508                                 --
12509                                 -- Transfer balance from old fund to the void
12510                                 --
12511                                 -- RAISE NOTICE 'Transferring % from fund % to the void', xfer_amount, roll_fund.old_fund;
12512                                 --
12513                                 PERFORM acq.transfer_fund(
12514                                         roll_fund.old_fund,
12515                                         xfer_amount,
12516                                         NULL,
12517                                         NULL,
12518                                         user_id,
12519                                         'Rollover'
12520                                 );
12521                         END IF;
12522                 END IF;
12523                 --
12524                 IF roll_fund.rollover THEN
12525                         --
12526                         -- Move any lineitems from the old fund to the new one
12527                         -- where the associated debit is an encumbrance.
12528                         --
12529                         -- Any other tables tying expenditure details to funds should
12530                         -- receive similar treatment.  At this writing there are none.
12531                         --
12532                         UPDATE acq.lineitem_detail
12533                         SET fund = new_fund
12534                         WHERE
12535                         fund = roll_fund.old_fund -- this condition may be redundant
12536                         AND fund_debit in
12537                         (
12538                                 SELECT id
12539                                 FROM acq.fund_debit
12540                                 WHERE
12541                                 fund = roll_fund.old_fund
12542                                 AND encumbrance
12543                         );
12544                         --
12545                         -- Move encumbrance debits from the old fund to the new fund
12546                         --
12547                         UPDATE acq.fund_debit
12548                         SET fund = new_fund
12549                         wHERE
12550                                 fund = roll_fund.old_fund
12551                                 AND encumbrance;
12552                 END IF;
12553                 --
12554                 -- Mark old fund as inactive, now that we've closed it
12555                 --
12556                 UPDATE acq.fund
12557                 SET active = FALSE
12558                 WHERE id = roll_fund.old_fund;
12559         END LOOP;
12560 END;
12561 $$ LANGUAGE plpgsql;
12562
12563 CREATE OR REPLACE FUNCTION public.remove_commas( TEXT ) RETURNS TEXT AS $$
12564     SELECT regexp_replace($1, ',', '', 'g');
12565 $$ LANGUAGE SQL STRICT IMMUTABLE;
12566
12567 CREATE OR REPLACE FUNCTION public.remove_whitespace( TEXT ) RETURNS TEXT AS $$
12568     SELECT regexp_replace(normalize_space($1), E'\\s+', '', 'g');
12569 $$ LANGUAGE SQL STRICT IMMUTABLE;
12570
12571 CREATE TABLE acq.distribution_formula_application (
12572     id BIGSERIAL PRIMARY KEY,
12573     creator INT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED,
12574     create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
12575     formula INT NOT NULL
12576         REFERENCES acq.distribution_formula(id) DEFERRABLE INITIALLY DEFERRED,
12577     lineitem INT NOT NULL
12578         REFERENCES acq.lineitem( id )
12579                 ON DELETE CASCADE
12580                 DEFERRABLE INITIALLY DEFERRED
12581 );
12582
12583 CREATE INDEX acqdfa_df_idx
12584     ON acq.distribution_formula_application(formula);
12585 CREATE INDEX acqdfa_li_idx
12586     ON acq.distribution_formula_application(lineitem);
12587 CREATE INDEX acqdfa_creator_idx
12588     ON acq.distribution_formula_application(creator);
12589
12590 CREATE TABLE acq.user_request_type (
12591     id      SERIAL  PRIMARY KEY,
12592     label   TEXT    NOT NULL UNIQUE -- i18n-ize
12593 );
12594
12595 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
12596 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Journal/Magazine & Newspaper Articles', 'aurt', 'label'));
12597 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
12598 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
12599 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
12600
12601 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 6);
12602
12603 CREATE TABLE acq.cancel_reason (
12604         id            SERIAL            PRIMARY KEY,
12605         org_unit      INTEGER           NOT NULL REFERENCES actor.org_unit( id )
12606                                         DEFERRABLE INITIALLY DEFERRED,
12607         label         TEXT              NOT NULL,
12608         description   TEXT              NOT NULL,
12609         keep_debits   BOOL              NOT NULL DEFAULT FALSE,
12610         CONSTRAINT acq_cancel_reason_one_per_org_unit UNIQUE( org_unit, label )
12611 );
12612
12613 -- Reserve ids 1-999 for stock reasons
12614 -- Reserve ids 1000-1999 for EDI reasons
12615 -- 2000+ are available for staff to create
12616
12617 SELECT SETVAL('acq.cancel_reason_id_seq'::TEXT, 2000);
12618
12619 CREATE TABLE acq.user_request (
12620     id                  SERIAL  PRIMARY KEY,
12621     usr                 INT     NOT NULL REFERENCES actor.usr (id), -- requesting user
12622     hold                BOOL    NOT NULL DEFAULT TRUE,
12623
12624     pickup_lib          INT     NOT NULL REFERENCES actor.org_unit (id), -- pickup lib
12625     holdable_formats    TEXT,           -- nullable, for use in hold creation
12626     phone_notify        TEXT,
12627     email_notify        BOOL    NOT NULL DEFAULT TRUE,
12628     lineitem            INT     REFERENCES acq.lineitem (id) ON DELETE CASCADE,
12629     eg_bib              BIGINT  REFERENCES biblio.record_entry (id) ON DELETE CASCADE,
12630     request_date        TIMESTAMPTZ NOT NULL DEFAULT NOW(), -- when they requested it
12631     need_before         TIMESTAMPTZ,    -- don't create holds after this
12632     max_fee             TEXT,
12633
12634     request_type        INT     NOT NULL REFERENCES acq.user_request_type (id), 
12635     isxn                TEXT,
12636     title               TEXT,
12637     volume              TEXT,
12638     author              TEXT,
12639     article_title       TEXT,
12640     article_pages       TEXT,
12641     publisher           TEXT,
12642     location            TEXT,
12643     pubdate             TEXT,
12644     mentioned           TEXT,
12645     other_info          TEXT,
12646         cancel_reason       INT              REFERENCES acq.cancel_reason( id )
12647                                              DEFERRABLE INITIALLY DEFERRED
12648 );
12649
12650 CREATE TABLE acq.lineitem_alert_text (
12651         id               SERIAL         PRIMARY KEY,
12652         code             TEXT           UNIQUE NOT NULL,
12653         description      TEXT,
12654         owning_lib       INT            NOT NULL
12655                                         REFERENCES actor.org_unit(id)
12656                                         DEFERRABLE INITIALLY DEFERRED,
12657         CONSTRAINT alert_one_code_per_org UNIQUE (code, owning_lib)
12658 );
12659
12660 ALTER TABLE acq.lineitem_note
12661         ADD COLUMN alert_text    INT     REFERENCES acq.lineitem_alert_text(id)
12662                                          DEFERRABLE INITIALLY DEFERRED;
12663
12664 -- add ON DELETE CASCADE clause
12665
12666 ALTER TABLE acq.lineitem_note
12667         DROP CONSTRAINT lineitem_note_lineitem_fkey;
12668
12669 ALTER TABLE acq.lineitem_note
12670         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
12671                 ON DELETE CASCADE
12672                 DEFERRABLE INITIALLY DEFERRED;
12673
12674 ALTER TABLE acq.lineitem_note
12675         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
12676
12677 CREATE TABLE acq.invoice_method (
12678     code    TEXT    PRIMARY KEY,
12679     name    TEXT    NOT NULL -- i18n-ize
12680 );
12681 INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
12682 INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
12683
12684 CREATE TABLE acq.invoice_payment_method (
12685         code      TEXT     PRIMARY KEY,
12686         name      TEXT     NOT NULL
12687 );
12688
12689 CREATE TABLE acq.invoice (
12690     id             SERIAL      PRIMARY KEY,
12691     receiver       INT         NOT NULL REFERENCES actor.org_unit (id),
12692     provider       INT         NOT NULL REFERENCES acq.provider (id),
12693     shipper        INT         NOT NULL REFERENCES acq.provider (id),
12694     recv_date      TIMESTAMPTZ NOT NULL DEFAULT NOW(),
12695     recv_method    TEXT        NOT NULL REFERENCES acq.invoice_method (code) DEFAULT 'EDI',
12696     inv_type       TEXT,       -- A "type" field is desired, but no idea what goes here
12697     inv_ident      TEXT        NOT NULL, -- vendor-supplied invoice id/number
12698         payment_auth   TEXT,
12699         payment_method TEXT        REFERENCES acq.invoice_payment_method (code)
12700                                    DEFERRABLE INITIALLY DEFERRED,
12701         note           TEXT,
12702     complete       BOOL        NOT NULL DEFAULT FALSE,
12703     CONSTRAINT inv_ident_once_per_provider UNIQUE(provider, inv_ident)
12704 );
12705
12706 CREATE TABLE acq.invoice_entry (
12707     id              SERIAL      PRIMARY KEY,
12708     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON DELETE CASCADE,
12709     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
12710     lineitem        INT         REFERENCES acq.lineitem (id) ON UPDATE CASCADE ON DELETE SET NULL,
12711     inv_item_count  INT         NOT NULL, -- How many acqlids did they say they sent
12712     phys_item_count INT, -- and how many did staff count
12713     note            TEXT,
12714     billed_per_item BOOL,
12715     cost_billed     NUMERIC(8,2),
12716     actual_cost     NUMERIC(8,2),
12717         amount_paid     NUMERIC (8,2)
12718 );
12719
12720 CREATE TABLE acq.invoice_item_type (
12721     code    TEXT    PRIMARY KEY,
12722     name    TEXT    NOT NULL, -- i18n-ize
12723         prorate BOOL    NOT NULL DEFAULT FALSE
12724 );
12725
12726 INSERT INTO acq.invoice_item_type (code,name) VALUES ('TAX',oils_i18n_gettext('TAX', 'Tax', 'aiit', 'name'));
12727 INSERT INTO acq.invoice_item_type (code,name) VALUES ('PRO',oils_i18n_gettext('PRO', 'Processing Fee', 'aiit', 'name'));
12728 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SHP',oils_i18n_gettext('SHP', 'Shipping Charge', 'aiit', 'name'));
12729 INSERT INTO acq.invoice_item_type (code,name) VALUES ('HND',oils_i18n_gettext('HND', 'Handling Charge', 'aiit', 'name'));
12730 INSERT INTO acq.invoice_item_type (code,name) VALUES ('ITM',oils_i18n_gettext('ITM', 'Non-library Item', 'aiit', 'name'));
12731 INSERT INTO acq.invoice_item_type (code,name) VALUES ('SUB',oils_i18n_gettext('SUB', 'Serial Subscription', 'aiit', 'name'));
12732
12733 CREATE TABLE acq.po_item (
12734         id              SERIAL      PRIMARY KEY,
12735         purchase_order  INT         REFERENCES acq.purchase_order (id)
12736                                     ON UPDATE CASCADE ON DELETE SET NULL
12737                                     DEFERRABLE INITIALLY DEFERRED,
12738         fund_debit      INT         REFERENCES acq.fund_debit (id)
12739                                     DEFERRABLE INITIALLY DEFERRED,
12740         inv_item_type   TEXT        NOT NULL
12741                                     REFERENCES acq.invoice_item_type (code)
12742                                     DEFERRABLE INITIALLY DEFERRED,
12743         title           TEXT,
12744         author          TEXT,
12745         note            TEXT,
12746         estimated_cost  NUMERIC(8,2),
12747         fund            INT         REFERENCES acq.fund (id)
12748                                     DEFERRABLE INITIALLY DEFERRED,
12749         target          BIGINT
12750 );
12751
12752 CREATE TABLE acq.invoice_item ( -- for invoice-only debits: taxes/fees/non-bib items/etc
12753     id              SERIAL      PRIMARY KEY,
12754     invoice         INT         NOT NULL REFERENCES acq.invoice (id) ON UPDATE CASCADE ON DELETE CASCADE,
12755     purchase_order  INT         REFERENCES acq.purchase_order (id) ON UPDATE CASCADE ON DELETE SET NULL,
12756     fund_debit      INT         REFERENCES acq.fund_debit (id),
12757     inv_item_type   TEXT        NOT NULL REFERENCES acq.invoice_item_type (code),
12758     title           TEXT,
12759     author          TEXT,
12760     note            TEXT,
12761     cost_billed     NUMERIC(8,2),
12762     actual_cost     NUMERIC(8,2),
12763     fund            INT         REFERENCES acq.fund (id)
12764                                 DEFERRABLE INITIALLY DEFERRED,
12765     amount_paid     NUMERIC (8,2),
12766     po_item         INT         REFERENCES acq.po_item (id)
12767                                 DEFERRABLE INITIALLY DEFERRED,
12768     target          BIGINT
12769 );
12770
12771 CREATE TABLE acq.edi_message (
12772     id               SERIAL          PRIMARY KEY,
12773     account          INTEGER         REFERENCES acq.edi_account(id)
12774                                      DEFERRABLE INITIALLY DEFERRED,
12775     remote_file      TEXT,
12776     create_time      TIMESTAMPTZ     NOT NULL DEFAULT now(),
12777     translate_time   TIMESTAMPTZ,
12778     process_time     TIMESTAMPTZ,
12779     error_time       TIMESTAMPTZ,
12780     status           TEXT            NOT NULL DEFAULT 'new'
12781                                      CONSTRAINT status_value CHECK
12782                                      ( status IN (
12783                                         'new',          -- needs to be translated
12784                                         'translated',   -- needs to be processed
12785                                         'trans_error',  -- error in translation step
12786                                         'processed',    -- needs to have remote_file deleted
12787                                         'proc_error',   -- error in processing step
12788                                         'delete_error', -- error in deletion
12789                                         'retry',        -- need to retry
12790                                         'complete'      -- done
12791                                      )),
12792     edi              TEXT,
12793     jedi             TEXT,
12794     error            TEXT,
12795     purchase_order   INT             REFERENCES acq.purchase_order
12796                                      DEFERRABLE INITIALLY DEFERRED,
12797     message_type     TEXT            NOT NULL CONSTRAINT valid_message_type
12798                                      CHECK ( message_type IN (
12799                                         'ORDERS',
12800                                         'ORDRSP',
12801                                         'INVOIC',
12802                                         'OSTENQ',
12803                                         'OSTRPT'
12804                                      ))
12805 );
12806
12807 ALTER TABLE actor.org_address ADD COLUMN san TEXT;
12808
12809 ALTER TABLE acq.provider_address
12810         ADD COLUMN fax_phone TEXT;
12811
12812 ALTER TABLE acq.provider_contact_address
12813         ADD COLUMN fax_phone TEXT;
12814
12815 CREATE TABLE acq.provider_note (
12816     id      SERIAL              PRIMARY KEY,
12817     provider    INT             NOT NULL REFERENCES acq.provider (id) DEFERRABLE INITIALLY DEFERRED,
12818     creator     INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
12819     editor      INT             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
12820     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
12821     edit_time   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
12822     value       TEXT            NOT NULL
12823 );
12824 CREATE INDEX acq_pro_note_pro_idx      ON acq.provider_note ( provider );
12825 CREATE INDEX acq_pro_note_creator_idx  ON acq.provider_note ( creator );
12826 CREATE INDEX acq_pro_note_editor_idx   ON acq.provider_note ( editor );
12827
12828 -- For each fund: the total allocation from all sources, in the
12829 -- currency of the fund (or 0 if there are no allocations)
12830
12831 CREATE VIEW acq.all_fund_allocation_total AS
12832 SELECT
12833     f.id AS fund,
12834     COALESCE( SUM( a.amount * acq.exchange_ratio(
12835         s.currency_type, f.currency_type))::numeric(100,2), 0 )
12836     AS amount
12837 FROM
12838     acq.fund f
12839         LEFT JOIN acq.fund_allocation a
12840             ON a.fund = f.id
12841         LEFT JOIN acq.funding_source s
12842             ON a.funding_source = s.id
12843 GROUP BY
12844     f.id;
12845
12846 -- For every fund: the total encumbrances (or 0 if none),
12847 -- in the currency of the fund.
12848
12849 CREATE VIEW acq.all_fund_encumbrance_total AS
12850 SELECT
12851         f.id AS fund,
12852         COALESCE( encumb.amount, 0 ) AS amount
12853 FROM
12854         acq.fund AS f
12855                 LEFT JOIN (
12856                         SELECT
12857                                 fund,
12858                                 sum( amount ) AS amount
12859                         FROM
12860                                 acq.fund_debit
12861                         WHERE
12862                                 encumbrance
12863                         GROUP BY fund
12864                 ) AS encumb
12865                         ON f.id = encumb.fund;
12866
12867 -- For every fund: the total spent (or 0 if none),
12868 -- in the currency of the fund.
12869
12870 CREATE VIEW acq.all_fund_spent_total AS
12871 SELECT
12872     f.id AS fund,
12873     COALESCE( spent.amount, 0 ) AS amount
12874 FROM
12875     acq.fund AS f
12876         LEFT JOIN (
12877             SELECT
12878                 fund,
12879                 sum( amount ) AS amount
12880             FROM
12881                 acq.fund_debit
12882             WHERE
12883                 NOT encumbrance
12884             GROUP BY fund
12885         ) AS spent
12886             ON f.id = spent.fund;
12887
12888 -- For each fund: the amount not yet spent, in the currency
12889 -- of the fund.  May include encumbrances.
12890
12891 CREATE VIEW acq.all_fund_spent_balance AS
12892 SELECT
12893         c.fund,
12894         c.amount - d.amount AS amount
12895 FROM acq.all_fund_allocation_total c
12896     LEFT JOIN acq.all_fund_spent_total d USING (fund);
12897
12898 -- For each fund: the amount neither spent nor encumbered,
12899 -- in the currency of the fund
12900
12901 CREATE VIEW acq.all_fund_combined_balance AS
12902 SELECT
12903      a.fund,
12904      a.amount - COALESCE( c.amount, 0 ) AS amount
12905 FROM
12906      acq.all_fund_allocation_total a
12907         LEFT OUTER JOIN (
12908             SELECT
12909                 fund,
12910                 SUM( amount ) AS amount
12911             FROM
12912                 acq.fund_debit
12913             GROUP BY
12914                 fund
12915         ) AS c USING ( fund );
12916
12917 CREATE OR REPLACE FUNCTION actor.usr_merge(
12918         src_usr INT,
12919         dest_usr INT,
12920         del_addrs BOOLEAN,
12921         del_cards BOOLEAN,
12922         deactivate_cards BOOLEAN
12923 ) RETURNS VOID AS $$
12924 DECLARE
12925         suffix TEXT;
12926         bucket_row RECORD;
12927         picklist_row RECORD;
12928         queue_row RECORD;
12929         folder_row RECORD;
12930 BEGIN
12931
12932     -- do some initial cleanup 
12933     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
12934     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
12935     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
12936
12937     -- actor.*
12938     IF del_cards THEN
12939         DELETE FROM actor.card where usr = src_usr;
12940     ELSE
12941         IF deactivate_cards THEN
12942             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
12943         END IF;
12944         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
12945     END IF;
12946
12947
12948     IF del_addrs THEN
12949         DELETE FROM actor.usr_address WHERE usr = src_usr;
12950     ELSE
12951         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
12952     END IF;
12953
12954     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
12955     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
12956     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
12957     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
12958     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
12959
12960     -- permission.*
12961     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
12962     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
12963     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
12964     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
12965
12966
12967     -- container.*
12968         
12969         -- For each *_bucket table: transfer every bucket belonging to src_usr
12970         -- into the custody of dest_usr.
12971         --
12972         -- In order to avoid colliding with an existing bucket owned by
12973         -- the destination user, append the source user's id (in parenthesese)
12974         -- to the name.  If you still get a collision, add successive
12975         -- spaces to the name and keep trying until you succeed.
12976         --
12977         FOR bucket_row in
12978                 SELECT id, name
12979                 FROM   container.biblio_record_entry_bucket
12980                 WHERE  owner = src_usr
12981         LOOP
12982                 suffix := ' (' || src_usr || ')';
12983                 LOOP
12984                         BEGIN
12985                                 UPDATE  container.biblio_record_entry_bucket
12986                                 SET     owner = dest_usr, name = name || suffix
12987                                 WHERE   id = bucket_row.id;
12988                         EXCEPTION WHEN unique_violation THEN
12989                                 suffix := suffix || ' ';
12990                                 CONTINUE;
12991                         END;
12992                         EXIT;
12993                 END LOOP;
12994         END LOOP;
12995
12996         FOR bucket_row in
12997                 SELECT id, name
12998                 FROM   container.call_number_bucket
12999                 WHERE  owner = src_usr
13000         LOOP
13001                 suffix := ' (' || src_usr || ')';
13002                 LOOP
13003                         BEGIN
13004                                 UPDATE  container.call_number_bucket
13005                                 SET     owner = dest_usr, name = name || suffix
13006                                 WHERE   id = bucket_row.id;
13007                         EXCEPTION WHEN unique_violation THEN
13008                                 suffix := suffix || ' ';
13009                                 CONTINUE;
13010                         END;
13011                         EXIT;
13012                 END LOOP;
13013         END LOOP;
13014
13015         FOR bucket_row in
13016                 SELECT id, name
13017                 FROM   container.copy_bucket
13018                 WHERE  owner = src_usr
13019         LOOP
13020                 suffix := ' (' || src_usr || ')';
13021                 LOOP
13022                         BEGIN
13023                                 UPDATE  container.copy_bucket
13024                                 SET     owner = dest_usr, name = name || suffix
13025                                 WHERE   id = bucket_row.id;
13026                         EXCEPTION WHEN unique_violation THEN
13027                                 suffix := suffix || ' ';
13028                                 CONTINUE;
13029                         END;
13030                         EXIT;
13031                 END LOOP;
13032         END LOOP;
13033
13034         FOR bucket_row in
13035                 SELECT id, name
13036                 FROM   container.user_bucket
13037                 WHERE  owner = src_usr
13038         LOOP
13039                 suffix := ' (' || src_usr || ')';
13040                 LOOP
13041                         BEGIN
13042                                 UPDATE  container.user_bucket
13043                                 SET     owner = dest_usr, name = name || suffix
13044                                 WHERE   id = bucket_row.id;
13045                         EXCEPTION WHEN unique_violation THEN
13046                                 suffix := suffix || ' ';
13047                                 CONTINUE;
13048                         END;
13049                         EXIT;
13050                 END LOOP;
13051         END LOOP;
13052
13053         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
13054
13055     -- vandelay.*
13056         -- transfer queues the same way we transfer buckets (see above)
13057         FOR queue_row in
13058                 SELECT id, name
13059                 FROM   vandelay.queue
13060                 WHERE  owner = src_usr
13061         LOOP
13062                 suffix := ' (' || src_usr || ')';
13063                 LOOP
13064                         BEGIN
13065                                 UPDATE  vandelay.queue
13066                                 SET     owner = dest_usr, name = name || suffix
13067                                 WHERE   id = queue_row.id;
13068                         EXCEPTION WHEN unique_violation THEN
13069                                 suffix := suffix || ' ';
13070                                 CONTINUE;
13071                         END;
13072                         EXIT;
13073                 END LOOP;
13074         END LOOP;
13075
13076     -- money.*
13077     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
13078     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
13079     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
13080     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
13081     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
13082
13083     -- action.*
13084     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
13085     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
13086     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
13087
13088     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
13089     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
13090     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
13091     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
13092
13093     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
13094     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
13095     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
13096     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
13097     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
13098
13099     -- acq.*
13100     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
13101     UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
13102
13103         -- transfer picklists the same way we transfer buckets (see above)
13104         FOR picklist_row in
13105                 SELECT id, name
13106                 FROM   acq.picklist
13107                 WHERE  owner = src_usr
13108         LOOP
13109                 suffix := ' (' || src_usr || ')';
13110                 LOOP
13111                         BEGIN
13112                                 UPDATE  acq.picklist
13113                                 SET     owner = dest_usr, name = name || suffix
13114                                 WHERE   id = picklist_row.id;
13115                         EXCEPTION WHEN unique_violation THEN
13116                                 suffix := suffix || ' ';
13117                                 CONTINUE;
13118                         END;
13119                         EXIT;
13120                 END LOOP;
13121         END LOOP;
13122
13123     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
13124     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
13125     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
13126         UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
13127         UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
13128     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
13129     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
13130     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
13131
13132     -- asset.*
13133     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
13134     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
13135     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
13136     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
13137     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
13138     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
13139
13140     -- serial.*
13141     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
13142     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
13143
13144     -- reporter.*
13145     -- It's not uncommon to define the reporter schema in a replica 
13146     -- DB only, so don't assume these tables exist in the write DB.
13147     BEGIN
13148         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
13149     EXCEPTION WHEN undefined_table THEN
13150         -- do nothing
13151     END;
13152     BEGIN
13153         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
13154     EXCEPTION WHEN undefined_table THEN
13155         -- do nothing
13156     END;
13157     BEGIN
13158         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
13159     EXCEPTION WHEN undefined_table THEN
13160         -- do nothing
13161     END;
13162     BEGIN
13163                 -- transfer folders the same way we transfer buckets (see above)
13164                 FOR folder_row in
13165                         SELECT id, name
13166                         FROM   reporter.template_folder
13167                         WHERE  owner = src_usr
13168                 LOOP
13169                         suffix := ' (' || src_usr || ')';
13170                         LOOP
13171                                 BEGIN
13172                                         UPDATE  reporter.template_folder
13173                                         SET     owner = dest_usr, name = name || suffix
13174                                         WHERE   id = folder_row.id;
13175                                 EXCEPTION WHEN unique_violation THEN
13176                                         suffix := suffix || ' ';
13177                                         CONTINUE;
13178                                 END;
13179                                 EXIT;
13180                         END LOOP;
13181                 END LOOP;
13182     EXCEPTION WHEN undefined_table THEN
13183         -- do nothing
13184     END;
13185     BEGIN
13186                 -- transfer folders the same way we transfer buckets (see above)
13187                 FOR folder_row in
13188                         SELECT id, name
13189                         FROM   reporter.report_folder
13190                         WHERE  owner = src_usr
13191                 LOOP
13192                         suffix := ' (' || src_usr || ')';
13193                         LOOP
13194                                 BEGIN
13195                                         UPDATE  reporter.report_folder
13196                                         SET     owner = dest_usr, name = name || suffix
13197                                         WHERE   id = folder_row.id;
13198                                 EXCEPTION WHEN unique_violation THEN
13199                                         suffix := suffix || ' ';
13200                                         CONTINUE;
13201                                 END;
13202                                 EXIT;
13203                         END LOOP;
13204                 END LOOP;
13205     EXCEPTION WHEN undefined_table THEN
13206         -- do nothing
13207     END;
13208     BEGIN
13209                 -- transfer folders the same way we transfer buckets (see above)
13210                 FOR folder_row in
13211                         SELECT id, name
13212                         FROM   reporter.output_folder
13213                         WHERE  owner = src_usr
13214                 LOOP
13215                         suffix := ' (' || src_usr || ')';
13216                         LOOP
13217                                 BEGIN
13218                                         UPDATE  reporter.output_folder
13219                                         SET     owner = dest_usr, name = name || suffix
13220                                         WHERE   id = folder_row.id;
13221                                 EXCEPTION WHEN unique_violation THEN
13222                                         suffix := suffix || ' ';
13223                                         CONTINUE;
13224                                 END;
13225                                 EXIT;
13226                         END LOOP;
13227                 END LOOP;
13228     EXCEPTION WHEN undefined_table THEN
13229         -- do nothing
13230     END;
13231
13232     -- Finally, delete the source user
13233     DELETE FROM actor.usr WHERE id = src_usr;
13234
13235 END;
13236 $$ LANGUAGE plpgsql;
13237
13238 -- The "add" trigger functions should protect against existing NULLed values, just in case
13239 CREATE OR REPLACE FUNCTION money.materialized_summary_billing_add () RETURNS TRIGGER AS $$
13240 BEGIN
13241     IF NOT NEW.voided THEN
13242         UPDATE  money.materialized_billable_xact_summary
13243           SET   total_owed = COALESCE(total_owed, 0.0::numeric) + NEW.amount,
13244             last_billing_ts = NEW.billing_ts,
13245             last_billing_note = NEW.note,
13246             last_billing_type = NEW.billing_type,
13247             balance_owed = balance_owed + NEW.amount
13248           WHERE id = NEW.xact;
13249     END IF;
13250
13251     RETURN NEW;
13252 END;
13253 $$ LANGUAGE PLPGSQL;
13254
13255 CREATE OR REPLACE FUNCTION money.materialized_summary_payment_add () RETURNS TRIGGER AS $$
13256 BEGIN
13257     IF NOT NEW.voided THEN
13258         UPDATE  money.materialized_billable_xact_summary
13259           SET   total_paid = COALESCE(total_paid, 0.0::numeric) + NEW.amount,
13260             last_payment_ts = NEW.payment_ts,
13261             last_payment_note = NEW.note,
13262             last_payment_type = TG_ARGV[0],
13263             balance_owed = balance_owed - NEW.amount
13264           WHERE id = NEW.xact;
13265     END IF;
13266
13267     RETURN NEW;
13268 END;
13269 $$ LANGUAGE PLPGSQL;
13270
13271 -- Refresh the mat view with the corrected underlying view
13272 TRUNCATE money.materialized_billable_xact_summary;
13273 INSERT INTO money.materialized_billable_xact_summary SELECT * FROM money.billable_xact_summary;
13274
13275 CREATE OR REPLACE FUNCTION permission.usr_has_perm_at_nd(
13276     user_id    IN INTEGER,
13277     perm_code  IN TEXT
13278 )
13279 RETURNS SETOF INTEGER AS $$
13280 --
13281 -- Return a set of all the org units for which a given user has a given
13282 -- permission, granted directly (not through inheritance from a parent
13283 -- org unit).
13284 --
13285 -- The permissions apply to a minimum depth of the org unit hierarchy,
13286 -- for the org unit(s) to which the user is assigned.  (They also apply
13287 -- to the subordinates of those org units, but we don't report the
13288 -- subordinates here.)
13289 --
13290 -- For purposes of this function, the permission.usr_work_ou_map table
13291 -- defines which users belong to which org units.  I.e. we ignore the
13292 -- home_ou column of actor.usr.
13293 --
13294 -- The result set may contain duplicates, which should be eliminated
13295 -- by a DISTINCT clause.
13296 --
13297 DECLARE
13298     b_super       BOOLEAN;
13299     n_perm        INTEGER;
13300     n_min_depth   INTEGER;
13301     n_work_ou     INTEGER;
13302     n_curr_ou     INTEGER;
13303     n_depth       INTEGER;
13304     n_curr_depth  INTEGER;
13305 BEGIN
13306     --
13307     -- Check for superuser
13308     --
13309     SELECT INTO b_super
13310         super_user
13311     FROM
13312         actor.usr
13313     WHERE
13314         id = user_id;
13315     --
13316     IF NOT FOUND THEN
13317         return;             -- No user?  No permissions.
13318     ELSIF b_super THEN
13319         --
13320         -- Super user has all permissions everywhere
13321         --
13322         FOR n_work_ou IN
13323             SELECT
13324                 id
13325             FROM
13326                 actor.org_unit
13327             WHERE
13328                 parent_ou IS NULL
13329         LOOP
13330             RETURN NEXT n_work_ou;
13331         END LOOP;
13332         RETURN;
13333     END IF;
13334     --
13335     -- Translate the permission name
13336     -- to a numeric permission id
13337     --
13338     SELECT INTO n_perm
13339         id
13340     FROM
13341         permission.perm_list
13342     WHERE
13343         code = perm_code;
13344     --
13345     IF NOT FOUND THEN
13346         RETURN;               -- No such permission
13347     END IF;
13348     --
13349     -- Find the highest-level org unit (i.e. the minimum depth)
13350     -- to which the permission is applied for this user
13351     --
13352     -- This query is modified from the one in permission.usr_perms().
13353     --
13354     SELECT INTO n_min_depth
13355         min( depth )
13356     FROM    (
13357         SELECT depth
13358           FROM permission.usr_perm_map upm
13359          WHERE upm.usr = user_id
13360            AND (upm.perm = n_perm OR upm.perm = -1)
13361                     UNION
13362         SELECT  gpm.depth
13363           FROM  permission.grp_perm_map gpm
13364           WHERE (gpm.perm = n_perm OR gpm.perm = -1)
13365             AND gpm.grp IN (
13366                SELECT   (permission.grp_ancestors(
13367                     (SELECT profile FROM actor.usr WHERE id = user_id)
13368                 )).id
13369             )
13370                     UNION
13371         SELECT  p.depth
13372           FROM  permission.grp_perm_map p
13373           WHERE (p.perm = n_perm OR p.perm = -1)
13374             AND p.grp IN (
13375                 SELECT (permission.grp_ancestors(m.grp)).id
13376                 FROM   permission.usr_grp_map m
13377                 WHERE  m.usr = user_id
13378             )
13379     ) AS x;
13380     --
13381     IF NOT FOUND THEN
13382         RETURN;                -- No such permission for this user
13383     END IF;
13384     --
13385     -- Identify the org units to which the user is assigned.  Note that
13386     -- we pay no attention to the home_ou column in actor.usr.
13387     --
13388     FOR n_work_ou IN
13389         SELECT
13390             work_ou
13391         FROM
13392             permission.usr_work_ou_map
13393         WHERE
13394             usr = user_id
13395     LOOP            -- For each org unit to which the user is assigned
13396         --
13397         -- Determine the level of the org unit by a lookup in actor.org_unit_type.
13398         -- We take it on faith that this depth agrees with the actual hierarchy
13399         -- defined in actor.org_unit.
13400         --
13401         SELECT INTO n_depth
13402             type.depth
13403         FROM
13404             actor.org_unit_type type
13405                 INNER JOIN actor.org_unit ou
13406                     ON ( ou.ou_type = type.id )
13407         WHERE
13408             ou.id = n_work_ou;
13409         --
13410         IF NOT FOUND THEN
13411             CONTINUE;        -- Maybe raise exception?
13412         END IF;
13413         --
13414         -- Compare the depth of the work org unit to the
13415         -- minimum depth, and branch accordingly
13416         --
13417         IF n_depth = n_min_depth THEN
13418             --
13419             -- The org unit is at the right depth, so return it.
13420             --
13421             RETURN NEXT n_work_ou;
13422         ELSIF n_depth > n_min_depth THEN
13423             --
13424             -- Traverse the org unit tree toward the root,
13425             -- until you reach the minimum depth determined above
13426             --
13427             n_curr_depth := n_depth;
13428             n_curr_ou := n_work_ou;
13429             WHILE n_curr_depth > n_min_depth LOOP
13430                 SELECT INTO n_curr_ou
13431                     parent_ou
13432                 FROM
13433                     actor.org_unit
13434                 WHERE
13435                     id = n_curr_ou;
13436                 --
13437                 IF FOUND THEN
13438                     n_curr_depth := n_curr_depth - 1;
13439                 ELSE
13440                     --
13441                     -- This can happen only if the hierarchy defined in
13442                     -- actor.org_unit is corrupted, or out of sync with
13443                     -- the depths defined in actor.org_unit_type.
13444                     -- Maybe we should raise an exception here, instead
13445                     -- of silently ignoring the problem.
13446                     --
13447                     n_curr_ou = NULL;
13448                     EXIT;
13449                 END IF;
13450             END LOOP;
13451             --
13452             IF n_curr_ou IS NOT NULL THEN
13453                 RETURN NEXT n_curr_ou;
13454             END IF;
13455         ELSE
13456             --
13457             -- The permission applies only at a depth greater than the work org unit.
13458             -- Use connectby() to find all dependent org units at the specified depth.
13459             --
13460             FOR n_curr_ou IN
13461                 SELECT ou::INTEGER
13462                 FROM connectby(
13463                         'actor.org_unit',         -- table name
13464                         'id',                     -- key column
13465                         'parent_ou',              -- recursive foreign key
13466                         n_work_ou::TEXT,          -- id of starting point
13467                         (n_min_depth - n_depth)   -- max depth to search, relative
13468                     )                             --   to starting point
13469                     AS t(
13470                         ou text,            -- dependent org unit
13471                         parent_ou text,     -- (ignore)
13472                         level int           -- depth relative to starting point
13473                     )
13474                 WHERE
13475                     level = n_min_depth - n_depth
13476             LOOP
13477                 RETURN NEXT n_curr_ou;
13478             END LOOP;
13479         END IF;
13480         --
13481     END LOOP;
13482     --
13483     RETURN;
13484     --
13485 END;
13486 $$ LANGUAGE 'plpgsql';
13487
13488 ALTER TABLE acq.purchase_order
13489         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13490                                             DEFERRABLE INITIALLY DEFERRED;
13491
13492 ALTER TABLE acq.acq_purchase_order_history
13493         ADD COLUMN cancel_reason INTEGER;
13494
13495 ALTER TABLE acq.purchase_order
13496         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13497
13498 ALTER TABLE acq.acq_purchase_order_history
13499         ADD COLUMN prepayment_required BOOLEAN NOT NULL DEFAULT FALSE;
13500
13501 ALTER TABLE acq.lineitem
13502         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13503                                             DEFERRABLE INITIALLY DEFERRED;
13504
13505 ALTER TABLE acq.acq_lineitem_history
13506         ADD COLUMN cancel_reason INTEGER;
13507
13508 ALTER TABLE acq.lineitem
13509         ADD COLUMN estimated_unit_price NUMERIC;
13510
13511 ALTER TABLE acq.acq_lineitem_history
13512         ADD COLUMN estimated_unit_price NUMERIC;
13513
13514 ALTER TABLE acq.lineitem
13515         ADD COLUMN claim_policy INT
13516                 REFERENCES acq.claim_policy
13517                 DEFERRABLE INITIALLY DEFERRED;
13518
13519 ALTER TABLE acq.acq_lineitem_history
13520         ADD COLUMN claim_policy INT
13521                 REFERENCES acq.claim_policy
13522                 DEFERRABLE INITIALLY DEFERRED;
13523
13524 ALTER TABLE acq.lineitem_detail
13525         ADD COLUMN cancel_reason        INT REFERENCES acq.cancel_reason( id )
13526                                             DEFERRABLE INITIALLY DEFERRED;
13527
13528 ALTER TABLE acq.lineitem_detail
13529         DROP CONSTRAINT lineitem_detail_lineitem_fkey;
13530
13531 ALTER TABLE acq.lineitem_detail
13532         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13533                 ON DELETE CASCADE
13534                 DEFERRABLE INITIALLY DEFERRED;
13535
13536 ALTER TABLE acq.lineitem_detail DROP CONSTRAINT lineitem_detail_eg_copy_id_fkey;
13537
13538 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13539         1, 1, 'invalid_isbn', oils_i18n_gettext( 1, 'ISBN is unrecognizable', 'acqcr', 'label' ));
13540
13541 INSERT INTO acq.cancel_reason ( id, org_unit, label, description ) VALUES (
13542         2, 1, 'postpone', oils_i18n_gettext( 2, 'Title has been postponed', 'acqcr', 'label' ));
13543
13544 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13545
13546     use MARC::Record;
13547     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13548     use strict;
13549
13550     my $target_xml = shift;
13551     my $source_xml = shift;
13552     my $field_spec = shift;
13553
13554     my $target_r = MARC::Record->new_from_xml( $target_xml );
13555     my $source_r = MARC::Record->new_from_xml( $source_xml );
13556
13557     return $target_xml unless ($target_r && $source_r);
13558
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         if ( @{$fields{$f}{sf}} ) {
13585             for my $from_field ($source_r->field( $f )) {
13586                 for my $to_field ($target_r->field( $f )) {
13587                     if (exists($fields{$f}{match})) {
13588                         next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13589                     }
13590                     my @new_sf = map { ($_ => $from_field->subfield($_)) } @{$fields{$f}{sf}};
13591                     $to_field->add_subfields( @new_sf );
13592                 }
13593             }
13594         } else {
13595             my @new_fields = map { $_->clone } $source_r->field( $f );
13596             $target_r->insert_fields_ordered( @new_fields );
13597         }
13598     }
13599
13600     $target_xml = $target_r->as_xml_record;
13601     $target_xml =~ s/^<\?.+?\?>$//mo;
13602     $target_xml =~ s/\n//sgo;
13603     $target_xml =~ s/>\s+</></sgo;
13604
13605     return $target_xml;
13606
13607 $_$ LANGUAGE PLPERLU;
13608
13609 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13610
13611     use MARC::Record;
13612     use MARC::File::XML (BinaryEncoding => 'UTF-8');
13613     use strict;
13614
13615     my $xml = shift;
13616     my $r = MARC::Record->new_from_xml( $xml );
13617
13618     return $xml unless ($r);
13619
13620     my $field_spec = shift;
13621     my @field_list = split(',', $field_spec);
13622
13623     my %fields;
13624     for my $f (@field_list) {
13625         $f =~ s/^\s*//; $f =~ s/\s*$//;
13626         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
13627             my $field = $1;
13628             $field =~ s/\s+//;
13629             my $sf = $2;
13630             $sf =~ s/\s+//;
13631             my $match = $3;
13632             $match =~ s/^\s*//; $match =~ s/\s*$//;
13633             $fields{$field} = { sf => [ split('', $sf) ] };
13634             if ($match) {
13635                 my ($msf,$mre) = split('~', $match);
13636                 if (length($msf) > 0 and length($mre) > 0) {
13637                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
13638                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
13639                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
13640                 }
13641             }
13642         }
13643     }
13644
13645     for my $f ( keys %fields) {
13646         for my $to_field ($r->field( $f )) {
13647             if (exists($fields{$f}{match})) {
13648                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
13649             }
13650
13651             if ( @{$fields{$f}{sf}} ) {
13652                 $to_field->delete_subfield(code => $fields{$f}{sf});
13653             } else {
13654                 $r->delete_field( $to_field );
13655             }
13656         }
13657     }
13658
13659     $xml = $r->as_xml_record;
13660     $xml =~ s/^<\?.+?\?>$//mo;
13661     $xml =~ s/\n//sgo;
13662     $xml =~ s/>\s+</></sgo;
13663
13664     return $xml;
13665
13666 $_$ LANGUAGE PLPERLU;
13667
13668 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13669     SELECT vandelay.add_field( vandelay.strip_field( $1, $3), $2, $3 );
13670 $_$ LANGUAGE SQL;
13671
13672 CREATE OR REPLACE FUNCTION vandelay.preserve_field ( incumbent_xml TEXT, incoming_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
13673     SELECT vandelay.add_field( vandelay.strip_field( $2, $3), $1, $3 );
13674 $_$ LANGUAGE SQL;
13675
13676 CREATE VIEW action.unfulfilled_hold_max_loop AS
13677         SELECT  hold,
13678                 max(count) AS max
13679         FROM    action.unfulfilled_hold_loops
13680         GROUP BY 1;
13681
13682 ALTER TABLE acq.lineitem_attr
13683         DROP CONSTRAINT lineitem_attr_lineitem_fkey;
13684
13685 ALTER TABLE acq.lineitem_attr
13686         ADD FOREIGN KEY (lineitem) REFERENCES acq.lineitem( id )
13687                 ON DELETE CASCADE
13688                 DEFERRABLE INITIALLY DEFERRED;
13689
13690 ALTER TABLE acq.po_note
13691         ADD COLUMN vendor_public BOOLEAN NOT NULL DEFAULT FALSE;
13692
13693 CREATE TABLE vandelay.merge_profile (
13694     id              BIGSERIAL   PRIMARY KEY,
13695     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
13696     name            TEXT        NOT NULL,
13697     add_spec        TEXT,
13698     replace_spec    TEXT,
13699     strip_spec      TEXT,
13700     preserve_spec   TEXT,
13701     CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
13702     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))
13703 );
13704
13705 CREATE OR REPLACE FUNCTION vandelay.match_bib_record ( ) RETURNS TRIGGER AS $func$
13706 DECLARE
13707     attr        RECORD;
13708     attr_def    RECORD;
13709     eg_rec      RECORD;
13710     id_value    TEXT;
13711     exact_id    BIGINT;
13712 BEGIN
13713
13714     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
13715
13716     SELECT * INTO attr_def FROM vandelay.bib_attr_definition WHERE xpath = '//*[@tag="901"]/*[@code="c"]' ORDER BY id LIMIT 1;
13717
13718     IF attr_def IS NOT NULL AND attr_def.id IS NOT NULL THEN
13719         id_value := extract_marc_field('vandelay.queued_bib_record', NEW.id, attr_def.xpath, attr_def.remove);
13720
13721         IF id_value IS NOT NULL AND id_value <> '' AND id_value ~ $r$^\d+$$r$ THEN
13722             SELECT id INTO exact_id FROM biblio.record_entry WHERE id = id_value::BIGINT AND NOT deleted;
13723             SELECT * INTO attr FROM vandelay.queued_bib_record_attr WHERE record = NEW.id and field = attr_def.id LIMIT 1;
13724             IF exact_id IS NOT NULL THEN
13725                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, exact_id);
13726             END IF;
13727         END IF;
13728     END IF;
13729
13730     IF exact_id IS NULL THEN
13731         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
13732
13733             -- All numbers? check for an id match
13734             IF (attr.attr_value ~ $r$^\d+$$r$) THEN
13735                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE id = attr.attr_value::BIGINT AND deleted IS FALSE LOOP
13736                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
13737                 END LOOP;
13738             END IF;
13739
13740             -- Looks like an ISBN? check for an isbn match
13741             IF (attr.attr_value ~* $r$^[0-9x]+$$r$ AND character_length(attr.attr_value) IN (10,13)) THEN
13742                 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
13743                     PERFORM id FROM biblio.record_entry WHERE id = eg_rec.record AND deleted IS FALSE;
13744                     IF FOUND THEN
13745                         INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('isbn', attr.id, NEW.id, eg_rec.record);
13746                     END IF;
13747                 END LOOP;
13748
13749                 -- subcheck for isbn-as-tcn
13750                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = 'i' || attr.attr_value AND deleted IS FALSE LOOP
13751                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13752                 END LOOP;
13753             END IF;
13754
13755             -- check for an OCLC tcn_value match
13756             IF (attr.attr_value ~ $r$^o\d+$$r$) THEN
13757                 FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = regexp_replace(attr.attr_value,'^o','ocm') AND deleted IS FALSE LOOP
13758                     INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13759                 END LOOP;
13760             END IF;
13761
13762             -- check for a direct tcn_value match
13763             FOR eg_rec IN SELECT * FROM biblio.record_entry WHERE tcn_value = attr.attr_value AND deleted IS FALSE LOOP
13764                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('tcn_value', attr.id, NEW.id, eg_rec.id);
13765             END LOOP;
13766
13767             -- check for a direct item barcode match
13768             FOR eg_rec IN
13769                     SELECT  DISTINCT b.*
13770                       FROM  biblio.record_entry b
13771                             JOIN asset.call_number cn ON (cn.record = b.id)
13772                             JOIN asset.copy cp ON (cp.call_number = cn.id)
13773                       WHERE cp.barcode = attr.attr_value AND cp.deleted IS FALSE
13774             LOOP
13775                 INSERT INTO vandelay.bib_match (field_type, matched_attr, queued_record, eg_record) VALUES ('id', attr.id, NEW.id, eg_rec.id);
13776             END LOOP;
13777
13778         END LOOP;
13779     END IF;
13780
13781     RETURN NULL;
13782 END;
13783 $func$ LANGUAGE PLPGSQL;
13784
13785 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 $_$
13786     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
13787 $_$ LANGUAGE SQL;
13788
13789 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
13790 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
13791 DECLARE
13792     output              vandelay.compile_profile%ROWTYPE;
13793     profile             vandelay.merge_profile%ROWTYPE;
13794     profile_tmpl        TEXT;
13795     profile_tmpl_owner  TEXT;
13796     add_rule            TEXT := '';
13797     strip_rule          TEXT := '';
13798     replace_rule        TEXT := '';
13799     preserve_rule       TEXT := '';
13800
13801 BEGIN
13802
13803     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
13804     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
13805
13806     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
13807         SELECT  p.* INTO profile
13808           FROM  vandelay.merge_profile p
13809                 JOIN actor.org_unit u ON (u.id = p.owner)
13810           WHERE p.name = profile_tmpl
13811                 AND u.shortname = profile_tmpl_owner;
13812
13813         IF profile.id IS NOT NULL THEN
13814             add_rule := COALESCE(profile.add_spec,'');
13815             strip_rule := COALESCE(profile.strip_spec,'');
13816             replace_rule := COALESCE(profile.replace_spec,'');
13817             preserve_rule := COALESCE(profile.preserve_spec,'');
13818         END IF;
13819     END IF;
13820
13821     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),''),'');
13822     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),''),'');
13823     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),''),'');
13824     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),''),'');
13825
13826     output.add_rule := BTRIM(add_rule,',');
13827     output.replace_rule := BTRIM(replace_rule,',');
13828     output.strip_rule := BTRIM(strip_rule,',');
13829     output.preserve_rule := BTRIM(preserve_rule,',');
13830
13831     RETURN output;
13832 END;
13833 $_$ LANGUAGE PLPGSQL;
13834
13835 -- Template-based marc munging functions
13836 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13837 DECLARE
13838     merge_profile   vandelay.merge_profile%ROWTYPE;
13839     dyn_profile     vandelay.compile_profile%ROWTYPE;
13840     editor_string   TEXT;
13841     editor_id       INT;
13842     source_marc     TEXT;
13843     target_marc     TEXT;
13844     eg_marc         TEXT;
13845     replace_rule    TEXT;
13846     match_count     INT;
13847 BEGIN
13848
13849     SELECT  b.marc INTO eg_marc
13850       FROM  biblio.record_entry b
13851       WHERE b.id = eg_id
13852       LIMIT 1;
13853
13854     IF eg_marc IS NULL OR v_marc IS NULL THEN
13855         -- RAISE NOTICE 'no marc for template or bib record';
13856         RETURN FALSE;
13857     END IF;
13858
13859     dyn_profile := vandelay.compile_profile( v_marc );
13860
13861     IF merge_profile_id IS NOT NULL THEN
13862         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
13863         IF FOUND THEN
13864             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
13865             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
13866             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
13867             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
13868         END IF;
13869     END IF;
13870
13871     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
13872         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
13873         RETURN FALSE;
13874     END IF;
13875
13876     IF dyn_profile.replace_rule <> '' THEN
13877         source_marc = v_marc;
13878         target_marc = eg_marc;
13879         replace_rule = dyn_profile.replace_rule;
13880     ELSE
13881         source_marc = eg_marc;
13882         target_marc = v_marc;
13883         replace_rule = dyn_profile.preserve_rule;
13884     END IF;
13885
13886     UPDATE  biblio.record_entry
13887       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
13888       WHERE id = eg_id;
13889
13890     IF NOT FOUND THEN
13891         -- RAISE NOTICE 'update of biblio.record_entry failed';
13892         RETURN FALSE;
13893     END IF;
13894
13895     RETURN TRUE;
13896
13897 END;
13898 $$ LANGUAGE PLPGSQL;
13899
13900 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
13901     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
13902 $$ LANGUAGE SQL;
13903
13904 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13905 DECLARE
13906     merge_profile   vandelay.merge_profile%ROWTYPE;
13907     dyn_profile     vandelay.compile_profile%ROWTYPE;
13908     editor_string   TEXT;
13909     editor_id       INT;
13910     source_marc     TEXT;
13911     target_marc     TEXT;
13912     eg_marc         TEXT;
13913     v_marc          TEXT;
13914     replace_rule    TEXT;
13915     match_count     INT;
13916 BEGIN
13917
13918     SELECT  q.marc INTO v_marc
13919       FROM  vandelay.queued_record q
13920             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
13921       LIMIT 1;
13922
13923     IF v_marc IS NULL THEN
13924         -- RAISE NOTICE 'no marc for vandelay or bib record';
13925         RETURN FALSE;
13926     END IF;
13927
13928     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
13929         UPDATE  vandelay.queued_bib_record
13930           SET   imported_as = eg_id,
13931                 import_time = NOW()
13932           WHERE id = import_id;
13933
13934         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
13935
13936         IF editor_string IS NOT NULL AND editor_string <> '' THEN
13937             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
13938
13939             IF editor_id IS NULL THEN
13940                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
13941             END IF;
13942
13943             IF editor_id IS NOT NULL THEN
13944                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
13945             END IF;
13946         END IF;
13947
13948         RETURN TRUE;
13949     END IF;
13950
13951     -- RAISE NOTICE 'update of biblio.record_entry failed';
13952
13953     RETURN FALSE;
13954
13955 END;
13956 $$ LANGUAGE PLPGSQL;
13957
13958 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
13959 DECLARE
13960     eg_id           BIGINT;
13961     match_count     INT;
13962     match_attr      vandelay.bib_attr_definition%ROWTYPE;
13963 BEGIN
13964
13965     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
13966
13967     IF FOUND THEN
13968         -- RAISE NOTICE 'already imported, cannot auto-overlay'
13969         RETURN FALSE;
13970     END IF;
13971
13972     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
13973
13974     IF match_count <> 1 THEN
13975         -- RAISE NOTICE 'not an exact match';
13976         RETURN FALSE;
13977     END IF;
13978
13979     SELECT  d.* INTO match_attr
13980       FROM  vandelay.bib_attr_definition d
13981             JOIN vandelay.queued_bib_record_attr a ON (a.field = d.id)
13982             JOIN vandelay.bib_match m ON (m.matched_attr = a.id)
13983       WHERE m.queued_record = import_id;
13984
13985     IF NOT (match_attr.xpath ~ '@tag="901"' AND match_attr.xpath ~ '@code="c"') THEN
13986         -- RAISE NOTICE 'not a 901c match: %', match_attr.xpath;
13987         RETURN FALSE;
13988     END IF;
13989
13990     SELECT  m.eg_record INTO eg_id
13991       FROM  vandelay.bib_match m
13992       WHERE m.queued_record = import_id
13993       LIMIT 1;
13994
13995     IF eg_id IS NULL THEN
13996         RETURN FALSE;
13997     END IF;
13998
13999     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
14000 END;
14001 $$ LANGUAGE PLPGSQL;
14002
14003 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14004 DECLARE
14005     queued_record   vandelay.queued_bib_record%ROWTYPE;
14006 BEGIN
14007
14008     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
14009
14010         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
14011             RETURN NEXT queued_record.id;
14012         END IF;
14013
14014     END LOOP;
14015
14016     RETURN;
14017
14018 END;
14019 $$ LANGUAGE PLPGSQL;
14020
14021 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14022     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
14023 $$ LANGUAGE SQL;
14024
14025 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14026 DECLARE
14027     merge_profile   vandelay.merge_profile%ROWTYPE;
14028     dyn_profile     vandelay.compile_profile%ROWTYPE;
14029     source_marc     TEXT;
14030     target_marc     TEXT;
14031     eg_marc         TEXT;
14032     v_marc          TEXT;
14033     replace_rule    TEXT;
14034     match_count     INT;
14035 BEGIN
14036
14037     SELECT  b.marc INTO eg_marc
14038       FROM  authority.record_entry b
14039             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
14040       LIMIT 1;
14041
14042     SELECT  q.marc INTO v_marc
14043       FROM  vandelay.queued_record q
14044             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
14045       LIMIT 1;
14046
14047     IF eg_marc IS NULL OR v_marc IS NULL THEN
14048         -- RAISE NOTICE 'no marc for vandelay or authority record';
14049         RETURN FALSE;
14050     END IF;
14051
14052     dyn_profile := vandelay.compile_profile( v_marc );
14053
14054     IF merge_profile_id IS NOT NULL THEN
14055         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
14056         IF FOUND THEN
14057             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
14058             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
14059             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
14060             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
14061         END IF;
14062     END IF;
14063
14064     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
14065         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
14066         RETURN FALSE;
14067     END IF;
14068
14069     IF dyn_profile.replace_rule <> '' THEN
14070         source_marc = v_marc;
14071         target_marc = eg_marc;
14072         replace_rule = dyn_profile.replace_rule;
14073     ELSE
14074         source_marc = eg_marc;
14075         target_marc = v_marc;
14076         replace_rule = dyn_profile.preserve_rule;
14077     END IF;
14078
14079     UPDATE  authority.record_entry
14080       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
14081       WHERE id = eg_id;
14082
14083     IF FOUND THEN
14084         UPDATE  vandelay.queued_authority_record
14085           SET   imported_as = eg_id,
14086                 import_time = NOW()
14087           WHERE id = import_id;
14088         RETURN TRUE;
14089     END IF;
14090
14091     -- RAISE NOTICE 'update of authority.record_entry failed';
14092
14093     RETURN FALSE;
14094
14095 END;
14096 $$ LANGUAGE PLPGSQL;
14097
14098 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
14099 DECLARE
14100     eg_id           BIGINT;
14101     match_count     INT;
14102 BEGIN
14103     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
14104
14105     IF match_count <> 1 THEN
14106         -- RAISE NOTICE 'not an exact match';
14107         RETURN FALSE;
14108     END IF;
14109
14110     SELECT  m.eg_record INTO eg_id
14111       FROM  vandelay.authority_match m
14112       WHERE m.queued_record = import_id
14113       LIMIT 1;
14114
14115     IF eg_id IS NULL THEN
14116         RETURN FALSE;
14117     END IF;
14118
14119     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
14120 END;
14121 $$ LANGUAGE PLPGSQL;
14122
14123 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
14124 DECLARE
14125     queued_record   vandelay.queued_authority_record%ROWTYPE;
14126 BEGIN
14127
14128     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
14129
14130         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
14131             RETURN NEXT queued_record.id;
14132         END IF;
14133
14134     END LOOP;
14135
14136     RETURN;
14137
14138 END;
14139 $$ LANGUAGE PLPGSQL;
14140
14141 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
14142     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
14143 $$ LANGUAGE SQL;
14144
14145 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
14146 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
14147 DECLARE
14148     eg_tcn          TEXT;
14149     eg_tcn_source   TEXT;
14150     output          vandelay.tcn_data%ROWTYPE;
14151 BEGIN
14152
14153     -- 001/003
14154     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
14155     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14156
14157         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
14158         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14159             eg_tcn_source := 'System Local';
14160         END IF;
14161
14162         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14163
14164         IF NOT FOUND THEN
14165             output.used := FALSE;
14166         ELSE
14167             output.used := TRUE;
14168         END IF;
14169
14170         output.tcn := eg_tcn;
14171         output.tcn_source := eg_tcn_source;
14172         RETURN NEXT output;
14173
14174     END IF;
14175
14176     -- 901 ab
14177     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
14178     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14179
14180         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
14181         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14182             eg_tcn_source := 'System Local';
14183         END IF;
14184
14185         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14186
14187         IF NOT FOUND THEN
14188             output.used := FALSE;
14189         ELSE
14190             output.used := TRUE;
14191         END IF;
14192
14193         output.tcn := eg_tcn;
14194         output.tcn_source := eg_tcn_source;
14195         RETURN NEXT output;
14196
14197     END IF;
14198
14199     -- 039 ab
14200     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
14201     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14202
14203         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
14204         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
14205             eg_tcn_source := 'System Local';
14206         END IF;
14207
14208         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14209
14210         IF NOT FOUND THEN
14211             output.used := FALSE;
14212         ELSE
14213             output.used := TRUE;
14214         END IF;
14215
14216         output.tcn := eg_tcn;
14217         output.tcn_source := eg_tcn_source;
14218         RETURN NEXT output;
14219
14220     END IF;
14221
14222     -- 020 a
14223     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14224     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14225
14226         eg_tcn_source := 'ISBN';
14227
14228         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14229
14230         IF NOT FOUND THEN
14231             output.used := FALSE;
14232         ELSE
14233             output.used := TRUE;
14234         END IF;
14235
14236         output.tcn := eg_tcn;
14237         output.tcn_source := eg_tcn_source;
14238         RETURN NEXT output;
14239
14240     END IF;
14241
14242     -- 022 a
14243     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14244     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14245
14246         eg_tcn_source := 'ISSN';
14247
14248         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14249
14250         IF NOT FOUND THEN
14251             output.used := FALSE;
14252         ELSE
14253             output.used := TRUE;
14254         END IF;
14255
14256         output.tcn := eg_tcn;
14257         output.tcn_source := eg_tcn_source;
14258         RETURN NEXT output;
14259
14260     END IF;
14261
14262     -- 010 a
14263     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
14264     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14265
14266         eg_tcn_source := 'LCCN';
14267
14268         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14269
14270         IF NOT FOUND THEN
14271             output.used := FALSE;
14272         ELSE
14273             output.used := TRUE;
14274         END IF;
14275
14276         output.tcn := eg_tcn;
14277         output.tcn_source := eg_tcn_source;
14278         RETURN NEXT output;
14279
14280     END IF;
14281
14282     -- 035 a
14283     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
14284     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
14285
14286         eg_tcn_source := 'System Legacy';
14287
14288         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
14289
14290         IF NOT FOUND THEN
14291             output.used := FALSE;
14292         ELSE
14293             output.used := TRUE;
14294         END IF;
14295
14296         output.tcn := eg_tcn;
14297         output.tcn_source := eg_tcn_source;
14298         RETURN NEXT output;
14299
14300     END IF;
14301
14302     RETURN;
14303 END;
14304 $_$ LANGUAGE PLPGSQL;
14305
14306 CREATE INDEX claim_lid_idx ON acq.claim( lineitem_detail );
14307
14308 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);
14309
14310 UPDATE biblio.record_entry SET marc = '<record xmlns="http://www.loc.gov/MARC21/slim"/>' WHERE id = -1;
14311
14312 CREATE INDEX metabib_title_field_entry_value_idx ON metabib.title_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14313 CREATE INDEX metabib_author_field_entry_value_idx ON metabib.author_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14314 CREATE INDEX metabib_subject_field_entry_value_idx ON metabib.subject_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14315 CREATE INDEX metabib_keyword_field_entry_value_idx ON metabib.keyword_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14316 CREATE INDEX metabib_series_field_entry_value_idx ON metabib.series_field_entry (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14317
14318 CREATE INDEX metabib_author_field_entry_source_idx ON metabib.author_field_entry (source);
14319 CREATE INDEX metabib_keyword_field_entry_source_idx ON metabib.keyword_field_entry (source);
14320 CREATE INDEX metabib_title_field_entry_source_idx ON metabib.title_field_entry (source);
14321 CREATE INDEX metabib_series_field_entry_source_idx ON metabib.series_field_entry (source);
14322
14323 ALTER TABLE metabib.series_field_entry
14324         ADD CONSTRAINT metabib_series_field_entry_source_pkey FOREIGN KEY (source)
14325                 REFERENCES biblio.record_entry (id)
14326                 ON DELETE CASCADE
14327                 DEFERRABLE INITIALLY DEFERRED;
14328
14329 ALTER TABLE metabib.series_field_entry
14330         ADD CONSTRAINT metabib_series_field_entry_field_pkey FOREIGN KEY (field)
14331                 REFERENCES config.metabib_field (id)
14332                 ON DELETE CASCADE
14333                 DEFERRABLE INITIALLY DEFERRED;
14334
14335 CREATE TABLE acq.claim_policy_action (
14336         id              SERIAL       PRIMARY KEY,
14337         claim_policy    INT          NOT NULL REFERENCES acq.claim_policy
14338                                  ON DELETE CASCADE
14339                                      DEFERRABLE INITIALLY DEFERRED,
14340         action_interval INTERVAL     NOT NULL,
14341         action          INT          NOT NULL REFERENCES acq.claim_event_type
14342                                      DEFERRABLE INITIALLY DEFERRED,
14343         CONSTRAINT action_sequence UNIQUE (claim_policy, action_interval)
14344 );
14345
14346 CREATE OR REPLACE FUNCTION public.ingest_acq_marc ( ) RETURNS TRIGGER AS $function$
14347 DECLARE
14348     value       TEXT;
14349     atype       TEXT;
14350     prov        INT;
14351     pos         INT;
14352     adef        RECORD;
14353     xpath_string    TEXT;
14354 BEGIN
14355     FOR adef IN SELECT *,tableoid FROM acq.lineitem_attr_definition LOOP
14356  
14357         SELECT relname::TEXT INTO atype FROM pg_class WHERE oid = adef.tableoid;
14358  
14359         IF (atype NOT IN ('lineitem_usr_attr_definition','lineitem_local_attr_definition')) THEN
14360             IF (atype = 'lineitem_provider_attr_definition') THEN
14361                 SELECT provider INTO prov FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14362                 CONTINUE WHEN NEW.provider IS NULL OR prov <> NEW.provider;
14363             END IF;
14364  
14365             IF (atype = 'lineitem_provider_attr_definition') THEN
14366                 SELECT xpath INTO xpath_string FROM acq.lineitem_provider_attr_definition WHERE id = adef.id;
14367             ELSIF (atype = 'lineitem_marc_attr_definition') THEN
14368                 SELECT xpath INTO xpath_string FROM acq.lineitem_marc_attr_definition WHERE id = adef.id;
14369             ELSIF (atype = 'lineitem_generated_attr_definition') THEN
14370                 SELECT xpath INTO xpath_string FROM acq.lineitem_generated_attr_definition WHERE id = adef.id;
14371             END IF;
14372  
14373             xpath_string := REGEXP_REPLACE(xpath_string,$re$//?text\(\)$$re$,'');
14374  
14375             pos := 1;
14376  
14377             LOOP
14378                 SELECT extract_acq_marc_field(id, xpath_string || '[' || pos || ']', adef.remove) INTO value FROM acq.lineitem WHERE id = NEW.id;
14379  
14380                 IF (value IS NOT NULL AND value <> '') THEN
14381                     INSERT INTO acq.lineitem_attr (lineitem, definition, attr_type, attr_name, attr_value)
14382                         VALUES (NEW.id, adef.id, atype, adef.code, value);
14383                 ELSE
14384                     EXIT;
14385                 END IF;
14386  
14387                 pos := pos + 1;
14388             END LOOP;
14389  
14390         END IF;
14391  
14392     END LOOP;
14393  
14394     RETURN NULL;
14395 END;
14396 $function$ LANGUAGE PLPGSQL;
14397
14398 UPDATE config.metabib_field SET label = name;
14399 ALTER TABLE config.metabib_field ALTER COLUMN label SET NOT NULL;
14400
14401 ALTER TABLE config.metabib_field ADD CONSTRAINT field_class_fkey FOREIGN KEY (field_class) REFERENCES config.metabib_class (name);
14402
14403 ALTER TABLE config.metabib_field DROP CONSTRAINT metabib_field_field_class_check;
14404
14405 ALTER TABLE config.metabib_field ADD CONSTRAINT metabib_field_format_fkey FOREIGN KEY (format) REFERENCES config.xml_transform (name);
14406
14407 CREATE TABLE config.metabib_search_alias (
14408     alias       TEXT    PRIMARY KEY,
14409     field_class TEXT    NOT NULL REFERENCES config.metabib_class (name),
14410     field       INT     REFERENCES config.metabib_field (id)
14411 );
14412
14413 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
14414 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
14415 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
14416 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','keyword');
14417 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
14418 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
14419 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
14420 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
14421
14422 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
14423 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
14424 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
14425 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
14426 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
14427 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
14428 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
14429 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
14430 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
14431 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
14432 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
14433 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
14434 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
14435
14436 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
14437 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
14438 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
14439 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
14440 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
14441 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
14442 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
14443 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
14444
14445 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
14446 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
14447 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
14448 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
14449 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
14450 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
14451
14452 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
14453 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
14454 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
14455
14456 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 1;
14457 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;
14458 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;
14459 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;
14460 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;
14461
14462 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 11;
14463 UPDATE config.metabib_field SET facet_field=TRUE , facet_xpath=$$*[local-name()='namePart']$$ WHERE id = 12;
14464 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 13;
14465 UPDATE config.metabib_field SET facet_field=TRUE WHERE id = 14;
14466
14467 CREATE INDEX metabib_rec_descriptor_item_type_idx ON metabib.rec_descriptor (item_type);
14468 CREATE INDEX metabib_rec_descriptor_item_form_idx ON metabib.rec_descriptor (item_form);
14469 CREATE INDEX metabib_rec_descriptor_bib_level_idx ON metabib.rec_descriptor (bib_level);
14470 CREATE INDEX metabib_rec_descriptor_control_type_idx ON metabib.rec_descriptor (control_type);
14471 CREATE INDEX metabib_rec_descriptor_char_encoding_idx ON metabib.rec_descriptor (char_encoding);
14472 CREATE INDEX metabib_rec_descriptor_enc_level_idx ON metabib.rec_descriptor (enc_level);
14473 CREATE INDEX metabib_rec_descriptor_audience_idx ON metabib.rec_descriptor (audience);
14474 CREATE INDEX metabib_rec_descriptor_lit_form_idx ON metabib.rec_descriptor (lit_form);
14475 CREATE INDEX metabib_rec_descriptor_cat_form_idx ON metabib.rec_descriptor (cat_form);
14476 CREATE INDEX metabib_rec_descriptor_pub_status_idx ON metabib.rec_descriptor (pub_status);
14477 CREATE INDEX metabib_rec_descriptor_item_lang_idx ON metabib.rec_descriptor (item_lang);
14478 CREATE INDEX metabib_rec_descriptor_vr_format_idx ON metabib.rec_descriptor (vr_format);
14479 CREATE INDEX metabib_rec_descriptor_date1_idx ON metabib.rec_descriptor (date1);
14480 CREATE INDEX metabib_rec_descriptor_dates_idx ON metabib.rec_descriptor (date1,date2);
14481
14482 CREATE TABLE asset.opac_visible_copies (
14483   id        BIGINT primary key, -- copy id
14484   record    BIGINT,
14485   circ_lib  INTEGER
14486 );
14487 COMMENT ON TABLE asset.opac_visible_copies IS $$
14488 Materialized view of copies that are visible in the OPAC, used by
14489 search.query_parser_fts() to speed up OPAC visibility checks on large
14490 databases.  Contents are maintained by a set of triggers.
14491 $$;
14492 CREATE INDEX opac_visible_copies_idx1 on asset.opac_visible_copies (record, circ_lib);
14493
14494 CREATE OR REPLACE FUNCTION search.query_parser_fts (
14495
14496     param_search_ou INT,
14497     param_depth     INT,
14498     param_query     TEXT,
14499     param_statuses  INT[],
14500     param_locations INT[],
14501     param_offset    INT,
14502     param_check     INT,
14503     param_limit     INT,
14504     metarecord      BOOL,
14505     staff           BOOL
14506  
14507 ) RETURNS SETOF search.search_result AS $func$
14508 DECLARE
14509
14510     current_res         search.search_result%ROWTYPE;
14511     search_org_list     INT[];
14512
14513     check_limit         INT;
14514     core_limit          INT;
14515     core_offset         INT;
14516     tmp_int             INT;
14517
14518     core_result         RECORD;
14519     core_cursor         REFCURSOR;
14520     core_rel_query      TEXT;
14521
14522     total_count         INT := 0;
14523     check_count         INT := 0;
14524     deleted_count       INT := 0;
14525     visible_count       INT := 0;
14526     excluded_count      INT := 0;
14527
14528 BEGIN
14529
14530     check_limit := COALESCE( param_check, 1000 );
14531     core_limit  := COALESCE( param_limit, 25000 );
14532     core_offset := COALESCE( param_offset, 0 );
14533
14534     -- core_skip_chk := COALESCE( param_skip_chk, 1 );
14535
14536     IF param_search_ou > 0 THEN
14537         IF param_depth IS NOT NULL THEN
14538             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou, param_depth );
14539         ELSE
14540             SELECT array_accum(distinct id) INTO search_org_list FROM actor.org_unit_descendants( param_search_ou );
14541         END IF;
14542     ELSIF param_search_ou < 0 THEN
14543         SELECT array_accum(distinct org_unit) INTO search_org_list FROM actor.org_lasso_map WHERE lasso = -param_search_ou;
14544     ELSIF param_search_ou = 0 THEN
14545         -- reserved for user lassos (ou_buckets/type='lasso') with ID passed in depth ... hack? sure.
14546     END IF;
14547
14548     OPEN core_cursor FOR EXECUTE param_query;
14549
14550     LOOP
14551
14552         FETCH core_cursor INTO core_result;
14553         EXIT WHEN NOT FOUND;
14554         EXIT WHEN total_count >= core_limit;
14555
14556         total_count := total_count + 1;
14557
14558         CONTINUE WHEN total_count NOT BETWEEN  core_offset + 1 AND check_limit + core_offset;
14559
14560         check_count := check_count + 1;
14561
14562         PERFORM 1 FROM biblio.record_entry b WHERE NOT b.deleted AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14563         IF NOT FOUND THEN
14564             -- RAISE NOTICE ' % were all deleted ... ', core_result.records;
14565             deleted_count := deleted_count + 1;
14566             CONTINUE;
14567         END IF;
14568
14569         PERFORM 1
14570           FROM  biblio.record_entry b
14571                 JOIN config.bib_source s ON (b.source = s.id)
14572           WHERE s.transcendant
14573                 AND b.id IN ( SELECT * FROM search.explode_array( core_result.records ) );
14574
14575         IF FOUND THEN
14576             -- RAISE NOTICE ' % were all transcendant ... ', core_result.records;
14577             visible_count := visible_count + 1;
14578
14579             current_res.id = core_result.id;
14580             current_res.rel = core_result.rel;
14581
14582             tmp_int := 1;
14583             IF metarecord THEN
14584                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14585             END IF;
14586
14587             IF tmp_int = 1 THEN
14588                 current_res.record = core_result.records[1];
14589             ELSE
14590                 current_res.record = NULL;
14591             END IF;
14592
14593             RETURN NEXT current_res;
14594
14595             CONTINUE;
14596         END IF;
14597
14598         PERFORM 1
14599           FROM  asset.call_number cn
14600                 JOIN asset.uri_call_number_map map ON (map.call_number = cn.id)
14601                 JOIN asset.uri uri ON (map.uri = uri.id)
14602           WHERE NOT cn.deleted
14603                 AND cn.label = '##URI##'
14604                 AND uri.active
14605                 AND ( param_locations IS NULL OR array_upper(param_locations, 1) IS NULL )
14606                 AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14607                 AND cn.owning_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14608           LIMIT 1;
14609
14610         IF FOUND THEN
14611             -- RAISE NOTICE ' % have at least one URI ... ', core_result.records;
14612             visible_count := visible_count + 1;
14613
14614             current_res.id = core_result.id;
14615             current_res.rel = core_result.rel;
14616
14617             tmp_int := 1;
14618             IF metarecord THEN
14619                 SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14620             END IF;
14621
14622             IF tmp_int = 1 THEN
14623                 current_res.record = core_result.records[1];
14624             ELSE
14625                 current_res.record = NULL;
14626             END IF;
14627
14628             RETURN NEXT current_res;
14629
14630             CONTINUE;
14631         END IF;
14632
14633         IF param_statuses IS NOT NULL AND array_upper(param_statuses, 1) > 0 THEN
14634
14635             PERFORM 1
14636               FROM  asset.call_number cn
14637                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14638               WHERE NOT cn.deleted
14639                     AND NOT cp.deleted
14640                     AND cp.status IN ( SELECT * FROM search.explode_array( param_statuses ) )
14641                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14642                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14643               LIMIT 1;
14644
14645             IF NOT FOUND THEN
14646                 -- RAISE NOTICE ' % were all status-excluded ... ', core_result.records;
14647                 excluded_count := excluded_count + 1;
14648                 CONTINUE;
14649             END IF;
14650
14651         END IF;
14652
14653         IF param_locations IS NOT NULL AND array_upper(param_locations, 1) > 0 THEN
14654
14655             PERFORM 1
14656               FROM  asset.call_number cn
14657                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14658               WHERE NOT cn.deleted
14659                     AND NOT cp.deleted
14660                     AND cp.location IN ( SELECT * FROM search.explode_array( param_locations ) )
14661                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14662                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14663               LIMIT 1;
14664
14665             IF NOT FOUND THEN
14666                 -- RAISE NOTICE ' % were all copy_location-excluded ... ', core_result.records;
14667                 excluded_count := excluded_count + 1;
14668                 CONTINUE;
14669             END IF;
14670
14671         END IF;
14672
14673         IF staff IS NULL OR NOT staff THEN
14674
14675             PERFORM 1
14676               FROM  asset.opac_visible_copies
14677               WHERE circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14678                     AND record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14679               LIMIT 1;
14680
14681             IF NOT FOUND THEN
14682                 -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14683                 excluded_count := excluded_count + 1;
14684                 CONTINUE;
14685             END IF;
14686
14687         ELSE
14688
14689             PERFORM 1
14690               FROM  asset.call_number cn
14691                     JOIN asset.copy cp ON (cp.call_number = cn.id)
14692                     JOIN actor.org_unit a ON (cp.circ_lib = a.id)
14693               WHERE NOT cn.deleted
14694                     AND NOT cp.deleted
14695                     AND cp.circ_lib IN ( SELECT * FROM search.explode_array( search_org_list ) )
14696                     AND cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14697               LIMIT 1;
14698
14699             IF NOT FOUND THEN
14700
14701                 PERFORM 1
14702                   FROM  asset.call_number cn
14703                   WHERE cn.record IN ( SELECT * FROM search.explode_array( core_result.records ) )
14704                   LIMIT 1;
14705
14706                 IF FOUND THEN
14707                     -- RAISE NOTICE ' % were all visibility-excluded ... ', core_result.records;
14708                     excluded_count := excluded_count + 1;
14709                     CONTINUE;
14710                 END IF;
14711
14712             END IF;
14713
14714         END IF;
14715
14716         visible_count := visible_count + 1;
14717
14718         current_res.id = core_result.id;
14719         current_res.rel = core_result.rel;
14720
14721         tmp_int := 1;
14722         IF metarecord THEN
14723             SELECT COUNT(DISTINCT s.source) INTO tmp_int FROM metabib.metarecord_source_map s WHERE s.metarecord = core_result.id;
14724         END IF;
14725
14726         IF tmp_int = 1 THEN
14727             current_res.record = core_result.records[1];
14728         ELSE
14729             current_res.record = NULL;
14730         END IF;
14731
14732         RETURN NEXT current_res;
14733
14734         IF visible_count % 1000 = 0 THEN
14735             -- RAISE NOTICE ' % visible so far ... ', visible_count;
14736         END IF;
14737
14738     END LOOP;
14739
14740     current_res.id = NULL;
14741     current_res.rel = NULL;
14742     current_res.record = NULL;
14743     current_res.total = total_count;
14744     current_res.checked = check_count;
14745     current_res.deleted = deleted_count;
14746     current_res.visible = visible_count;
14747     current_res.excluded = excluded_count;
14748
14749     CLOSE core_cursor;
14750
14751     RETURN NEXT current_res;
14752
14753 END;
14754 $func$ LANGUAGE PLPGSQL;
14755
14756 ALTER TABLE biblio.record_entry ADD COLUMN owner INT REFERENCES actor.org_unit (id);
14757 ALTER TABLE biblio.record_entry ADD COLUMN share_depth INT;
14758
14759 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN owner INT;
14760 ALTER TABLE auditor.biblio_record_entry_history ADD COLUMN share_depth INT;
14761
14762 DROP VIEW auditor.biblio_record_entry_lifecycle;
14763
14764 SELECT auditor.create_auditor_lifecycle( 'biblio', 'record_entry' );
14765
14766 CREATE OR REPLACE FUNCTION public.first_word ( TEXT ) RETURNS TEXT AS $$
14767         SELECT COALESCE(SUBSTRING( $1 FROM $_$^\S+$_$), '');
14768 $$ LANGUAGE SQL STRICT IMMUTABLE;
14769
14770 CREATE OR REPLACE FUNCTION public.normalize_space( TEXT ) RETURNS TEXT AS $$
14771     SELECT regexp_replace(regexp_replace(regexp_replace($1, E'\\n', ' ', 'g'), E'(?:^\\s+)|(\\s+$)', '', 'g'), E'\\s+', ' ', 'g');
14772 $$ LANGUAGE SQL STRICT IMMUTABLE;
14773
14774 CREATE OR REPLACE FUNCTION public.lowercase( TEXT ) RETURNS TEXT AS $$
14775     return lc(shift);
14776 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14777
14778 CREATE OR REPLACE FUNCTION public.uppercase( TEXT ) RETURNS TEXT AS $$
14779     return uc(shift);
14780 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14781
14782 CREATE OR REPLACE FUNCTION public.remove_diacritics( TEXT ) RETURNS TEXT AS $$
14783     use Unicode::Normalize;
14784
14785     my $x = NFD(shift);
14786     $x =~ s/\pM+//go;
14787     return $x;
14788
14789 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14790
14791 CREATE OR REPLACE FUNCTION public.entityize( TEXT ) RETURNS TEXT AS $$
14792     use Unicode::Normalize;
14793
14794     my $x = NFC(shift);
14795     $x =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
14796     return $x;
14797
14798 $$ LANGUAGE PLPERLU STRICT IMMUTABLE;
14799
14800 CREATE OR REPLACE FUNCTION actor.org_unit_ancestor_setting( setting_name TEXT, org_id INT ) RETURNS SETOF actor.org_unit_setting AS $$
14801 DECLARE
14802     setting RECORD;
14803     cur_org INT;
14804 BEGIN
14805     cur_org := org_id;
14806     LOOP
14807         SELECT INTO setting * FROM actor.org_unit_setting WHERE org_unit = cur_org AND name = setting_name;
14808         IF FOUND THEN
14809             RETURN NEXT setting;
14810         END IF;
14811         SELECT INTO cur_org parent_ou FROM actor.org_unit WHERE id = cur_org;
14812         EXIT WHEN cur_org IS NULL;
14813     END LOOP;
14814     RETURN;
14815 END;
14816 $$ LANGUAGE plpgsql STABLE;
14817
14818 CREATE OR REPLACE FUNCTION acq.extract_holding_attr_table (lineitem int, tag text) RETURNS SETOF acq.flat_lineitem_holding_subfield AS $$
14819 DECLARE
14820     counter INT;
14821     lida    acq.flat_lineitem_holding_subfield%ROWTYPE;
14822 BEGIN
14823
14824     SELECT  COUNT(*) INTO counter
14825       FROM  oils_xpath_table(
14826                 'id',
14827                 'marc',
14828                 'acq.lineitem',
14829                 '//*[@tag="' || tag || '"]',
14830                 'id=' || lineitem
14831             ) as t(i int,c text);
14832
14833     FOR i IN 1 .. counter LOOP
14834         FOR lida IN
14835             SELECT  *
14836               FROM  (   SELECT  id,i,t,v
14837                           FROM  oils_xpath_table(
14838                                     'id',
14839                                     'marc',
14840                                     'acq.lineitem',
14841                                     '//*[@tag="' || tag || '"][position()=' || i || ']/*/@code|' ||
14842                                         '//*[@tag="' || tag || '"][position()=' || i || ']/*[@code]',
14843                                     'id=' || lineitem
14844                                 ) as t(id int,t text,v text)
14845                     )x
14846         LOOP
14847             RETURN NEXT lida;
14848         END LOOP;
14849     END LOOP;
14850
14851     RETURN;
14852 END;
14853 $$ LANGUAGE PLPGSQL;
14854
14855 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
14856 DECLARE
14857     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
14858     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
14859     result      config.i18n_core%ROWTYPE;
14860     fallback    TEXT;
14861     keyfield    TEXT := keyclass || '.' || keycol;
14862 BEGIN
14863
14864     -- Try the full locale
14865     SELECT  * INTO result
14866       FROM  config.i18n_core
14867       WHERE fq_field = keyfield
14868             AND identity_value = keyvalue
14869             AND translation = locale;
14870
14871     -- Try just the language
14872     IF NOT FOUND THEN
14873         SELECT  * INTO result
14874           FROM  config.i18n_core
14875           WHERE fq_field = keyfield
14876                 AND identity_value = keyvalue
14877                 AND translation = language;
14878     END IF;
14879
14880     -- Fall back to the string we passed in in the first place
14881     IF NOT FOUND THEN
14882     EXECUTE
14883             'SELECT ' ||
14884                 keycol ||
14885             ' FROM ' || keytable ||
14886             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
14887                 INTO fallback;
14888         RETURN fallback;
14889     END IF;
14890
14891     RETURN result.string;
14892 END;
14893 $func$ LANGUAGE PLPGSQL STABLE;
14894
14895 SELECT auditor.create_auditor ( 'acq', 'invoice' );
14896
14897 SELECT auditor.create_auditor ( 'acq', 'invoice_item' );
14898
14899 SELECT auditor.create_auditor ( 'acq', 'invoice_entry' );
14900
14901 INSERT INTO acq.cancel_reason ( id, org_unit, label, description, keep_debits ) VALUES (
14902     3, 1, 'delivered_but_lost',
14903     oils_i18n_gettext( 2, 'Delivered but not received; presumed lost', 'acqcr', 'label' ), TRUE );
14904
14905 CREATE TABLE config.global_flag (
14906     label   TEXT    NOT NULL
14907 ) INHERITS (config.internal_flag);
14908 ALTER TABLE config.global_flag ADD PRIMARY KEY (name);
14909
14910 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
14911     VALUES (
14912         'cat.bib.use_id_for_tcn',
14913         oils_i18n_gettext(
14914             'cat.bib.use_id_for_tcn',
14915             'Cat: Use Internal ID for TCN Value',
14916             'cgf', 
14917             'label'
14918         )
14919     );
14920
14921 -- resolves performance issue noted by EG Indiana
14922
14923 CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
14924
14925 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'name') );
14926
14927 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14928     (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="001"]/text()$$, TRUE );
14929 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14930     (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="020"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14931 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14932     (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="022"]/marcxml:subfield[code="a" or code="z"]/text()$$, TRUE );
14933 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14934     (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 );
14935 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14936     (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 );
14937 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14938     (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 );
14939 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14940     (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 );
14941 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14942     (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 );
14943 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field ) VALUES
14944     (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marcxml:datafield[tag="099"]//text()$$, TRUE );
14945
14946 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
14947  
14948
14949 DELETE FROM config.metabib_search_alias WHERE alias = 'dc.identifier';
14950
14951 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
14952 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
14953 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
14954 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
14955 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
14956 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
14957
14958 CREATE TABLE metabib.identifier_field_entry (
14959         id              BIGSERIAL       PRIMARY KEY,
14960         source          BIGINT          NOT NULL,
14961         field           INT             NOT NULL,
14962         value           TEXT            NOT NULL,
14963         index_vector    tsvector        NOT NULL
14964 );
14965 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
14966         BEFORE UPDATE OR INSERT ON metabib.identifier_field_entry
14967         FOR EACH ROW EXECUTE PROCEDURE oils_tsearch2('keyword');
14968
14969 CREATE INDEX metabib_identifier_field_entry_index_vector_idx ON metabib.identifier_field_entry USING GIST (index_vector);
14970 CREATE INDEX metabib_identifier_field_entry_value_idx ON metabib.identifier_field_entry
14971     (SUBSTRING(value,1,1024)) WHERE index_vector = ''::TSVECTOR;
14972 CREATE INDEX metabib_identifier_field_entry_source_idx ON metabib.identifier_field_entry (source);
14973
14974 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_source_pkey
14975     FOREIGN KEY (source) REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
14976 ALTER TABLE metabib.identifier_field_entry ADD CONSTRAINT metabib_identifier_field_entry_field_pkey
14977     FOREIGN KEY (field) REFERENCES config.metabib_field (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED;
14978
14979 CREATE OR REPLACE FUNCTION public.translate_isbn1013( TEXT ) RETURNS TEXT AS $func$
14980     use Business::ISBN;
14981     use strict;
14982     use warnings;
14983
14984     # For each ISBN found in a single string containing a set of ISBNs:
14985     #   * Normalize an incoming ISBN to have the correct checksum and no hyphens
14986     #   * Convert an incoming ISBN10 or ISBN13 to its counterpart and return
14987
14988     my $input = shift;
14989     my $output = '';
14990
14991     foreach my $word (split(/\s/, $input)) {
14992         my $isbn = Business::ISBN->new($word);
14993
14994         # First check the checksum; if it is not valid, fix it and add the original
14995         # bad-checksum ISBN to the output
14996         if ($isbn && $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM) {
14997             $output .= $isbn->isbn() . " ";
14998             $isbn->fix_checksum();
14999         }
15000
15001         # If we now have a valid ISBN, convert it to its counterpart ISBN10/ISBN13
15002         # and add the normalized original ISBN to the output
15003         if ($isbn && $isbn->is_valid()) {
15004             my $isbn_xlated = ($isbn->type eq "ISBN13") ? $isbn->as_isbn10 : $isbn->as_isbn13;
15005             $output .= $isbn->isbn . " ";
15006
15007             # If we successfully converted the ISBN to its counterpart, add the
15008             # converted ISBN to the output as well
15009             $output .= ($isbn_xlated->isbn . " ") if ($isbn_xlated);
15010         }
15011     }
15012     return $output if $output;
15013
15014     # If there were no valid ISBNs, just return the raw input
15015     return $input;
15016 $func$ LANGUAGE PLPERLU;
15017
15018 COMMENT ON FUNCTION public.translate_isbn1013(TEXT) IS $$
15019 /*
15020  * Copyright (C) 2010 Merrimack Valley Library Consortium
15021  * Jason Stephenson <jstephenson@mvlc.org>
15022  * Copyright (C) 2010 Laurentian University
15023  * Dan Scott <dscott@laurentian.ca>
15024  *
15025  * The translate_isbn1013 function takes an input ISBN and returns the
15026  * following in a single space-delimited string if the input ISBN is valid:
15027  *   - The normalized input ISBN (hyphens stripped)
15028  *   - The normalized input ISBN with a fixed checksum if the checksum was bad
15029  *   - The ISBN converted to its ISBN10 or ISBN13 counterpart, if possible
15030  */
15031 $$;
15032
15033 UPDATE config.metabib_field SET facet_field = FALSE WHERE id BETWEEN 17 AND 25;
15034 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'marcxml','marc') WHERE id BETWEEN 17 AND 25;
15035 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'tag','@tag') WHERE id BETWEEN 17 AND 25;
15036 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'code','@code') WHERE id BETWEEN 17 AND 25;
15037 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'"',E'\'') WHERE id BETWEEN 17 AND 25;
15038 UPDATE config.metabib_field SET xpath = REPLACE(xpath,'/text()','') WHERE id BETWEEN 17 AND 24;
15039
15040 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15041         'ISBN 10/13 conversion',
15042         'Translate ISBN10 to ISBN13, and vice versa, for indexing purposes.',
15043         'translate_isbn1013',
15044         0
15045 );
15046
15047 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15048         'Replace',
15049         'Replace all occurences of first parameter in the string with the second parameter.',
15050         'replace',
15051         2
15052 );
15053
15054 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15055     SELECT  m.id, i.id, 1
15056       FROM  config.metabib_field m,
15057             config.index_normalizer i
15058       WHERE i.func IN ('first_word')
15059             AND m.id IN (18);
15060
15061 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15062     SELECT  m.id, i.id, 2
15063       FROM  config.metabib_field m,
15064             config.index_normalizer i
15065       WHERE i.func IN ('translate_isbn1013')
15066             AND m.id IN (18);
15067
15068 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15069     SELECT  m.id, i.id, $$['-','']$$
15070       FROM  config.metabib_field m,
15071             config.index_normalizer i
15072       WHERE i.func IN ('replace')
15073             AND m.id IN (19);
15074
15075 INSERT INTO config.metabib_field_index_norm_map (field,norm,params)
15076     SELECT  m.id, i.id, $$[' ','']$$
15077       FROM  config.metabib_field m,
15078             config.index_normalizer i
15079       WHERE i.func IN ('replace')
15080             AND m.id IN (19);
15081
15082 DELETE FROM config.metabib_field_index_norm_map WHERE norm IN (1,2) and field > 16;
15083
15084 UPDATE  config.metabib_field_index_norm_map
15085   SET   params = REPLACE(params,E'\'','"')
15086   WHERE params IS NOT NULL AND params <> '';
15087
15088 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15089
15090 CREATE TEXT SEARCH CONFIGURATION identifier ( COPY = title );
15091
15092 ALTER TABLE config.circ_modifier
15093         ADD COLUMN avg_wait_time INTERVAL;
15094
15095 --CREATE TABLE actor.usr_password_reset (
15096 --  id SERIAL PRIMARY KEY,
15097 --  uuid TEXT NOT NULL, 
15098 --  usr BIGINT NOT NULL REFERENCES actor.usr(id) DEFERRABLE INITIALLY DEFERRED, 
15099 --  request_time TIMESTAMP NOT NULL DEFAULT NOW(), 
15100 --  has_been_reset BOOL NOT NULL DEFAULT false
15101 --);
15102 --COMMENT ON TABLE actor.usr_password_reset IS $$
15103 --/*
15104 -- * Copyright (C) 2010 Laurentian University
15105 -- * Dan Scott <dscott@laurentian.ca>
15106 -- *
15107 -- * Self-serve password reset requests
15108 -- *
15109 -- * ****
15110 -- *
15111 -- * This program is free software; you can redistribute it and/or
15112 -- * modify it under the terms of the GNU General Public License
15113 -- * as published by the Free Software Foundation; either version 2
15114 -- * of the License, or (at your option) any later version.
15115 -- *
15116 -- * This program is distributed in the hope that it will be useful,
15117 -- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15118 -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15119 -- * GNU General Public License for more details.
15120 -- */
15121 --$$;
15122 --CREATE UNIQUE INDEX actor_usr_password_reset_uuid_idx ON actor.usr_password_reset (uuid);
15123 --CREATE INDEX actor_usr_password_reset_usr_idx ON actor.usr_password_reset (usr);
15124 --CREATE INDEX actor_usr_password_reset_request_time_idx ON actor.usr_password_reset (request_time);
15125 --CREATE INDEX actor_usr_password_reset_has_been_reset_idx ON actor.usr_password_reset (has_been_reset);
15126
15127 -- Use the identifier search class tsconfig
15128 DROP TRIGGER IF EXISTS metabib_identifier_field_entry_fti_trigger ON metabib.identifier_field_entry;
15129 CREATE TRIGGER metabib_identifier_field_entry_fti_trigger
15130     BEFORE INSERT OR UPDATE ON metabib.identifier_field_entry
15131     FOR EACH ROW
15132     EXECUTE PROCEDURE public.oils_tsearch2('identifier');
15133
15134 INSERT INTO config.global_flag (name,label,enabled)
15135     VALUES ('history.circ.retention_age',oils_i18n_gettext('history.circ.retention_age', 'Historical Circulation Retention Age', 'cgf', 'label'), TRUE);
15136 INSERT INTO config.global_flag (name,label,enabled)
15137     VALUES ('history.circ.retention_count',oils_i18n_gettext('history.circ.retention_count', 'Historical Circulations per Copy', 'cgf', 'label'), TRUE);
15138
15139 -- turn a JSON scalar into an SQL TEXT value
15140 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
15141     use JSON::XS;                    
15142     my $json = shift();
15143     my $txt;
15144     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };   
15145     return undef if ($@);
15146     return $txt
15147 $f$ LANGUAGE PLPERLU;
15148
15149 -- Return the list of circ chain heads in xact_start order that the user has chosen to "retain"
15150 CREATE OR REPLACE FUNCTION action.usr_visible_circs (usr_id INT) RETURNS SETOF action.circulation AS $func$
15151 DECLARE
15152     c               action.circulation%ROWTYPE;
15153     view_age        INTERVAL;
15154     usr_view_age    actor.usr_setting%ROWTYPE;
15155     usr_view_start  actor.usr_setting%ROWTYPE;
15156 BEGIN
15157     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_age';
15158     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.circ.retention_start';
15159
15160     IF usr_view_age.value IS NOT NULL AND usr_view_start.value IS NOT NULL THEN
15161         -- User opted in and supplied a retention age
15162         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
15163             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15164         ELSE
15165             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
15166         END IF;
15167     ELSIF usr_view_start.value IS NOT NULL THEN
15168         -- User opted in
15169         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
15170     ELSE
15171         -- User did not opt in
15172         RETURN;
15173     END IF;
15174
15175     FOR c IN
15176         SELECT  *
15177           FROM  action.circulation
15178           WHERE usr = usr_id
15179                 AND parent_circ IS NULL
15180                 AND xact_start > NOW() - view_age
15181           ORDER BY xact_start
15182     LOOP
15183         RETURN NEXT c;
15184     END LOOP;
15185
15186     RETURN;
15187 END;
15188 $func$ LANGUAGE PLPGSQL;
15189
15190 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
15191 DECLARE
15192     usr_keep_age    actor.usr_setting%ROWTYPE;
15193     usr_keep_start  actor.usr_setting%ROWTYPE;
15194     org_keep_age    INTERVAL;
15195     org_keep_count  INT;
15196
15197     keep_age        INTERVAL;
15198
15199     target_acp      RECORD;
15200     circ_chain_head action.circulation%ROWTYPE;
15201     circ_chain_tail action.circulation%ROWTYPE;
15202
15203     purge_position  INT;
15204     count_purged    INT;
15205 BEGIN
15206
15207     count_purged := 0;
15208
15209     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
15210
15211     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
15212     IF org_keep_count IS NULL THEN
15213         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
15214     END IF;
15215
15216     -- First, find copies with more than keep_count non-renewal circs
15217     FOR target_acp IN
15218         SELECT  target_copy,
15219                 COUNT(*) AS total_real_circs
15220           FROM  action.circulation
15221           WHERE parent_circ IS NULL
15222                 AND xact_finish IS NOT NULL
15223           GROUP BY target_copy
15224           HAVING COUNT(*) > org_keep_count
15225     LOOP
15226         purge_position := 0;
15227         -- And, for those, select circs that are finished and older than keep_age
15228         FOR circ_chain_head IN
15229             SELECT  *
15230               FROM  action.circulation
15231               WHERE target_copy = target_acp.target_copy
15232                     AND parent_circ IS NULL
15233               ORDER BY xact_start
15234         LOOP
15235
15236             -- Stop once we've purged enough circs to hit org_keep_count
15237             EXIT WHEN target_acp.total_real_circs - purge_position <= org_keep_count;
15238
15239             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
15240             EXIT WHEN circ_chain_tail.xact_finish IS NULL;
15241
15242             -- Now get the user setings, if any, to block purging if the user wants to keep more circs
15243             usr_keep_age.value := NULL;
15244             SELECT * INTO usr_keep_age FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_age';
15245
15246             usr_keep_start.value := NULL;
15247             SELECT * INTO usr_keep_start FROM actor.usr_setting WHERE usr = circ_chain_head.usr AND name = 'history.circ.retention_start_date';
15248
15249             IF usr_keep_age.value IS NOT NULL AND usr_keep_start.value IS NOT NULL THEN
15250                 IF oils_json_to_string(usr_keep_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ) THEN
15251                     keep_age := AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ);
15252                 ELSE
15253                     keep_age := oils_json_to_string(usr_keep_age.value)::INTERVAL;
15254                 END IF;
15255             ELSIF usr_keep_start.value IS NOT NULL THEN
15256                 keep_age := AGE(NOW(), oils_json_to_string(usr_keep_start.value)::TIMESTAMPTZ);
15257             ELSE
15258                 keep_age := COALESCE( org_keep_age::INTERVAL, '2000 years'::INTEVAL );
15259             END IF;
15260
15261             EXIT WHEN AGE(NOW(), circ_chain_tail.xact_finish) < keep_age;
15262
15263             -- We've passed the purging tests, purge the circ chain starting at the end
15264             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15265             WHILE circ_chain_tail.parent_circ IS NOT NULL LOOP
15266                 SELECT * INTO circ_chain_tail FROM action.circulation WHERE id = circ_chain_tail.parent_circ;
15267                 DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
15268             END LOOP;
15269
15270             count_purged := count_purged + 1;
15271             purge_position := purge_position + 1;
15272
15273         END LOOP;
15274     END LOOP;
15275 END;
15276 $func$ LANGUAGE PLPGSQL;
15277
15278 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
15279 DECLARE
15280     h               action.hold_request%ROWTYPE;
15281     view_age        INTERVAL;
15282     view_count      INT;
15283     usr_view_count  actor.usr_setting%ROWTYPE;
15284     usr_view_age    actor.usr_setting%ROWTYPE;
15285     usr_view_start  actor.usr_setting%ROWTYPE;
15286 BEGIN
15287     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
15288     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
15289     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
15290
15291     FOR h IN
15292         SELECT  *
15293           FROM  action.hold_request
15294           WHERE usr = usr_id
15295                 AND fulfillment_time IS NULL
15296                 AND cancel_time IS NULL
15297           ORDER BY request_time DESC
15298     LOOP
15299         RETURN NEXT h;
15300     END LOOP;
15301
15302     IF usr_view_start.value IS NULL THEN
15303         RETURN;
15304     END IF;
15305
15306     IF usr_view_age.value IS NOT NULL THEN
15307         -- User opted in and supplied a retention age
15308         IF oils_json_to_string(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ) THEN
15309             view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15310         ELSE
15311             view_age := oils_json_to_string(usr_view_age.value)::INTERVAL;
15312         END IF;
15313     ELSE
15314         -- User opted in
15315         view_age := AGE(NOW(), oils_json_to_string(usr_view_start.value)::TIMESTAMPTZ);
15316     END IF;
15317
15318     IF usr_view_count.value IS NOT NULL THEN
15319         view_count := oils_json_to_text(usr_view_count.value)::INT;
15320     ELSE
15321         view_count := 1000;
15322     END IF;
15323
15324     -- show some fulfilled/canceled holds
15325     FOR h IN
15326         SELECT  *
15327           FROM  action.hold_request
15328           WHERE usr = usr_id
15329                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
15330                 AND request_time > NOW() - view_age
15331           ORDER BY request_time DESC
15332           LIMIT view_count
15333     LOOP
15334         RETURN NEXT h;
15335     END LOOP;
15336
15337     RETURN;
15338 END;
15339 $func$ LANGUAGE PLPGSQL;
15340
15341 DROP TABLE IF EXISTS serial.bib_summary CASCADE;
15342
15343 DROP TABLE IF EXISTS serial.index_summary CASCADE;
15344
15345 DROP TABLE IF EXISTS serial.sup_summary CASCADE;
15346
15347 DROP TABLE IF EXISTS serial.issuance CASCADE;
15348
15349 DROP TABLE IF EXISTS serial.binding_unit CASCADE;
15350
15351 DROP TABLE IF EXISTS serial.subscription CASCADE;
15352
15353 CREATE TABLE asset.copy_template (
15354         id             SERIAL   PRIMARY KEY,
15355         owning_lib     INT      NOT NULL
15356                                 REFERENCES actor.org_unit (id)
15357                                 DEFERRABLE INITIALLY DEFERRED,
15358         creator        BIGINT   NOT NULL
15359                                 REFERENCES actor.usr (id)
15360                                 DEFERRABLE INITIALLY DEFERRED,
15361         editor         BIGINT   NOT NULL
15362                                 REFERENCES actor.usr (id)
15363                                 DEFERRABLE INITIALLY DEFERRED,
15364         create_date    TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15365         edit_date      TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15366         name           TEXT     NOT NULL,
15367         -- columns above this point are attributes of the template itself
15368         -- columns after this point are attributes of the copy this template modifies/creates
15369         circ_lib       INT      REFERENCES actor.org_unit (id)
15370                                 DEFERRABLE INITIALLY DEFERRED,
15371         status         INT      REFERENCES config.copy_status (id)
15372                                 DEFERRABLE INITIALLY DEFERRED,
15373         location       INT      REFERENCES asset.copy_location (id)
15374                                 DEFERRABLE INITIALLY DEFERRED,
15375         loan_duration  INT      CONSTRAINT valid_loan_duration CHECK (
15376                                     loan_duration IS NULL OR loan_duration IN (1,2,3)),
15377         fine_level     INT      CONSTRAINT valid_fine_level CHECK (
15378                                     fine_level IS NULL OR loan_duration IN (1,2,3)),
15379         age_protect    INT,
15380         circulate      BOOL,
15381         deposit        BOOL,
15382         ref            BOOL,
15383         holdable       BOOL,
15384         deposit_amount NUMERIC(6,2),
15385         price          NUMERIC(8,2),
15386         circ_modifier  TEXT,
15387         circ_as_type   TEXT,
15388         alert_message  TEXT,
15389         opac_visible   BOOL,
15390         floating       BOOL,
15391         mint_condition BOOL
15392 );
15393
15394 CREATE TABLE serial.subscription (
15395         id                     SERIAL       PRIMARY KEY,
15396         owning_lib             INT          NOT NULL DEFAULT 1
15397                                             REFERENCES actor.org_unit (id)
15398                                             ON DELETE SET NULL
15399                                             DEFERRABLE INITIALLY DEFERRED,
15400         start_date             TIMESTAMP WITH TIME ZONE     NOT NULL,
15401         end_date               TIMESTAMP WITH TIME ZONE,    -- interpret NULL as current subscription
15402         record_entry           BIGINT       REFERENCES biblio.record_entry (id)
15403                                             ON DELETE SET NULL
15404                                             DEFERRABLE INITIALLY DEFERRED,
15405         expected_date_offset   INTERVAL
15406         -- acquisitions/business-side tables link to here
15407 );
15408
15409 --at least one distribution per org_unit holding issues
15410 CREATE TABLE serial.distribution (
15411         id                    SERIAL  PRIMARY KEY,
15412         record_entry          BIGINT  REFERENCES serial.record_entry (id)
15413                                       ON DELETE SET NULL
15414                                       DEFERRABLE INITIALLY DEFERRED,
15415         summary_method        TEXT    CONSTRAINT sdist_summary_method_check CHECK (
15416                                           summary_method IS NULL
15417                                           OR summary_method IN ( 'add_to_sre',
15418                                           'merge_with_sre', 'use_sre_only',
15419                                           'use_sdist_only')),
15420         subscription          INT     NOT NULL
15421                                       REFERENCES serial.subscription (id)
15422                                                                   ON DELETE CASCADE
15423                                                                   DEFERRABLE INITIALLY DEFERRED,
15424         holding_lib           INT     NOT NULL
15425                                       REFERENCES actor.org_unit (id)
15426                                                                   DEFERRABLE INITIALLY DEFERRED,
15427         label                 TEXT    NOT NULL,
15428         receive_call_number   BIGINT  REFERENCES asset.call_number (id)
15429                                       DEFERRABLE INITIALLY DEFERRED,
15430         receive_unit_template INT     REFERENCES asset.copy_template (id)
15431                                       DEFERRABLE INITIALLY DEFERRED,
15432         bind_call_number      BIGINT  REFERENCES asset.call_number (id)
15433                                       DEFERRABLE INITIALLY DEFERRED,
15434         bind_unit_template    INT     REFERENCES asset.copy_template (id)
15435                                       DEFERRABLE INITIALLY DEFERRED,
15436         unit_label_prefix     TEXT,
15437         unit_label_suffix     TEXT
15438 );
15439
15440 CREATE UNIQUE INDEX one_dist_per_sre_idx ON serial.distribution (record_entry);
15441
15442 CREATE TABLE serial.stream (
15443         id              SERIAL  PRIMARY KEY,
15444         distribution    INT     NOT NULL
15445                                 REFERENCES serial.distribution (id)
15446                                 ON DELETE CASCADE
15447                                 DEFERRABLE INITIALLY DEFERRED,
15448         routing_label   TEXT
15449 );
15450
15451 CREATE UNIQUE INDEX label_once_per_dist
15452         ON serial.stream (distribution, routing_label)
15453         WHERE routing_label IS NOT NULL;
15454
15455 CREATE TABLE serial.routing_list_user (
15456         id             SERIAL       PRIMARY KEY,
15457         stream         INT          NOT NULL
15458                                     REFERENCES serial.stream
15459                                     ON DELETE CASCADE
15460                                     DEFERRABLE INITIALLY DEFERRED,
15461         pos            INT          NOT NULL DEFAULT 1,
15462         reader         INT          REFERENCES actor.usr
15463                                     ON DELETE CASCADE
15464                                     DEFERRABLE INITIALLY DEFERRED,
15465         department     TEXT,
15466         note           TEXT,
15467         CONSTRAINT one_pos_per_routing_list UNIQUE ( stream, pos ),
15468         CONSTRAINT reader_or_dept CHECK
15469         (
15470             -- Recipient is a person or a department, but not both
15471                 (reader IS NOT NULL AND department IS NULL) OR
15472                 (reader IS NULL AND department IS NOT NULL)
15473         )
15474 );
15475
15476 CREATE TABLE serial.caption_and_pattern (
15477         id           SERIAL       PRIMARY KEY,
15478         subscription INT          NOT NULL REFERENCES serial.subscription (id)
15479                                   ON DELETE CASCADE
15480                                   DEFERRABLE INITIALLY DEFERRED,
15481         type         TEXT         NOT NULL
15482                                   CONSTRAINT cap_type CHECK ( type in
15483                                   ( 'basic', 'supplement', 'index' )),
15484         create_date  TIMESTAMPTZ  NOT NULL DEFAULT now(),
15485         start_date   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
15486         end_date     TIMESTAMP WITH TIME ZONE,
15487         active       BOOL         NOT NULL DEFAULT FALSE,
15488         pattern_code TEXT         NOT NULL,       -- must contain JSON
15489         enum_1       TEXT,
15490         enum_2       TEXT,
15491         enum_3       TEXT,
15492         enum_4       TEXT,
15493         enum_5       TEXT,
15494         enum_6       TEXT,
15495         chron_1      TEXT,
15496         chron_2      TEXT,
15497         chron_3      TEXT,
15498         chron_4      TEXT,
15499         chron_5      TEXT
15500 );
15501
15502 CREATE TABLE serial.issuance (
15503         id              SERIAL    PRIMARY KEY,
15504         creator         INT       NOT NULL
15505                                   REFERENCES actor.usr (id)
15506                                                           DEFERRABLE INITIALLY DEFERRED,
15507         editor          INT       NOT NULL
15508                                   REFERENCES actor.usr (id)
15509                                   DEFERRABLE INITIALLY DEFERRED,
15510         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15511         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15512         subscription    INT       NOT NULL
15513                                   REFERENCES serial.subscription (id)
15514                                   ON DELETE CASCADE
15515                                   DEFERRABLE INITIALLY DEFERRED,
15516         label           TEXT,
15517         date_published  TIMESTAMP WITH TIME ZONE,
15518         caption_and_pattern  INT  REFERENCES serial.caption_and_pattern (id)
15519                               DEFERRABLE INITIALLY DEFERRED,
15520         holding_code    TEXT,
15521         holding_type    TEXT      CONSTRAINT valid_holding_type CHECK
15522                                   (
15523                                       holding_type IS NULL
15524                                       OR holding_type IN ('basic','supplement','index')
15525                                   ),
15526         holding_link_id INT
15527         -- TODO: add columns for separate enumeration/chronology values
15528 );
15529
15530 CREATE TABLE serial.unit (
15531         label           TEXT,
15532         label_sort_key  TEXT,
15533         contents        TEXT    NOT NULL
15534 ) INHERITS (asset.copy);
15535
15536 ALTER TABLE serial.unit ADD PRIMARY KEY (id);
15537
15538 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_call_number_fkey FOREIGN KEY (call_number) REFERENCES asset.call_number (id) DEFERRABLE INITIALLY DEFERRED;
15539
15540 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_creator_fkey FOREIGN KEY (creator) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15541
15542 ALTER TABLE serial.unit ADD CONSTRAINT serial_unit_editor_fkey FOREIGN KEY (editor) REFERENCES actor.usr (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED;
15543
15544 CREATE TABLE serial.item (
15545         id              SERIAL  PRIMARY KEY,
15546         creator         INT     NOT NULL
15547                                 REFERENCES actor.usr (id)
15548                                 DEFERRABLE INITIALLY DEFERRED,
15549         editor          INT     NOT NULL
15550                                 REFERENCES actor.usr (id)
15551                                 DEFERRABLE INITIALLY DEFERRED,
15552         create_date     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15553         edit_date       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
15554         issuance        INT     NOT NULL
15555                                 REFERENCES serial.issuance (id)
15556                                 ON DELETE CASCADE
15557                                 DEFERRABLE INITIALLY DEFERRED,
15558         stream          INT     NOT NULL
15559                                 REFERENCES serial.stream (id)
15560                                 ON DELETE CASCADE
15561                                 DEFERRABLE INITIALLY DEFERRED,
15562         unit            INT     REFERENCES serial.unit (id)
15563                                 ON DELETE SET NULL
15564                                 DEFERRABLE INITIALLY DEFERRED,
15565         uri             INT     REFERENCES asset.uri (id)
15566                                 ON DELETE SET NULL
15567                                 DEFERRABLE INITIALLY DEFERRED,
15568         date_expected   TIMESTAMP WITH TIME ZONE,
15569         date_received   TIMESTAMP WITH TIME ZONE,
15570         status          TEXT    CONSTRAINT valid_status CHECK (
15571                                status IN ( 'Bindery', 'Bound', 'Claimed', 'Discarded',
15572                                'Expected', 'Not Held', 'Not Published', 'Received'))
15573                             DEFAULT 'Expected',
15574         shadowed        BOOL    NOT NULL DEFAULT FALSE
15575 );
15576
15577 CREATE TABLE serial.item_note (
15578         id          SERIAL  PRIMARY KEY,
15579         item        INT     NOT NULL
15580                             REFERENCES serial.item (id)
15581                             ON DELETE CASCADE
15582                             DEFERRABLE INITIALLY DEFERRED,
15583         creator     INT     NOT NULL
15584                             REFERENCES actor.usr (id)
15585                             DEFERRABLE INITIALLY DEFERRED,
15586         create_date TIMESTAMP WITH TIME ZONE    DEFAULT NOW(),
15587         pub         BOOL    NOT NULL    DEFAULT FALSE,
15588         title       TEXT    NOT NULL,
15589         value       TEXT    NOT NULL
15590 );
15591
15592 CREATE TABLE serial.basic_summary (
15593         id                  SERIAL  PRIMARY KEY,
15594         distribution        INT     NOT NULL
15595                                     REFERENCES serial.distribution (id)
15596                                     ON DELETE CASCADE
15597                                     DEFERRABLE INITIALLY DEFERRED,
15598         generated_coverage  TEXT    NOT NULL,
15599         textual_holdings    TEXT,
15600         show_generated      BOOL    NOT NULL DEFAULT TRUE
15601 );
15602
15603 CREATE TABLE serial.supplement_summary (
15604         id                  SERIAL  PRIMARY KEY,
15605         distribution        INT     NOT NULL
15606                                     REFERENCES serial.distribution (id)
15607                                     ON DELETE CASCADE
15608                                     DEFERRABLE INITIALLY DEFERRED,
15609         generated_coverage  TEXT    NOT NULL,
15610         textual_holdings    TEXT,
15611         show_generated      BOOL    NOT NULL DEFAULT TRUE
15612 );
15613
15614 CREATE TABLE serial.index_summary (
15615         id                  SERIAL  PRIMARY KEY,
15616         distribution        INT     NOT NULL
15617                                     REFERENCES serial.distribution (id)
15618                                     ON DELETE CASCADE
15619                                     DEFERRABLE INITIALLY DEFERRED,
15620         generated_coverage  TEXT    NOT NULL,
15621         textual_holdings    TEXT,
15622         show_generated      BOOL    NOT NULL DEFAULT TRUE
15623 );
15624
15625 -- 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.
15626
15627 DROP INDEX IF EXISTS authority.authority_record_unique_tcn;
15628 CREATE UNIQUE INDEX authority_record_unique_tcn ON authority.record_entry (arn_source,arn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15629
15630 DROP INDEX IF EXISTS asset.asset_call_number_label_once_per_lib;
15631 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;
15632
15633 DROP INDEX IF EXISTS biblio.biblio_record_unique_tcn;
15634 CREATE UNIQUE INDEX biblio_record_unique_tcn ON biblio.record_entry (tcn_value) WHERE deleted = FALSE OR deleted IS FALSE;
15635
15636 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
15637 RETURNS INTEGER AS $$
15638 BEGIN
15639         RETURN EXTRACT( EPOCH FROM interval_val );
15640 END;
15641 $$ LANGUAGE plpgsql;
15642
15643 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
15644 RETURNS INTEGER AS $$
15645 BEGIN
15646         RETURN config.interval_to_seconds( interval_string::INTERVAL );
15647 END;
15648 $$ LANGUAGE plpgsql;
15649
15650 INSERT INTO container.biblio_record_entry_bucket_type( code, label ) VALUES (
15651     'temp',
15652     oils_i18n_gettext(
15653         'temp',
15654         'Temporary bucket which gets deleted after use.',
15655         'cbrebt',
15656         'label'
15657     )
15658 );
15659
15660 -- 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.
15661
15662 CREATE OR REPLACE FUNCTION biblio.check_marcxml_well_formed () RETURNS TRIGGER AS $func$
15663 BEGIN
15664
15665     IF xml_is_well_formed(NEW.marc) THEN
15666         RETURN NEW;
15667     ELSE
15668         RAISE EXCEPTION 'Attempted to % MARCXML that is not well formed', TG_OP;
15669     END IF;
15670     
15671 END;
15672 $func$ LANGUAGE PLPGSQL;
15673
15674 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();
15675
15676 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();
15677
15678 ALTER TABLE serial.record_entry
15679         ALTER COLUMN marc DROP NOT NULL;
15680
15681 insert INTO CONFIG.xml_transform(name, namespace_uri, prefix, xslt)
15682 VALUES ('marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', $$<?xml version="1.0" encoding="UTF-8"?>
15683 <xsl:stylesheet
15684     xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
15685     xmlns:marc="http://www.loc.gov/MARC21/slim"
15686     version="1.0">
15687 <!--
15688 Copyright (C) 2010  Equinox Software, Inc.
15689 Galen Charlton <gmc@esilibrary.cOM.
15690
15691 This program is free software; you can redistribute it and/or
15692 modify it under the terms of the GNU General Public License
15693 as published by the Free Software Foundation; either version 2
15694 of the License, or (at your option) any later version.
15695
15696 This program is distributed in the hope that it will be useful,
15697 but WITHOUT ANY WARRANTY; without even the implied warranty of
15698 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15699 GNU General Public License for more details.
15700
15701 marc21_expand_880.xsl - stylesheet used during indexing to
15702                         map alternative graphical representations
15703                         of MARC fields stored in 880 fields
15704                         to the corresponding tag name and value.
15705
15706 For example, if a MARC record for a Chinese book has
15707
15708 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
15709 880.00 $6 245-01/$1 $a八十三年短篇小說選
15710
15711 this stylesheet will transform it to the equivalent of
15712
15713 245.00 $6 880-01 $a Ba shi san nian duan pian xiao shuo xuan
15714 245.00 $6 245-01/$1 $a八十三年短篇小說選
15715
15716 -->
15717     <xsl:output encoding="UTF-8" indent="yes" method="xml"/>
15718
15719     <xsl:template match="@*|node()">
15720         <xsl:copy>
15721             <xsl:apply-templates select="@*|node()"/>
15722         </xsl:copy>
15723     </xsl:template>
15724
15725     <xsl:template match="//marc:datafield[@tag='880']">
15726         <xsl:if test="./marc:subfield[@code='6'] and string-length(./marc:subfield[@code='6']) &gt;= 6">
15727             <marc:datafield>
15728                 <xsl:attribute name="tag">
15729                     <xsl:value-of select="substring(./marc:subfield[@code='6'], 1, 3)" />
15730                 </xsl:attribute>
15731                 <xsl:attribute name="ind1">
15732                     <xsl:value-of select="@ind1" />
15733                 </xsl:attribute>
15734                 <xsl:attribute name="ind2">
15735                     <xsl:value-of select="@ind2" />
15736                 </xsl:attribute>
15737                 <xsl:apply-templates />
15738             </marc:datafield>
15739         </xsl:if>
15740     </xsl:template>
15741     
15742 </xsl:stylesheet>$$);
15743
15744 -- Splitting the ingest trigger up into little bits
15745
15746 CREATE TEMPORARY TABLE eg_0301_check_if_has_contents (
15747     flag INTEGER PRIMARY KEY
15748 ) ON COMMIT DROP;
15749 INSERT INTO eg_0301_check_if_has_contents VALUES (1);
15750
15751 -- cause failure if either of the tables we want to drop have rows
15752 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency LIMIT 1;
15753 INSERT INTO eg_0301_check_if_has_contents SELECT 1 FROM asset.copy_transparency_map LIMIT 1;
15754
15755 DROP TABLE IF EXISTS asset.copy_transparency_map;
15756 DROP TABLE IF EXISTS asset.copy_transparency;
15757
15758 UPDATE config.metabib_field SET facet_xpath = '//' || facet_xpath WHERE facet_xpath IS NOT NULL;
15759
15760 -- We won't necessarily use all of these, but they are here for completeness.
15761 -- Source is the EDI spec 1229 codelist, eg: http://www.stylusstudio.com/edifact/D04B/1229.htm
15762 -- Values are the EDI code value + 1000
15763
15764 INSERT INTO acq.cancel_reason (keep_debits, id, org_unit, label, description) VALUES 
15765 ('t',(  1+1000), 1, 'Added',     'The information is to be or has been added.'),
15766 ('f',(  2+1000), 1, 'Deleted',   'The information is to be or has been deleted.'),
15767 ('t',(  3+1000), 1, 'Changed',   'The information is to be or has been changed.'),
15768 ('t',(  4+1000), 1, 'No action',                  'This line item is not affected by the actual message.'),
15769 ('t',(  5+1000), 1, 'Accepted without amendment', 'This line item is entirely accepted by the seller.'),
15770 ('t',(  6+1000), 1, 'Accepted with amendment',    'This line item is accepted but amended by the seller.'),
15771 ('f',(  7+1000), 1, 'Not accepted',               'This line item is not accepted by the seller.'),
15772 ('t',(  8+1000), 1, 'Schedule only', 'Code specifying that the message is a schedule only.'),
15773 ('t',(  9+1000), 1, 'Amendments',    'Code specifying that amendments are requested/notified.'),
15774 ('f',( 10+1000), 1, 'Not found',   'This line item is not found in the referenced message.'),
15775 ('t',( 11+1000), 1, 'Not amended', 'This line is not amended by the buyer.'),
15776 ('t',( 12+1000), 1, 'Line item numbers changed', 'Code specifying that the line item numbers have changed.'),
15777 ('t',( 13+1000), 1, 'Buyer has deducted amount', 'Buyer has deducted amount from payment.'),
15778 ('t',( 14+1000), 1, 'Buyer claims against invoice', 'Buyer has a claim against an outstanding invoice.'),
15779 ('t',( 15+1000), 1, 'Charge back by seller', 'Factor has been requested to charge back the outstanding item.'),
15780 ('t',( 16+1000), 1, 'Seller will issue credit note', 'Seller agrees to issue a credit note.'),
15781 ('t',( 17+1000), 1, 'Terms changed for new terms', 'New settlement terms have been agreed.'),
15782 ('t',( 18+1000), 1, 'Abide outcome of negotiations', 'Factor agrees to abide by the outcome of negotiations between seller and buyer.'),
15783 ('t',( 19+1000), 1, 'Seller rejects dispute', 'Seller does not accept validity of dispute.'),
15784 ('t',( 20+1000), 1, 'Settlement', 'The reported situation is settled.'),
15785 ('t',( 21+1000), 1, 'No delivery', 'Code indicating that no delivery will be required.'),
15786 ('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).'),
15787 ('t',( 23+1000), 1, 'Proposed amendment', 'A code used to indicate an amendment suggested by the sender.'),
15788 ('t',( 24+1000), 1, 'Accepted with amendment, no confirmation required', 'Accepted with changes which require no confirmation.'),
15789 ('t',( 25+1000), 1, 'Equipment provisionally repaired', 'The equipment or component has been provisionally repaired.'),
15790 ('t',( 26+1000), 1, 'Included', 'Code indicating that the entity is included.'),
15791 ('t',( 27+1000), 1, 'Verified documents for coverage', 'Upon receipt and verification of documents we shall cover you when due as per your instructions.'),
15792 ('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.'),
15793 ('t',( 29+1000), 1, 'Authenticated advice for coverage',      'On receipt of your authenticated advice we shall cover you when due as per your instructions.'),
15794 ('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.'),
15795 ('t',( 31+1000), 1, 'Authenticated advice for credit',        'On receipt of your authenticated advice we shall credit your account with us when due.'),
15796 ('t',( 32+1000), 1, 'Credit advice requested for direct debit',           'A credit advice is requested for the direct debit.'),
15797 ('t',( 33+1000), 1, 'Credit advice and acknowledgement for direct debit', 'A credit advice and acknowledgement are requested for the direct debit.'),
15798 ('t',( 34+1000), 1, 'Inquiry',     'Request for information.'),
15799 ('t',( 35+1000), 1, 'Checked',     'Checked.'),
15800 ('t',( 36+1000), 1, 'Not checked', 'Not checked.'),
15801 ('f',( 37+1000), 1, 'Cancelled',   'Discontinued.'),
15802 ('t',( 38+1000), 1, 'Replaced',    'Provide a replacement.'),
15803 ('t',( 39+1000), 1, 'New',         'Not existing before.'),
15804 ('t',( 40+1000), 1, 'Agreed',      'Consent.'),
15805 ('t',( 41+1000), 1, 'Proposed',    'Put forward for consideration.'),
15806 ('t',( 42+1000), 1, 'Already delivered', 'Delivery has taken place.'),
15807 ('t',( 43+1000), 1, 'Additional subordinate structures will follow', 'Additional subordinate structures will follow the current hierarchy level.'),
15808 ('t',( 44+1000), 1, 'Additional subordinate structures will not follow', 'No additional subordinate structures will follow the current hierarchy level.'),
15809 ('t',( 45+1000), 1, 'Result opposed',         'A notification that the result is opposed.'),
15810 ('t',( 46+1000), 1, 'Auction held',           'A notification that an auction was held.'),
15811 ('t',( 47+1000), 1, 'Legal action pursued',   'A notification that legal action has been pursued.'),
15812 ('t',( 48+1000), 1, 'Meeting held',           'A notification that a meeting was held.'),
15813 ('t',( 49+1000), 1, 'Result set aside',       'A notification that the result has been set aside.'),
15814 ('t',( 50+1000), 1, 'Result disputed',        'A notification that the result has been disputed.'),
15815 ('t',( 51+1000), 1, 'Countersued',            'A notification that a countersuit has been filed.'),
15816 ('t',( 52+1000), 1, 'Pending',                'A notification that an action is awaiting settlement.'),
15817 ('f',( 53+1000), 1, 'Court action dismissed', 'A notification that a court action will no longer be heard.'),
15818 ('t',( 54+1000), 1, 'Referred item, accepted', 'The item being referred to has been accepted.'),
15819 ('f',( 55+1000), 1, 'Referred item, rejected', 'The item being referred to has been rejected.'),
15820 ('t',( 56+1000), 1, 'Debit advice statement line',  'Notification that the statement line is a debit advice.'),
15821 ('t',( 57+1000), 1, 'Credit advice statement line', 'Notification that the statement line is a credit advice.'),
15822 ('t',( 58+1000), 1, 'Grouped credit advices',       'Notification that the credit advices are grouped.'),
15823 ('t',( 59+1000), 1, 'Grouped debit advices',        'Notification that the debit advices are grouped.'),
15824 ('t',( 60+1000), 1, 'Registered', 'The name is registered.'),
15825 ('f',( 61+1000), 1, 'Payment denied', 'The payment has been denied.'),
15826 ('t',( 62+1000), 1, 'Approved as amended', 'Approved with modifications.'),
15827 ('t',( 63+1000), 1, 'Approved as submitted', 'The request has been approved as submitted.'),
15828 ('f',( 64+1000), 1, 'Cancelled, no activity', 'Cancelled due to the lack of activity.'),
15829 ('t',( 65+1000), 1, 'Under investigation', 'Investigation is being done.'),
15830 ('t',( 66+1000), 1, 'Initial claim received', 'Notification that the initial claim was received.'),
15831 ('f',( 67+1000), 1, 'Not in process', 'Not in process.'),
15832 ('f',( 68+1000), 1, 'Rejected, duplicate', 'Rejected because it is a duplicate.'),
15833 ('f',( 69+1000), 1, 'Rejected, resubmit with corrections', 'Rejected but may be resubmitted when corrected.'),
15834 ('t',( 70+1000), 1, 'Pending, incomplete', 'Pending because of incomplete information.'),
15835 ('t',( 71+1000), 1, 'Under field office investigation', 'Investigation by the field is being done.'),
15836 ('t',( 72+1000), 1, 'Pending, awaiting additional material', 'Pending awaiting receipt of additional material.'),
15837 ('t',( 73+1000), 1, 'Pending, awaiting review', 'Pending while awaiting review.'),
15838 ('t',( 74+1000), 1, 'Reopened', 'Opened again.'),
15839 ('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).'),
15840 ('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).'),
15841 ('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).'),
15842 ('t',( 78+1000), 1, 'Previous payment decision reversed', 'A previous payment decision has been reversed.'),
15843 ('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).'),
15844 ('t',( 80+1000), 1, 'Transferred to correct insurance carrier', 'The request has been transferred to the correct insurance carrier for processing.'),
15845 ('t',( 81+1000), 1, 'Not paid, predetermination pricing only', 'Payment has not been made and the enclosed response is predetermination pricing only.'),
15846 ('t',( 82+1000), 1, 'Documentation claim', 'The claim is for documentation purposes only, no payment required.'),
15847 ('t',( 83+1000), 1, 'Reviewed', 'Assessed.'),
15848 ('f',( 84+1000), 1, 'Repriced', 'This price was changed.'),
15849 ('t',( 85+1000), 1, 'Audited', 'An official examination has occurred.'),
15850 ('t',( 86+1000), 1, 'Conditionally paid', 'Payment has been conditionally made.'),
15851 ('t',( 87+1000), 1, 'On appeal', 'Reconsideration of the decision has been applied for.'),
15852 ('t',( 88+1000), 1, 'Closed', 'Shut.'),
15853 ('t',( 89+1000), 1, 'Reaudited', 'A subsequent official examination has occurred.'),
15854 ('t',( 90+1000), 1, 'Reissued', 'Issued again.'),
15855 ('t',( 91+1000), 1, 'Closed after reopening', 'Reopened and then closed.'),
15856 ('t',( 92+1000), 1, 'Redetermined', 'Determined again or differently.'),
15857 ('t',( 93+1000), 1, 'Processed as primary',   'Processed as the first.'),
15858 ('t',( 94+1000), 1, 'Processed as secondary', 'Processed as the second.'),
15859 ('t',( 95+1000), 1, 'Processed as tertiary',  'Processed as the third.'),
15860 ('t',( 96+1000), 1, 'Correction of error', 'A correction to information previously communicated which contained an error.'),
15861 ('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.'),
15862 ('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.'),
15863 ('t',( 99+1000), 1, 'Interim response', 'The response is an interim one.'),
15864 ('t',(100+1000), 1, 'Final response',   'The response is an final one.'),
15865 ('t',(101+1000), 1, 'Debit advice requested', 'A debit advice is requested for the transaction.'),
15866 ('t',(102+1000), 1, 'Transaction not impacted', 'Advice that the transaction is not impacted.'),
15867 ('t',(103+1000), 1, 'Patient to be notified',                    'The action to take is to notify the patient.'),
15868 ('t',(104+1000), 1, 'Healthcare provider to be notified',        'The action to take is to notify the healthcare provider.'),
15869 ('t',(105+1000), 1, 'Usual general practitioner to be notified', 'The action to take is to notify the usual general practitioner.'),
15870 ('t',(106+1000), 1, 'Advice without details', 'An advice without details is requested or notified.'),
15871 ('t',(107+1000), 1, 'Advice with details', 'An advice with details is requested or notified.'),
15872 ('t',(108+1000), 1, 'Amendment requested', 'An amendment is requested.'),
15873 ('t',(109+1000), 1, 'For information', 'Included for information only.'),
15874 ('f',(110+1000), 1, 'Withdraw', 'A code indicating discontinuance or retraction.'),
15875 ('t',(111+1000), 1, 'Delivery date change', 'The action / notiification is a change of the delivery date.'),
15876 ('f',(112+1000), 1, 'Quantity change',      'The action / notification is a change of quantity.'),
15877 ('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.'),
15878 ('t',(114+1000), 1, 'Resale',           'The identified items have been sold by the distributor to the end customer.'),
15879 ('t',(115+1000), 1, 'Prior addition', 'This existing line item becomes available at an earlier date.');
15880
15881 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, search_field ) VALUES
15882     (26, 'identifier', 'arcn', oils_i18n_gettext(26, 'Authority record control number', 'cmf', 'label'), 'marcxml', $$//marc:subfield[@code='0']$$, TRUE, FALSE );
15883  
15884 SELECT SETVAL('config.metabib_field_id_seq'::TEXT, (SELECT MAX(id) FROM config.metabib_field), TRUE);
15885  
15886 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15887         'Remove Parenthesized Substring',
15888         'Remove any parenthesized substrings from the extracted text, such as the agency code preceding authority record control numbers in subfield 0.',
15889         'remove_paren_substring',
15890         0
15891 );
15892
15893 INSERT INTO config.index_normalizer (name, description, func, param_count) VALUES (
15894         'Trim Surrounding Space',
15895         'Trim leading and trailing spaces from extracted text.',
15896         'btrim',
15897         0
15898 );
15899
15900 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15901     SELECT  m.id,
15902             i.id,
15903             -2
15904       FROM  config.metabib_field m,
15905             config.index_normalizer i
15906       WHERE i.func IN ('remove_paren_substring')
15907             AND m.id IN (26);
15908
15909 INSERT INTO config.metabib_field_index_norm_map (field,norm,pos)
15910     SELECT  m.id,
15911             i.id,
15912             -1
15913       FROM  config.metabib_field m,
15914             config.index_normalizer i
15915       WHERE i.func IN ('btrim')
15916             AND m.id IN (26);
15917
15918 -- Function that takes, and returns, marcxml and compiles an embedded ruleset for you, and they applys it
15919 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
15920 DECLARE
15921     dyn_profile     vandelay.compile_profile%ROWTYPE;
15922     replace_rule    TEXT;
15923     tmp_marc        TEXT;
15924     trgt_marc        TEXT;
15925     tmpl_marc        TEXT;
15926     match_count     INT;
15927 BEGIN
15928
15929     IF target_marc IS NULL OR template_marc IS NULL THEN
15930         -- RAISE NOTICE 'no marc for target or template record';
15931         RETURN NULL;
15932     END IF;
15933
15934     dyn_profile := vandelay.compile_profile( template_marc );
15935
15936     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
15937         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
15938         RETURN NULL;
15939     END IF;
15940
15941     IF dyn_profile.replace_rule <> '' THEN
15942         trgt_marc = target_marc;
15943         tmpl_marc = template_marc;
15944         replace_rule = dyn_profile.replace_rule;
15945     ELSE
15946         tmp_marc = target_marc;
15947         trgt_marc = template_marc;
15948         tmpl_marc = tmp_marc;
15949         replace_rule = dyn_profile.preserve_rule;
15950     END IF;
15951
15952     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
15953
15954 END;
15955 $$ LANGUAGE PLPGSQL;
15956
15957 -- Function to generate an ephemeral overlay template from an authority record
15958 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT, BIGINT ) RETURNS TEXT AS $func$
15959
15960     use MARC::Record;
15961     use MARC::File::XML (BinaryEncoding => 'UTF-8');
15962
15963     my $xml = shift;
15964     my $r = MARC::Record->new_from_xml( $xml );
15965
15966     return undef unless ($r);
15967
15968     my $id = shift() || $r->subfield( '901' => 'c' );
15969     $id =~ s/^\s*(?:\([^)]+\))?\s*(.+)\s*?$/$1/;
15970     return undef unless ($id); # We need an ID!
15971
15972     my $tmpl = MARC::Record->new();
15973
15974     my @rule_fields;
15975     for my $field ( $r->field( '1..' ) ) { # Get main entry fields from the authority record
15976
15977         my $tag = $field->tag;
15978         my $i1 = $field->indicator(1);
15979         my $i2 = $field->indicator(2);
15980         my $sf = join '', map { $_->[0] } $field->subfields;
15981         my @data = map { @$_ } $field->subfields;
15982
15983         my @replace_them;
15984
15985         # Map the authority field to bib fields it can control.
15986         if ($tag >= 100 and $tag <= 111) {       # names
15987             @replace_them = map { $tag + $_ } (0, 300, 500, 600, 700);
15988         } elsif ($tag eq '130') {                # uniform title
15989             @replace_them = qw/130 240 440 730 830/;
15990         } elsif ($tag >= 150 and $tag <= 155) {  # subjects
15991             @replace_them = ($tag + 500);
15992         } elsif ($tag >= 180 and $tag <= 185) {  # floating subdivisions
15993             @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/;
15994         } else {
15995             next;
15996         }
15997
15998         # Dummy up the bib-side data
15999         $tmpl->append_fields(
16000             map {
16001                 MARC::Field->new( $_, $i1, $i2, @data )
16002             } @replace_them
16003         );
16004
16005         # Construct some 'replace' rules
16006         push @rule_fields, map { $_ . $sf . '[0~\)' .$id . '$]' } @replace_them;
16007     }
16008
16009     # Insert the replace rules into the template
16010     $tmpl->append_fields(
16011         MARC::Field->new( '905' => ' ' => ' ' => 'r' => join(',', @rule_fields ) )
16012     );
16013
16014     $xml = $tmpl->as_xml_record;
16015     $xml =~ s/^<\?.+?\?>$//mo;
16016     $xml =~ s/\n//sgo;
16017     $xml =~ s/>\s+</></sgo;
16018
16019     return $xml;
16020
16021 $func$ LANGUAGE PLPERLU;
16022
16023 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( BIGINT ) RETURNS TEXT AS $func$
16024     SELECT authority.generate_overlay_template( marc, id ) FROM authority.record_entry WHERE id = $1;
16025 $func$ LANGUAGE SQL;
16026
16027 CREATE OR REPLACE FUNCTION authority.generate_overlay_template ( TEXT ) RETURNS TEXT AS $func$
16028     SELECT authority.generate_overlay_template( $1, NULL );
16029 $func$ LANGUAGE SQL;
16030
16031 DELETE FROM config.metabib_field_index_norm_map WHERE field = 26;
16032 DELETE FROM config.metabib_field WHERE id = 26;
16033
16034 -- Making this a global_flag (UI accessible) instead of an internal_flag
16035 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16036     VALUES (
16037         'ingest.disable_authority_linking',
16038         oils_i18n_gettext(
16039             'ingest.disable_authority_linking',
16040             'Authority Automation: Disable bib-authority link tracking',
16041             'cgf', 
16042             'label'
16043         )
16044     );
16045 UPDATE config.global_flag SET enabled = (SELECT enabled FROM ONLY config.internal_flag WHERE name = 'ingest.disable_authority_linking');
16046 DELETE FROM config.internal_flag WHERE name = 'ingest.disable_authority_linking';
16047
16048 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16049     VALUES (
16050         'ingest.disable_authority_auto_update',
16051         oils_i18n_gettext(
16052             'ingest.disable_authority_auto_update',
16053             'Authority Automation: Disable automatic authority updating (requires link tracking)',
16054             'cgf', 
16055             'label'
16056         )
16057     );
16058
16059 -- Enable automated ingest of authority records; just insert the row into
16060 -- authority.record_entry and authority.full_rec will automatically be populated
16061
16062 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
16063     UPDATE  biblio.record_entry
16064       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
16065       WHERE id = $2;
16066     SELECT $1;
16067 $func$ LANGUAGE SQL;
16068
16069 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
16070     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
16071 $func$ LANGUAGE SQL;
16072
16073 -- authority.rec_descriptor appears to be unused currently
16074 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
16075 BEGIN
16076     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
16077 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
16078 --        SELECT  auth_id, ;
16079
16080     RETURN;
16081 END;
16082 $func$ LANGUAGE PLPGSQL;
16083
16084 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
16085 BEGIN
16086     DELETE FROM authority.full_rec WHERE record = auth_id;
16087     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
16088         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
16089
16090     RETURN;
16091 END;
16092 $func$ LANGUAGE PLPGSQL;
16093
16094 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
16095 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
16096 BEGIN
16097
16098     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
16099         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
16100           -- Should remove matching $0 from controlled fields at the same time?
16101         RETURN NEW; -- and we're done
16102     END IF;
16103
16104     IF TG_OP = 'UPDATE' THEN -- re-ingest?
16105         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
16106
16107         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
16108             RETURN NEW;
16109         END IF;
16110     END IF;
16111
16112     -- Flatten and insert the afr data
16113     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
16114     IF NOT FOUND THEN
16115         PERFORM authority.reingest_authority_full_rec(NEW.id);
16116 -- authority.rec_descriptor is not currently used
16117 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
16118 --        IF NOT FOUND THEN
16119 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
16120 --        END IF;
16121     END IF;
16122
16123     RETURN NEW;
16124 END;
16125 $func$ LANGUAGE PLPGSQL;
16126
16127 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 ();
16128
16129 -- Some records manage to get XML namespace declarations into each element,
16130 -- like <datafield xmlns:marc="http://www.loc.gov/MARC21/slim"
16131 -- This broke the old maintain_901(), so we'll make the regex more robust
16132
16133 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
16134 BEGIN
16135     -- Remove any existing 901 fields before we insert the authoritative one
16136     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
16137     IF TG_TABLE_SCHEMA = 'biblio' THEN
16138         NEW.marc := REGEXP_REPLACE(
16139             NEW.marc,
16140             E'(</(?:[^:]*?:)?record>)',
16141             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16142                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
16143                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
16144                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16145                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16146                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
16147                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
16148              E'</datafield>\\1'
16149         );
16150     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
16151         NEW.marc := REGEXP_REPLACE(
16152             NEW.marc,
16153             E'(</(?:[^:]*?:)?record>)',
16154             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16155                 '<subfield code="a">' || NEW.arn_value || E'</subfield>' ||
16156                 '<subfield code="b">' || NEW.arn_source || E'</subfield>' ||
16157                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16158                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16159              E'</datafield>\\1'
16160         );
16161     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
16162         NEW.marc := REGEXP_REPLACE(
16163             NEW.marc,
16164             E'(</(?:[^:]*?:)?record>)',
16165             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16166                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16167                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16168                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
16169                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
16170              E'</datafield>\\1'
16171         );
16172     ELSE
16173         NEW.marc := REGEXP_REPLACE(
16174             NEW.marc,
16175             E'(</(?:[^:]*?:)?record>)',
16176             E'<datafield tag="901" ind1=" " ind2=" ">' ||
16177                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
16178                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
16179              E'</datafield>\\1'
16180         );
16181     END IF;
16182
16183     RETURN NEW;
16184 END;
16185 $func$ LANGUAGE PLPGSQL;
16186
16187 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16188 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16189 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_901();
16190  
16191 -- In booking, elbow room defines:
16192 --  a) how far in the future you must make a reservation on a given item if
16193 --      that item will have to transit somewhere to fulfill the reservation.
16194 --  b) how soon a reservation must be starting for the reserved item to
16195 --      be op-captured by the checkin interface.
16196
16197 -- We don't want to clobber any default_elbow room at any level:
16198
16199 CREATE OR REPLACE FUNCTION pg_temp.default_elbow() RETURNS INTEGER AS $$
16200 DECLARE
16201     existing    actor.org_unit_setting%ROWTYPE;
16202 BEGIN
16203     SELECT INTO existing id FROM actor.org_unit_setting WHERE name = 'circ.booking_reservation.default_elbow_room';
16204     IF NOT FOUND THEN
16205         INSERT INTO actor.org_unit_setting (org_unit, name, value) VALUES (
16206             (SELECT id FROM actor.org_unit WHERE parent_ou IS NULL),
16207             'circ.booking_reservation.default_elbow_room',
16208             '"1 day"'
16209         );
16210         RETURN 1;
16211     END IF;
16212     RETURN 0;
16213 END;
16214 $$ LANGUAGE plpgsql;
16215
16216 SELECT pg_temp.default_elbow();
16217
16218 DROP FUNCTION IF EXISTS action.usr_visible_circ_copies( INTEGER );
16219
16220 -- returns the distinct set of target copy IDs from a user's visible circulation history
16221 CREATE OR REPLACE FUNCTION action.usr_visible_circ_copies( INTEGER ) RETURNS SETOF BIGINT AS $$
16222     SELECT DISTINCT(target_copy) FROM action.usr_visible_circs($1)
16223 $$ LANGUAGE SQL;
16224
16225 ALTER TABLE action.in_house_use DROP CONSTRAINT in_house_use_item_fkey;
16226 ALTER TABLE action.transit_copy DROP CONSTRAINT transit_copy_target_copy_fkey;
16227 ALTER TABLE action.hold_transit_copy DROP CONSTRAINT ahtc_tc_fkey;
16228 ALTER TABLE action.hold_copy_map DROP CONSTRAINT hold_copy_map_target_copy_fkey;
16229
16230 ALTER TABLE asset.stat_cat_entry_copy_map DROP CONSTRAINT a_sc_oc_fkey;
16231
16232 ALTER TABLE authority.record_entry ADD COLUMN owner INT;
16233 ALTER TABLE serial.record_entry ADD COLUMN owner INT;
16234
16235 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
16236     VALUES (
16237         'cat.maintain_control_numbers',
16238         oils_i18n_gettext(
16239             'cat.maintain_control_numbers',
16240             'Cat: Maintain 001/003/035 according to the MARC21 specification',
16241             'cgf', 
16242             'label'
16243         )
16244     );
16245
16246 INSERT INTO config.global_flag (name, label, enabled)
16247     VALUES (
16248         'circ.holds.empty_issuance_ok',
16249         oils_i18n_gettext(
16250             'circ.holds.empty_issuance_ok',
16251             'Holds: Allow holds on empty issuances',
16252             'cgf',
16253             'label'
16254         ),
16255         TRUE
16256     );
16257
16258 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
16259 use strict;
16260 use MARC::Record;
16261 use MARC::File::XML (BinaryEncoding => 'UTF-8');
16262 use Encode;
16263 use Unicode::Normalize;
16264
16265 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
16266 my $schema = $_TD->{table_schema};
16267 my $rec_id = $_TD->{new}{id};
16268
16269 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
16270 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
16271 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
16272     return;
16273 }
16274
16275 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
16276 my $ou_cni = 'EVRGRN';
16277
16278 my $owner;
16279 if ($schema eq 'serial') {
16280     $owner = $_TD->{new}{owning_lib};
16281 } else {
16282     # are.owner and bre.owner can be null, so fall back to the consortial setting
16283     $owner = $_TD->{new}{owner} || 1;
16284 }
16285
16286 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
16287 if ($ous_rv->{processed}) {
16288     $ou_cni = $ous_rv->{rows}[0]->{value};
16289     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
16290 } else {
16291     # Fall back to the shortname of the OU if there was no OU setting
16292     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
16293     if ($ous_rv->{processed}) {
16294         $ou_cni = $ous_rv->{rows}[0]->{shortname};
16295     }
16296 }
16297
16298 my ($create, $munge) = (0, 0);
16299 my ($orig_001, $orig_003) = ('', '');
16300
16301 # Incoming MARC records may have multiple 001s or 003s, despite the spec
16302 my @control_ids = $record->field('003');
16303 my @scns = $record->field('035');
16304
16305 foreach my $id_field ('001', '003') {
16306     my $spec_value;
16307     my @controls = $record->field($id_field);
16308
16309     if ($id_field eq '001') {
16310         $spec_value = $rec_id;
16311     } else {
16312         $spec_value = $ou_cni;
16313     }
16314
16315     # Create the 001/003 if none exist
16316     if (scalar(@controls) == 0) {
16317         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
16318         $create = 1;
16319     } elsif (scalar(@controls) > 1) {
16320         # Do we already have the right 001/003 value in the existing set?
16321         unless (grep $_->data() eq $spec_value, @controls) {
16322             $munge = 1;
16323         }
16324
16325         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
16326         foreach my $control (@controls) {
16327             unless ($control->data() eq $spec_value) {
16328                 $record->delete_field($control);
16329             }
16330         }
16331     } else {
16332         # Only one field; check to see if we need to munge it
16333         unless (grep $_->data() eq $spec_value, @controls) {
16334             $munge = 1;
16335         }
16336     }
16337 }
16338
16339 # Now, if we need to munge the 001, we will first push the existing 001/003 into the 035
16340 if ($munge) {
16341     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
16342
16343     # Do not create duplicate 035 fields
16344     unless (grep $_->subfield('a') eq $scn, @scns) {
16345         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
16346     }
16347 }
16348
16349 # Set the 001/003 and update the MARC
16350 if ($create or $munge) {
16351     $record->field('001')->data($rec_id);
16352     $record->field('003')->data($ou_cni);
16353
16354     my $xml = $record->as_xml_record();
16355     $xml =~ s/\n//sgo;
16356     $xml =~ s/^<\?xml.+\?\s*>//go;
16357     $xml =~ s/>\s+</></go;
16358     $xml =~ s/\p{Cc}//go;
16359
16360     # Embed a version of OpenILS::Application::AppUtils->entityize()
16361     # to avoid having to set PERL5LIB for PostgreSQL as well
16362
16363     # If we are going to convert non-ASCII characters to XML entities,
16364     # we had better be dealing with a UTF8 string to begin with
16365     $xml = decode_utf8($xml);
16366
16367     $xml = NFC($xml);
16368
16369     # Convert raw ampersands to entities
16370     $xml =~ s/&(?!\S+;)/&amp;/gso;
16371
16372     # Convert Unicode characters to entities
16373     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
16374
16375     $xml =~ s/[\x00-\x1f]//go;
16376     $_TD->{new}{marc} = $xml;
16377
16378     return "MODIFY";
16379 }
16380
16381 return;
16382 $func$ LANGUAGE PLPERLU;
16383
16384 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16385 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16386 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON serial.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
16387
16388 INSERT INTO metabib.facet_entry (source, field, value)
16389     SELECT source, field, value FROM (
16390         SELECT * FROM metabib.author_field_entry
16391             UNION ALL
16392         SELECT * FROM metabib.keyword_field_entry
16393             UNION ALL
16394         SELECT * FROM metabib.identifier_field_entry
16395             UNION ALL
16396         SELECT * FROM metabib.title_field_entry
16397             UNION ALL
16398         SELECT * FROM metabib.subject_field_entry
16399             UNION ALL
16400         SELECT * FROM metabib.series_field_entry
16401         )x
16402     WHERE x.index_vector = '';
16403         
16404 DELETE FROM metabib.author_field_entry WHERE index_vector = '';
16405 DELETE FROM metabib.keyword_field_entry WHERE index_vector = '';
16406 DELETE FROM metabib.identifier_field_entry WHERE index_vector = '';
16407 DELETE FROM metabib.title_field_entry WHERE index_vector = '';
16408 DELETE FROM metabib.subject_field_entry WHERE index_vector = '';
16409 DELETE FROM metabib.series_field_entry WHERE index_vector = '';
16410
16411 CREATE INDEX metabib_facet_entry_field_idx ON metabib.facet_entry (field);
16412 CREATE INDEX metabib_facet_entry_value_idx ON metabib.facet_entry (SUBSTRING(value,1,1024));
16413 CREATE INDEX metabib_facet_entry_source_idx ON metabib.facet_entry (source);
16414
16415 -- copy OPAC visibility materialized view
16416 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
16417
16418     TRUNCATE TABLE asset.opac_visible_copies;
16419
16420     INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16421     SELECT  cp.id, cp.circ_lib, cn.record
16422     FROM  asset.copy cp
16423         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16424         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16425         JOIN asset.copy_location cl ON (cp.location = cl.id)
16426         JOIN config.copy_status cs ON (cp.status = cs.id)
16427         JOIN biblio.record_entry b ON (cn.record = b.id)
16428     WHERE NOT cp.deleted
16429         AND NOT cn.deleted
16430         AND NOT b.deleted
16431         AND cs.opac_visible
16432         AND cl.opac_visible
16433         AND cp.opac_visible
16434         AND a.opac_visible;
16435
16436 $$ LANGUAGE SQL;
16437 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
16438 Rebuild the copy OPAC visibility cache.  Useful during migrations.
16439 $$;
16440
16441 -- and actually populate the table
16442 SELECT asset.refresh_opac_visible_copies_mat_view();
16443
16444 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
16445 DECLARE
16446     add_query       TEXT;
16447     remove_query    TEXT;
16448     do_add          BOOLEAN := false;
16449     do_remove       BOOLEAN := false;
16450 BEGIN
16451     add_query := $$
16452             INSERT INTO asset.opac_visible_copies (id, circ_lib, record)
16453                 SELECT  cp.id, cp.circ_lib, cn.record
16454                   FROM  asset.copy cp
16455                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
16456                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
16457                         JOIN asset.copy_location cl ON (cp.location = cl.id)
16458                         JOIN config.copy_status cs ON (cp.status = cs.id)
16459                         JOIN biblio.record_entry b ON (cn.record = b.id)
16460                   WHERE NOT cp.deleted
16461                         AND NOT cn.deleted
16462                         AND NOT b.deleted
16463                         AND cs.opac_visible
16464                         AND cl.opac_visible
16465                         AND cp.opac_visible
16466                         AND a.opac_visible
16467     $$;
16468  
16469     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE id IN ( SELECT id FROM asset.copy WHERE $$;
16470
16471     IF TG_OP = 'INSERT' THEN
16472
16473         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16474             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16475             EXECUTE add_query;
16476         END IF;
16477
16478         RETURN NEW;
16479
16480     END IF;
16481
16482     -- handle items first, since with circulation activity
16483     -- their statuses change frequently
16484     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
16485
16486         IF OLD.location    <> NEW.location OR
16487            OLD.call_number <> NEW.call_number OR
16488            OLD.status      <> NEW.status OR
16489            OLD.circ_lib    <> NEW.circ_lib THEN
16490             -- any of these could change visibility, but
16491             -- we'll save some queries and not try to calculate
16492             -- the change directly
16493             do_remove := true;
16494             do_add := true;
16495         ELSE
16496
16497             IF OLD.deleted <> NEW.deleted THEN
16498                 IF NEW.deleted THEN
16499                     do_remove := true;
16500                 ELSE
16501                     do_add := true;
16502                 END IF;
16503             END IF;
16504
16505             IF OLD.opac_visible <> NEW.opac_visible THEN
16506                 IF OLD.opac_visible THEN
16507                     do_remove := true;
16508                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
16509                                         -- is also marked opac_visible
16510                     do_add := true;
16511                 END IF;
16512             END IF;
16513
16514         END IF;
16515
16516         IF do_remove THEN
16517             DELETE FROM asset.opac_visible_copies WHERE id = NEW.id;
16518         END IF;
16519         IF do_add THEN
16520             add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16521             EXECUTE add_query;
16522         END IF;
16523
16524         RETURN NEW;
16525
16526     END IF;
16527
16528     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
16529  
16530         IF OLD.deleted AND NEW.deleted THEN -- do nothing
16531
16532             RETURN NEW;
16533  
16534         ELSIF NEW.deleted THEN -- remove rows
16535  
16536             IF TG_TABLE_NAME = 'call_number' THEN
16537                 DELETE FROM asset.opac_visible_copies WHERE id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
16538             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16539                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
16540             END IF;
16541  
16542             RETURN NEW;
16543  
16544         ELSIF OLD.deleted THEN -- add rows
16545  
16546             IF TG_TABLE_NAME IN ('copy','unit') THEN
16547                 add_query := add_query || 'AND cp.id = ' || NEW.id || ';';
16548             ELSIF TG_TABLE_NAME = 'call_number' THEN
16549                 add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16550             ELSIF TG_TABLE_NAME = 'record_entry' THEN
16551                 add_query := add_query || 'AND cn.record = ' || NEW.id || ';';
16552             END IF;
16553  
16554             EXECUTE add_query;
16555             RETURN NEW;
16556  
16557         END IF;
16558  
16559     END IF;
16560
16561     IF TG_TABLE_NAME = 'call_number' THEN
16562
16563         IF OLD.record <> NEW.record THEN
16564             -- call number is linked to different bib
16565             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
16566             EXECUTE remove_query;
16567             add_query := add_query || 'AND cp.call_number = ' || NEW.id || ';';
16568             EXECUTE add_query;
16569         END IF;
16570
16571         RETURN NEW;
16572
16573     END IF;
16574
16575     IF TG_TABLE_NAME IN ('record_entry') THEN
16576         RETURN NEW; -- don't have 'opac_visible'
16577     END IF;
16578
16579     -- actor.org_unit, asset.copy_location, asset.copy_status
16580     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
16581
16582         RETURN NEW;
16583
16584     ELSIF NEW.opac_visible THEN -- add rows
16585
16586         IF TG_TABLE_NAME = 'org_unit' THEN
16587             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
16588         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16589             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
16590         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16591             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
16592         END IF;
16593  
16594         EXECUTE add_query;
16595  
16596     ELSE -- delete rows
16597
16598         IF TG_TABLE_NAME = 'org_unit' THEN
16599             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
16600         ELSIF TG_TABLE_NAME = 'copy_location' THEN
16601             remove_query := remove_query || 'location = ' || NEW.id || ');';
16602         ELSIF TG_TABLE_NAME = 'copy_status' THEN
16603             remove_query := remove_query || 'status = ' || NEW.id || ');';
16604         END IF;
16605  
16606         EXECUTE remove_query;
16607  
16608     END IF;
16609  
16610     RETURN NEW;
16611 END;
16612 $func$ LANGUAGE PLPGSQL;
16613 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
16614 Trigger function to update the copy OPAC visiblity cache.
16615 $$;
16616 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();
16617 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16618 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();
16619 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();
16620 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
16621 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();
16622 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();
16623
16624 -- must create this rule explicitly; it is not inherited from asset.copy
16625 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;
16626
16627 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);
16628
16629 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
16630 DECLARE
16631     moved_objects INT := 0;
16632     bib_id        INT := 0;
16633     bib_rec       biblio.record_entry%ROWTYPE;
16634     auth_link     authority.bib_linking%ROWTYPE;
16635 BEGIN
16636
16637     -- 1. Make source_record MARC a copy of the target_record to get auto-sync in linked bib records
16638     UPDATE authority.record_entry
16639       SET marc = (
16640         SELECT marc
16641           FROM authority.record_entry
16642           WHERE id = target_record
16643       )
16644       WHERE id = source_record;
16645
16646     -- 2. Update all bib records with the ID from target_record in their $0
16647     FOR bib_rec IN SELECT bre.* FROM biblio.record_entry bre 
16648       INNER JOIN authority.bib_linking abl ON abl.bib = bre.id
16649       WHERE abl.authority = target_record LOOP
16650
16651         UPDATE biblio.record_entry
16652           SET marc = REGEXP_REPLACE(marc, 
16653             E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
16654             E'\\1' || target_record || '<', 'g')
16655           WHERE id = bib_rec.id;
16656
16657           moved_objects := moved_objects + 1;
16658     END LOOP;
16659
16660     -- 3. "Delete" source_record
16661     DELETE FROM authority.record_entry
16662       WHERE id = source_record;
16663
16664     RETURN moved_objects;
16665 END;
16666 $func$ LANGUAGE plpgsql;
16667
16668 -- serial.record_entry already had an owner column spelled "owning_lib"
16669 -- Adjust the table and affected functions accordingly
16670
16671 ALTER TABLE serial.record_entry DROP COLUMN owner;
16672
16673 CREATE TABLE actor.usr_saved_search (
16674     id              SERIAL          PRIMARY KEY,
16675         owner           INT             NOT NULL REFERENCES actor.usr (id)
16676                                         ON DELETE CASCADE
16677                                         DEFERRABLE INITIALLY DEFERRED,
16678         name            TEXT            NOT NULL,
16679         create_date     TIMESTAMPTZ     NOT NULL DEFAULT now(),
16680         query_text      TEXT            NOT NULL,
16681         query_type      TEXT            NOT NULL
16682                                         CONSTRAINT valid_query_text CHECK (
16683                                         query_type IN ( 'URL' )) DEFAULT 'URL',
16684                                         -- we may add other types someday
16685         target          TEXT            NOT NULL
16686                                         CONSTRAINT valid_target CHECK (
16687                                         target IN ( 'record', 'metarecord', 'callnumber' )),
16688         CONSTRAINT name_once_per_user UNIQUE (owner, name)
16689 );
16690
16691 -- Apply Dan Wells' changes to the serial schema, from the
16692 -- seials-integration branch
16693
16694 CREATE TABLE serial.subscription_note (
16695         id           SERIAL PRIMARY KEY,
16696         subscription INT    NOT NULL
16697                             REFERENCES serial.subscription (id)
16698                             ON DELETE CASCADE
16699                             DEFERRABLE INITIALLY DEFERRED,
16700         creator      INT    NOT NULL
16701                             REFERENCES actor.usr (id)
16702                             DEFERRABLE INITIALLY DEFERRED,
16703         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
16704         pub          BOOL   NOT NULL DEFAULT FALSE,
16705         title        TEXT   NOT NULL,
16706         value        TEXT   NOT NULL
16707 );
16708 CREATE INDEX serial_subscription_note_sub_idx ON serial.subscription_note (subscription);
16709
16710 CREATE TABLE serial.distribution_note (
16711         id           SERIAL PRIMARY KEY,
16712         distribution INT    NOT NULL
16713                             REFERENCES serial.distribution (id)
16714                             ON DELETE CASCADE
16715                             DEFERRABLE INITIALLY DEFERRED,
16716         creator      INT    NOT NULL
16717                             REFERENCES actor.usr (id)
16718                             DEFERRABLE INITIALLY DEFERRED,
16719         create_date  TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
16720         pub          BOOL   NOT NULL DEFAULT FALSE,
16721         title        TEXT   NOT NULL,
16722         value        TEXT   NOT NULL
16723 );
16724
16725 ------- Begin surgery on serial.unit
16726
16727 ALTER TABLE serial.unit
16728         DROP COLUMN label;
16729
16730 ALTER TABLE serial.unit
16731         RENAME COLUMN label_sort_key TO sort_key;
16732
16733 ALTER TABLE serial.unit
16734         RENAME COLUMN contents TO detailed_contents;
16735
16736 ALTER TABLE serial.unit
16737         ADD COLUMN summary_contents TEXT;
16738
16739 UPDATE serial.unit
16740 SET summary_contents = detailed_contents;
16741
16742 ALTER TABLE serial.unit
16743         ALTER column summary_contents SET NOT NULL;
16744
16745 ------- End surgery on serial.unit
16746
16747 -- 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' );
16748
16749 -- Now rebuild the constraints dropped via cascade.
16750 -- ALTER TABLE acq.provider    ADD CONSTRAINT provider_edi_default_fkey FOREIGN KEY (edi_default) REFERENCES acq.edi_account (id) DEFERRABLE INITIALLY DEFERRED;
16751 DROP INDEX IF EXISTS money.money_mat_summary_id_idx;
16752 ALTER TABLE money.materialized_billable_xact_summary ADD PRIMARY KEY (id);
16753
16754 -- ALTER TABLE staging.billing_address_stage ADD PRIMARY KEY (row_id);
16755
16756 DELETE FROM config.metabib_field_index_norm_map
16757     WHERE norm IN (
16758         SELECT id 
16759             FROM config.index_normalizer
16760             WHERE func IN ('first_word', 'naco_normalize', 'split_date_range')
16761     )
16762     AND field = 18
16763 ;
16764
16765 -- We won't necessarily use all of these, but they are here for completeness.
16766 -- Source is the EDI spec 6063 codelist, eg: http://www.stylusstudio.com/edifact/D04B/6063.htm
16767 -- Values are the EDI code value + 1200
16768
16769 INSERT INTO acq.cancel_reason (org_unit, keep_debits, id, label, description) VALUES 
16770 (1, 't', 1201, 'Discrete quantity', 'Individually separated and distinct quantity.'),
16771 (1, 't', 1202, 'Charge', 'Quantity relevant for charge.'),
16772 (1, 't', 1203, 'Cumulative quantity', 'Quantity accumulated.'),
16773 (1, 't', 1204, 'Interest for overdrawn account', 'Interest for overdrawing the account.'),
16774 (1, 't', 1205, 'Active ingredient dose per unit', 'The dosage of active ingredient per unit.'),
16775 (1, 't', 1206, 'Auditor', 'The number of entities that audit accounts.'),
16776 (1, 't', 1207, 'Branch locations, leased', 'The number of branch locations being leased by an entity.'),
16777 (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.'),
16778 (1, 't', 1209, 'Branch locations, owned', 'The number of branch locations owned by an entity.'),
16779 (1, 't', 1210, 'Judgements registered', 'The number of judgements registered against an entity.'),
16780 (1, 't', 1211, 'Split quantity', 'Part of the whole quantity.'),
16781 (1, 't', 1212, 'Despatch quantity', 'Quantity despatched by the seller.'),
16782 (1, 't', 1213, 'Liens registered', 'The number of liens registered against an entity.'),
16783 (1, 't', 1214, 'Livestock', 'The number of animals kept for use or profit.'),
16784 (1, 't', 1215, 'Insufficient funds returned cheques', 'The number of cheques returned due to insufficient funds.'),
16785 (1, 't', 1216, 'Stolen cheques', 'The number of stolen cheques.'),
16786 (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.'),
16787 (1, 't', 1218, 'Previous quantity', 'Quantity previously referenced.'),
16788 (1, 't', 1219, 'Paid-in security shares', 'The number of security shares issued and for which full payment has been made.'),
16789 (1, 't', 1220, 'Unusable quantity', 'Quantity not usable.'),
16790 (1, 't', 1221, 'Ordered quantity', '[6024] The quantity which has been ordered.'),
16791 (1, 't', 1222, 'Quantity at 100%', 'Equivalent quantity at 100% purity.'),
16792 (1, 't', 1223, 'Active ingredient', 'Quantity at 100% active agent content.'),
16793 (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.'),
16794 (1, 't', 1225, 'Retail sales', 'Quantity of retail point of sale activity.'),
16795 (1, 't', 1226, 'Promotion quantity', 'A quantity associated with a promotional event.'),
16796 (1, 't', 1227, 'On hold for shipment', 'Article received which cannot be shipped in its present form.'),
16797 (1, 't', 1228, 'Military sales quantity', 'Quantity of goods or services sold to a military organization.'),
16798 (1, 't', 1229, 'On premises sales',  'Sale of product in restaurants or bars.'),
16799 (1, 't', 1230, 'Off premises sales', 'Sale of product directly to a store.'),
16800 (1, 't', 1231, 'Estimated annual volume', 'Volume estimated for a year.'),
16801 (1, 't', 1232, 'Minimum delivery batch', 'Minimum quantity of goods delivered at one time.'),
16802 (1, 't', 1233, 'Maximum delivery batch', 'Maximum quantity of goods delivered at one time.'),
16803 (1, 't', 1234, 'Pipes', 'The number of tubes used to convey a substance.'),
16804 (1, 't', 1235, 'Price break from', 'The minimum quantity of a quantity range for a specified (unit) price.'),
16805 (1, 't', 1236, 'Price break to', 'Maximum quantity to which the price break applies.'),
16806 (1, 't', 1237, 'Poultry', 'The number of domestic fowl.'),
16807 (1, 't', 1238, 'Secured charges registered', 'The number of secured charges registered against an entity.'),
16808 (1, 't', 1239, 'Total properties owned', 'The total number of properties owned by an entity.'),
16809 (1, 't', 1240, 'Normal delivery', 'Quantity normally delivered by the seller.'),
16810 (1, 't', 1241, 'Sales quantity not included in the replenishment', 'calculation Sales which will not be included in the calculation of replenishment requirements.'),
16811 (1, 't', 1242, 'Maximum supply quantity, supplier endorsed', 'Maximum supply quantity endorsed by a supplier.'),
16812 (1, 't', 1243, 'Buyer', 'The number of buyers.'),
16813 (1, 't', 1244, 'Debenture bond', 'The number of fixed-interest bonds of an entity backed by general credit rather than specified assets.'),
16814 (1, 't', 1245, 'Debentures filed against directors', 'The number of notices of indebtedness filed against an entity''s directors.'),
16815 (1, 't', 1246, 'Pieces delivered', 'Number of pieces actually received at the final destination.'),
16816 (1, 't', 1247, 'Invoiced quantity', 'The quantity as per invoice.'),
16817 (1, 't', 1248, 'Received quantity', 'The quantity which has been received.'),
16818 (1, 't', 1249, 'Chargeable distance', '[6110] The distance between two points for which a specific tariff applies.'),
16819 (1, 't', 1250, 'Disposition undetermined quantity', 'Product quantity that has not yet had its disposition determined.'),
16820 (1, 't', 1251, 'Inventory category transfer', 'Inventory that has been moved from one inventory category to another.'),
16821 (1, 't', 1252, 'Quantity per pack', 'Quantity for each pack.'),
16822 (1, 't', 1253, 'Minimum order quantity', 'Minimum quantity of goods for an order.'),
16823 (1, 't', 1254, 'Maximum order quantity', 'Maximum quantity of goods for an order.'),
16824 (1, 't', 1255, 'Total sales', 'The summation of total quantity sales.'),
16825 (1, 't', 1256, 'Wholesaler to wholesaler sales', 'Sale of product to other wholesalers by a wholesaler.'),
16826 (1, 't', 1257, 'In transit quantity', 'A quantity that is en route.'),
16827 (1, 't', 1258, 'Quantity withdrawn', 'Quantity withdrawn from a location.'),
16828 (1, 't', 1259, 'Numbers of consumer units in the traded unit', 'Number of units for consumer sales in a unit for trading.'),
16829 (1, 't', 1260, 'Current inventory quantity available for shipment', 'Current inventory quantity available for shipment.'),
16830 (1, 't', 1261, 'Return quantity', 'Quantity of goods returned.'),
16831 (1, 't', 1262, 'Sorted quantity', 'The quantity that is sorted.'),
16832 (1, 'f', 1263, 'Sorted quantity rejected', 'The sorted quantity that is rejected.'),
16833 (1, 't', 1264, 'Scrap quantity', 'Remainder of the total quantity after split deliveries.'),
16834 (1, 'f', 1265, 'Destroyed quantity', 'Quantity of goods destroyed.'),
16835 (1, 't', 1266, 'Committed quantity', 'Quantity a party is committed to.'),
16836 (1, 't', 1267, 'Estimated reading quantity', 'The value that is estimated to be the reading of a measuring device (e.g. meter).'),
16837 (1, 't', 1268, 'End quantity', 'The quantity recorded at the end of an agreement or period.'),
16838 (1, 't', 1269, 'Start quantity', 'The quantity recorded at the start of an agreement or period.'),
16839 (1, 't', 1270, 'Cumulative quantity received', 'Cumulative quantity of all deliveries of this article received by the buyer.'),
16840 (1, 't', 1271, 'Cumulative quantity ordered', 'Cumulative quantity of all deliveries, outstanding and scheduled orders.'),
16841 (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.'),
16842 (1, 't', 1273, 'Outstanding quantity', 'Difference between quantity ordered and quantity received.'),
16843 (1, 't', 1274, 'Latest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product.'),
16844 (1, 't', 1275, 'Previous highest cumulative quantity', 'Cumulative quantity after complete delivery of all scheduled quantities of the product from a prior schedule period.'),
16845 (1, 't', 1276, 'Adjusted corrector reading', 'A corrector reading after it has been adjusted.'),
16846 (1, 't', 1277, 'Work days', 'Number of work days, e.g. per respective period.'),
16847 (1, 't', 1278, 'Cumulative quantity scheduled', 'Adding the quantity actually scheduled to previous cumulative quantity.'),
16848 (1, 't', 1279, 'Previous cumulative quantity', 'Cumulative quantity prior the actual order.'),
16849 (1, 't', 1280, 'Unadjusted corrector reading', 'A corrector reading before it has been adjusted.'),
16850 (1, 't', 1281, 'Extra unplanned delivery', 'Non scheduled additional quantity.'),
16851 (1, 't', 1282, 'Quantity requirement for sample inspection', 'Required quantity for sample inspection.'),
16852 (1, 't', 1283, 'Backorder quantity', 'The quantity of goods that is on back-order.'),
16853 (1, 't', 1284, 'Urgent delivery quantity', 'Quantity for urgent delivery.'),
16854 (1, 'f', 1285, 'Previous order quantity to be cancelled', 'Quantity ordered previously to be cancelled.'),
16855 (1, 't', 1286, 'Normal reading quantity', 'The value recorded or read from a measuring device (e.g. meter) in the normal conditions.'),
16856 (1, 't', 1287, 'Customer reading quantity', 'The value recorded or read from a measuring device (e.g. meter) by the customer.'),
16857 (1, 't', 1288, 'Information reading quantity', 'The value recorded or read from a measuring device (e.g. meter) for information purposes.'),
16858 (1, 't', 1289, 'Quality control held', 'Quantity of goods held pending completion of a quality control assessment.'),
16859 (1, 't', 1290, 'As is quantity', 'Quantity as it is in the existing circumstances.'),
16860 (1, 't', 1291, 'Open quantity', 'Quantity remaining after partial delivery.'),
16861 (1, 't', 1292, 'Final delivery quantity', 'Quantity of final delivery to a respective order.'),
16862 (1, 't', 1293, 'Subsequent delivery quantity', 'Quantity delivered to a respective order after it''s final delivery.'),
16863 (1, 't', 1294, 'Substitutional quantity', 'Quantity delivered replacing previous deliveries.'),
16864 (1, 't', 1295, 'Redelivery after post processing', 'Quantity redelivered after post processing.'),
16865 (1, 'f', 1296, 'Quality control failed', 'Quantity of goods which have failed quality control.'),
16866 (1, 't', 1297, 'Minimum inventory', 'Minimum stock quantity on which replenishment is based.'),
16867 (1, 't', 1298, 'Maximum inventory', 'Maximum stock quantity on which replenishment is based.'),
16868 (1, 't', 1299, 'Estimated quantity', 'Quantity estimated.'),
16869 (1, 't', 1300, 'Chargeable weight', 'The weight on which charges are based.'),
16870 (1, 't', 1301, 'Chargeable gross weight', 'The gross weight on which charges are based.'),
16871 (1, 't', 1302, 'Chargeable tare weight', 'The tare weight on which charges are based.'),
16872 (1, 't', 1303, 'Chargeable number of axles', 'The number of axles on which charges are based.'),
16873 (1, 't', 1304, 'Chargeable number of containers', 'The number of containers on which charges are based.'),
16874 (1, 't', 1305, 'Chargeable number of rail wagons', 'The number of rail wagons on which charges are based.'),
16875 (1, 't', 1306, 'Chargeable number of packages', 'The number of packages on which charges are based.'),
16876 (1, 't', 1307, 'Chargeable number of units', 'The number of units on which charges are based.'),
16877 (1, 't', 1308, 'Chargeable period', 'The period of time on which charges are based.'),
16878 (1, 't', 1309, 'Chargeable volume', 'The volume on which charges are based.'),
16879 (1, 't', 1310, 'Chargeable cubic measurements', 'The cubic measurements on which charges are based.'),
16880 (1, 't', 1311, 'Chargeable surface', 'The surface area on which charges are based.'),
16881 (1, 't', 1312, 'Chargeable length', 'The length on which charges are based.'),
16882 (1, 't', 1313, 'Quantity to be delivered', 'The quantity to be delivered.'),
16883 (1, 't', 1314, 'Number of passengers', 'Total number of passengers on the conveyance.'),
16884 (1, 't', 1315, 'Number of crew', 'Total number of crew members on the conveyance.'),
16885 (1, 't', 1316, 'Number of transport documents', 'Total number of air waybills, bills of lading, etc. being reported for a specific conveyance.'),
16886 (1, 't', 1317, 'Quantity landed', 'Quantity of goods actually arrived.'),
16887 (1, 't', 1318, 'Quantity manifested', 'Quantity of goods contracted for delivery by the carrier.'),
16888 (1, 't', 1319, 'Short shipped', 'Indication that part of the consignment was not shipped.'),
16889 (1, 't', 1320, 'Split shipment', 'Indication that the consignment has been split into two or more shipments.'),
16890 (1, 't', 1321, 'Over shipped', 'The quantity of goods shipped that exceeds the quantity contracted.'),
16891 (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.'),
16892 (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.'),
16893 (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.'),
16894 (1, 'f', 1325, 'Pilferage goods', 'Quantity of goods stolen during transport.'),
16895 (1, 'f', 1326, 'Lost goods', 'Quantity of goods that disappeared in transport.'),
16896 (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.'),
16897 (1, 't', 1328, 'Quantity loaded', 'Quantity of goods loaded onto a means of transport.'),
16898 (1, 't', 1329, 'Units per unit price', 'Number of units per unit price.'),
16899 (1, 't', 1330, 'Allowance', 'Quantity relevant for allowance.'),
16900 (1, 't', 1331, 'Delivery quantity', 'Quantity required by buyer to be delivered.'),
16901 (1, 't', 1332, 'Cumulative quantity, preceding period, planned', 'Cumulative quantity originally planned for the preceding period.'),
16902 (1, 't', 1333, 'Cumulative quantity, preceding period, reached', 'Cumulative quantity reached in the preceding period.'),
16903 (1, 't', 1334, 'Cumulative quantity, actual planned',            'Cumulative quantity planned for now.'),
16904 (1, 't', 1335, 'Period quantity, planned', 'Quantity planned for this period.'),
16905 (1, 't', 1336, 'Period quantity, reached', 'Quantity reached during this period.'),
16906 (1, 't', 1337, 'Cumulative quantity, preceding period, estimated', 'Estimated cumulative quantity reached in the preceding period.'),
16907 (1, 't', 1338, 'Cumulative quantity, actual estimated',            'Estimated cumulative quantity reached now.'),
16908 (1, 't', 1339, 'Cumulative quantity, preceding period, measured', 'Surveyed cumulative quantity reached in the preceding period.'),
16909 (1, 't', 1340, 'Cumulative quantity, actual measured', 'Surveyed cumulative quantity reached now.'),
16910 (1, 't', 1341, 'Period quantity, measured',            'Surveyed quantity reached during this period.'),
16911 (1, 't', 1342, 'Total quantity, planned', 'Total quantity planned.'),
16912 (1, 't', 1343, 'Quantity, remaining', 'Quantity remaining.'),
16913 (1, 't', 1344, 'Tolerance', 'Plus or minus tolerance expressed as a monetary amount.'),
16914 (1, 't', 1345, 'Actual stock',          'The stock on hand, undamaged, and available for despatch, sale or use.'),
16915 (1, 't', 1346, 'Model or target stock', 'The stock quantity required or planned to have on hand, undamaged and available for use.'),
16916 (1, 't', 1347, 'Direct shipment quantity', 'Quantity to be shipped directly to a customer from a manufacturing site.'),
16917 (1, 't', 1348, 'Amortization total quantity',     'Indication of final quantity for amortization.'),
16918 (1, 't', 1349, 'Amortization order quantity',     'Indication of actual share of the order quantity for amortization.'),
16919 (1, 't', 1350, 'Amortization cumulated quantity', 'Indication of actual cumulated quantity of previous and actual amortization order quantity.'),
16920 (1, 't', 1351, 'Quantity advised',  'Quantity advised by supplier or shipper, in contrast to quantity actually received.'),
16921 (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.'),
16922 (1, 't', 1353, 'Statistical sales quantity', 'Quantity of goods sold in a specified period.'),
16923 (1, 't', 1354, 'Sales quantity planned',     'Quantity of goods required to meet future demands. - Market intelligence quantity.'),
16924 (1, 't', 1355, 'Replenishment quantity',     'Quantity required to maintain the requisite on-hand stock of goods.'),
16925 (1, 't', 1356, 'Inventory movement quantity', 'To specify the quantity of an inventory movement.'),
16926 (1, 't', 1357, 'Opening stock balance quantity', 'To specify the quantity of an opening stock balance.'),
16927 (1, 't', 1358, 'Closing stock balance quantity', 'To specify the quantity of a closing stock balance.'),
16928 (1, 't', 1359, 'Number of stops', 'Number of times a means of transport stops before arriving at destination.'),
16929 (1, 't', 1360, 'Minimum production batch', 'The quantity specified is the minimum output from a single production run.'),
16930 (1, 't', 1361, 'Dimensional sample quantity', 'The quantity defined is a sample for the purpose of validating dimensions.'),
16931 (1, 't', 1362, 'Functional sample quantity', 'The quantity defined is a sample for the purpose of validating function and performance.'),
16932 (1, 't', 1363, 'Pre-production quantity', 'Quantity of the referenced item required prior to full production.'),
16933 (1, 't', 1364, 'Delivery batch', 'Quantity of the referenced item which constitutes a standard batch for deliver purposes.'),
16934 (1, 't', 1365, 'Delivery batch multiple', 'The multiples in which delivery batches can be supplied.'),
16935 (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.'),
16936 (1, 't', 1367, 'Total delivery quantity',  'The total quantity required by the buyer to be delivered.'),
16937 (1, 't', 1368, 'Single delivery quantity', 'The quantity required by the buyer to be delivered in a single shipment.'),
16938 (1, 't', 1369, 'Supplied quantity',  'Quantity of the referenced item actually shipped.'),
16939 (1, 't', 1370, 'Allocated quantity', 'Quantity of the referenced item allocated from available stock for delivery.'),
16940 (1, 't', 1371, 'Maximum stackability', 'The number of pallets/handling units which can be safely stacked one on top of another.'),
16941 (1, 't', 1372, 'Amortisation quantity', 'The quantity of the referenced item which has a cost for tooling amortisation included in the item price.'),
16942 (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.'),
16943 (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.'),
16944 (1, 't', 1375, 'Number of moulds', 'The number of pressing moulds contained within a single piece of the referenced tooling.'),
16945 (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.'),
16946 (1, 't', 1377, 'Periodic capacity of tooling', 'Maximum production output of the referenced tool over a period of time.'),
16947 (1, 't', 1378, 'Lifetime capacity of tooling', 'Maximum production output of the referenced tool over its productive lifetime.'),
16948 (1, 't', 1379, 'Number of deliveries per despatch period', 'The number of deliveries normally expected to be despatched within each despatch period.'),
16949 (1, 't', 1380, 'Provided quantity', 'The quantity of a referenced component supplied by the buyer for manufacturing of an ordered item.'),
16950 (1, 't', 1381, 'Maximum production batch', 'The quantity specified is the maximum output from a single production run.'),
16951 (1, 'f', 1382, 'Cancelled quantity', 'Quantity of the referenced item which has previously been ordered and is now cancelled.'),
16952 (1, 't', 1383, 'No delivery requirement in this instruction', 'This delivery instruction does not contain any delivery requirements.'),
16953 (1, 't', 1384, 'Quantity of material in ordered time', 'Quantity of the referenced material within the ordered time.'),
16954 (1, 'f', 1385, 'Rejected quantity', 'The quantity of received goods rejected for quantity reasons.'),
16955 (1, 't', 1386, 'Cumulative quantity scheduled up to accumulation start date', 'The cumulative quantity scheduled up to the accumulation start date.'),
16956 (1, 't', 1387, 'Quantity scheduled', 'The quantity scheduled for delivery.'),
16957 (1, 't', 1388, 'Number of identical handling units', 'Number of identical handling units in terms of type and contents.'),
16958 (1, 't', 1389, 'Number of packages in handling unit', 'The number of packages contained in one handling unit.'),
16959 (1, 't', 1390, 'Despatch note quantity', 'The item quantity specified on the despatch note.'),
16960 (1, 't', 1391, 'Adjustment to inventory quantity', 'An adjustment to inventory quantity.'),
16961 (1, 't', 1392, 'Free goods quantity',    'Quantity of goods which are free of charge.'),
16962 (1, 't', 1393, 'Free quantity included', 'Quantity included to which no charge is applicable.'),
16963 (1, 't', 1394, 'Received and accepted',  'Quantity which has been received and accepted at a given location.'),
16964 (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.'),
16965 (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.'),
16966 (1, 't', 1397, 'Reordering level', 'Quantity at which an order may be triggered to replenish.'),
16967 (1, 't', 1399, 'Inventory withdrawal quantity', 'Quantity which has been withdrawn from inventory since the last inventory report.'),
16968 (1, 't', 1400, 'Free quantity not included', 'Free quantity not included in ordered quantity.'),
16969 (1, 't', 1401, 'Recommended overhaul and repair quantity', 'To indicate the recommended quantity of an article required to support overhaul and repair activities.'),
16970 (1, 't', 1402, 'Quantity per next higher assembly', 'To indicate the quantity required for the next higher assembly.'),
16971 (1, 't', 1403, 'Quantity per unit of issue', 'Provides the standard quantity of an article in which one unit can be issued.'),
16972 (1, 't', 1404, 'Cumulative scrap quantity',  'Provides the cumulative quantity of an item which has been identified as scrapped.'),
16973 (1, 't', 1405, 'Publication turn size', 'The quantity of magazines or newspapers grouped together with the spine facing alternate directions in a bundle.'),
16974 (1, 't', 1406, 'Recommended maintenance quantity', 'Recommended quantity of an article which is required to meet an agreed level of maintenance.'),
16975 (1, 't', 1407, 'Labour hours', 'Number of labour hours.'),
16976 (1, 't', 1408, 'Quantity requirement for maintenance and repair of', 'equipment Quantity of the material needed to maintain and repair equipment.'),
16977 (1, 't', 1409, 'Additional replenishment demand quantity', 'Incremental needs over and above normal replenishment calculations, but not intended to permanently change the model parameters.'),
16978 (1, 't', 1410, 'Returned by consumer quantity', 'Quantity returned by a consumer.'),
16979 (1, 't', 1411, 'Replenishment override quantity', 'Quantity to override the normal replenishment model calculations, but not intended to permanently change the model parameters.'),
16980 (1, 't', 1412, 'Quantity sold, net', 'Net quantity sold which includes returns of saleable inventory and other adjustments.'),
16981 (1, 't', 1413, 'Transferred out quantity',   'Quantity which was transferred out of this location.'),
16982 (1, 't', 1414, 'Transferred in quantity',    'Quantity which was transferred into this location.'),
16983 (1, 't', 1415, 'Unsaleable quantity',        'Quantity of inventory received which cannot be sold in its present condition.'),
16984 (1, 't', 1416, 'Consumer reserved quantity', 'Quantity reserved for consumer delivery or pickup and not yet withdrawn from inventory.'),
16985 (1, 't', 1417, 'Out of inventory quantity',  'Quantity of inventory which was requested but was not available.'),
16986 (1, 't', 1418, 'Quantity returned, defective or damaged', 'Quantity returned in a damaged or defective condition.'),
16987 (1, 't', 1419, 'Taxable quantity',           'Quantity subject to taxation.'),
16988 (1, 't', 1420, 'Meter reading', 'The numeric value of measure units counted by a meter.'),
16989 (1, 't', 1421, 'Maximum requestable quantity', 'The maximum quantity which may be requested.'),
16990 (1, 't', 1422, 'Minimum requestable quantity', 'The minimum quantity which may be requested.'),
16991 (1, 't', 1423, 'Daily average quantity', 'The quantity for a defined period divided by the number of days of the period.'),
16992 (1, 't', 1424, 'Budgeted hours',     'The number of budgeted hours.'),
16993 (1, 't', 1425, 'Actual hours',       'The number of actual hours.'),
16994 (1, 't', 1426, 'Earned value hours', 'The number of earned value hours.'),
16995 (1, 't', 1427, 'Estimated hours',    'The number of estimated hours.'),
16996 (1, 't', 1428, 'Level resource task quantity', 'Quantity of a resource that is level for the duration of the task.'),
16997 (1, 't', 1429, 'Available resource task quantity', 'Quantity of a resource available to complete a task.'),
16998 (1, 't', 1430, 'Work time units',   'Quantity of work units of time.'),
16999 (1, 't', 1431, 'Daily work shifts', 'Quantity of work shifts per day.'),
17000 (1, 't', 1432, 'Work time units per shift', 'Work units of time per work shift.'),
17001 (1, 't', 1433, 'Work calendar units',       'Work calendar units of time.'),
17002 (1, 't', 1434, 'Elapsed duration',   'Quantity representing the elapsed duration.'),
17003 (1, 't', 1435, 'Remaining duration', 'Quantity representing the remaining duration.'),
17004 (1, 't', 1436, 'Original duration',  'Quantity representing the original duration.'),
17005 (1, 't', 1437, 'Current duration',   'Quantity representing the current duration.'),
17006 (1, 't', 1438, 'Total float time',   'Quantity representing the total float time.'),
17007 (1, 't', 1439, 'Free float time',    'Quantity representing the free float time.'),
17008 (1, 't', 1440, 'Lag time',           'Quantity representing lag time.'),
17009 (1, 't', 1441, 'Lead time',          'Quantity representing lead time.'),
17010 (1, 't', 1442, 'Number of months', 'The number of months.'),
17011 (1, 't', 1443, 'Reserved quantity customer direct delivery sales', 'Quantity of products reserved for sales delivered direct to the customer.'),
17012 (1, 't', 1444, 'Reserved quantity retail sales', 'Quantity of products reserved for retail sales.'),
17013 (1, 't', 1445, 'Consolidated discount inventory', 'A quantity of inventory supplied at consolidated discount terms.'),
17014 (1, 't', 1446, 'Returns replacement quantity',    'A quantity of goods issued as a replacement for a returned quantity.'),
17015 (1, 't', 1447, 'Additional promotion sales forecast quantity', 'A forecast of additional quantity which will be sold during a period of promotional activity.'),
17016 (1, 't', 1448, 'Reserved quantity', 'Quantity reserved for specific purposes.'),
17017 (1, 't', 1449, 'Quantity displayed not available for sale', 'Quantity displayed within a retail outlet but not available for sale.'),
17018 (1, 't', 1450, 'Inventory discrepancy', 'The difference recorded between theoretical and physical inventory.'),
17019 (1, 't', 1451, 'Incremental order quantity', 'The incremental quantity by which ordering is carried out.'),
17020 (1, 't', 1452, 'Quantity requiring manipulation before despatch', 'A quantity of goods which needs manipulation before despatch.'),
17021 (1, 't', 1453, 'Quantity in quarantine',              'A quantity of goods which are held in a restricted area for quarantine purposes.'),
17022 (1, 't', 1454, 'Quantity withheld by owner of goods', 'A quantity of goods which has been withheld by the owner of the goods.'),
17023 (1, 't', 1455, 'Quantity not available for despatch', 'A quantity of goods not available for despatch.'),
17024 (1, 't', 1456, 'Quantity awaiting delivery', 'Quantity of goods which are awaiting delivery.'),
17025 (1, 't', 1457, 'Quantity in physical inventory',      'A quantity of goods held in physical inventory.'),
17026 (1, 't', 1458, 'Quantity held by logistic service provider', 'Quantity of goods under the control of a logistic service provider.'),
17027 (1, 't', 1459, 'Optimal quantity', 'The optimal quantity for a given purpose.'),
17028 (1, 't', 1460, 'Delivery quantity balance', 'The difference between the scheduled quantity and the quantity delivered to the consignee at a given date.'),
17029 (1, 't', 1461, 'Cumulative quantity shipped', 'Cumulative quantity of all shipments.'),
17030 (1, 't', 1462, 'Quantity suspended', 'The quantity of something which is suspended.'),
17031 (1, 't', 1463, 'Control quantity', 'The quantity designated for control purposes.'),
17032 (1, 't', 1464, 'Equipment quantity', 'A count of a quantity of equipment.'),
17033 (1, 't', 1465, 'Factor', 'Number by which the measured unit has to be multiplied to calculate the units used.'),
17034 (1, 't', 1466, 'Unsold quantity held by wholesaler', 'Unsold quantity held by the wholesaler.'),
17035 (1, 't', 1467, 'Quantity held by delivery vehicle', 'Quantity of goods held by the delivery vehicle.'),
17036 (1, 't', 1468, 'Quantity held by retail outlet', 'Quantity held by the retail outlet.'),
17037 (1, 'f', 1469, 'Rejected return quantity', 'A quantity for return which has been rejected.'),
17038 (1, 't', 1470, 'Accounts', 'The number of accounts.'),
17039 (1, 't', 1471, 'Accounts placed for collection', 'The number of accounts placed for collection.'),
17040 (1, 't', 1472, 'Activity codes', 'The number of activity codes.'),
17041 (1, 't', 1473, 'Agents', 'The number of agents.'),
17042 (1, 't', 1474, 'Airline attendants', 'The number of airline attendants.'),
17043 (1, 't', 1475, 'Authorised shares',  'The number of shares authorised for issue.'),
17044 (1, 't', 1476, 'Employee average',   'The average number of employees.'),
17045 (1, 't', 1477, 'Branch locations',   'The number of branch locations.'),
17046 (1, 't', 1478, 'Capital changes',    'The number of capital changes made.'),
17047 (1, 't', 1479, 'Clerks', 'The number of clerks.'),
17048 (1, 't', 1480, 'Companies in same activity', 'The number of companies doing business in the same activity category.'),
17049 (1, 't', 1481, 'Companies included in consolidated financial statement', 'The number of companies included in a consolidated financial statement.'),
17050 (1, 't', 1482, 'Cooperative shares', 'The number of cooperative shares.'),
17051 (1, 't', 1483, 'Creditors',   'The number of creditors.'),
17052 (1, 't', 1484, 'Departments', 'The number of departments.'),
17053 (1, 't', 1485, 'Design employees', 'The number of employees involved in the design process.'),
17054 (1, 't', 1486, 'Physicians', 'The number of medical doctors.'),
17055 (1, 't', 1487, 'Domestic affiliated companies', 'The number of affiliated companies located within the country.'),
17056 (1, 't', 1488, 'Drivers', 'The number of drivers.'),
17057 (1, 't', 1489, 'Employed at location',     'The number of employees at the specified location.'),
17058 (1, 't', 1490, 'Employed by this company', 'The number of employees at the specified company.'),
17059 (1, 't', 1491, 'Total employees',    'The total number of employees.'),
17060 (1, 't', 1492, 'Employees shared',   'The number of employees shared among entities.'),
17061 (1, 't', 1493, 'Engineers',          'The number of engineers.'),
17062 (1, 't', 1494, 'Estimated accounts', 'The estimated number of accounts.'),
17063 (1, 't', 1495, 'Estimated employees at location', 'The estimated number of employees at the specified location.'),
17064 (1, 't', 1496, 'Estimated total employees',       'The total estimated number of employees.'),
17065 (1, 't', 1497, 'Executives', 'The number of executives.'),
17066 (1, 't', 1498, 'Agricultural workers',   'The number of agricultural workers.'),
17067 (1, 't', 1499, 'Financial institutions', 'The number of financial institutions.'),
17068 (1, 't', 1500, 'Floors occupied', 'The number of floors occupied.'),
17069 (1, 't', 1501, 'Foreign related entities', 'The number of related entities located outside the country.'),
17070 (1, 't', 1502, 'Group employees',    'The number of employees within the group.'),
17071 (1, 't', 1503, 'Indirect employees', 'The number of employees not associated with direct production.'),
17072 (1, 't', 1504, 'Installers',    'The number of employees involved with the installation process.'),
17073 (1, 't', 1505, 'Invoices',      'The number of invoices.'),
17074 (1, 't', 1506, 'Issued shares', 'The number of shares actually issued.'),
17075 (1, 't', 1507, 'Labourers',     'The number of labourers.'),
17076 (1, 't', 1508, 'Manufactured units', 'The number of units manufactured.'),
17077 (1, 't', 1509, 'Maximum number of employees', 'The maximum number of people employed.'),
17078 (1, 't', 1510, 'Maximum number of employees at location', 'The maximum number of people employed at a location.'),
17079 (1, 't', 1511, 'Members in group', 'The number of members within a group.'),
17080 (1, 't', 1512, 'Minimum number of employees at location', 'The minimum number of people employed at a location.'),
17081 (1, 't', 1513, 'Minimum number of employees', 'The minimum number of people employed.'),
17082 (1, 't', 1514, 'Non-union employees', 'The number of employees not belonging to a labour union.'),
17083 (1, 't', 1515, 'Floors', 'The number of floors in a building.'),
17084 (1, 't', 1516, 'Nurses', 'The number of nurses.'),
17085 (1, 't', 1517, 'Office workers', 'The number of workers in an office.'),
17086 (1, 't', 1518, 'Other employees', 'The number of employees otherwise categorised.'),
17087 (1, 't', 1519, 'Part time employees', 'The number of employees working on a part time basis.'),
17088 (1, 't', 1520, 'Accounts payable average overdue days', 'The average number of days accounts payable are overdue.'),
17089 (1, 't', 1521, 'Pilots', 'The number of pilots.'),
17090 (1, 't', 1522, 'Plant workers', 'The number of workers within a plant.'),
17091 (1, 't', 1523, 'Previous number of accounts', 'The number of accounts which preceded the current count.'),
17092 (1, 't', 1524, 'Previous number of branch locations', 'The number of branch locations which preceded the current count.'),
17093 (1, 't', 1525, 'Principals included as employees', 'The number of principals which are included in the count of employees.'),
17094 (1, 't', 1526, 'Protested bills', 'The number of bills which are protested.'),
17095 (1, 't', 1527, 'Registered brands distributed', 'The number of registered brands which are being distributed.'),
17096 (1, 't', 1528, 'Registered brands manufactured', 'The number of registered brands which are being manufactured.'),
17097 (1, 't', 1529, 'Related business entities', 'The number of related business entities.'),
17098 (1, 't', 1530, 'Relatives employed', 'The number of relatives which are counted as employees.'),
17099 (1, 't', 1531, 'Rooms',        'The number of rooms.'),
17100 (1, 't', 1532, 'Salespersons', 'The number of salespersons.'),
17101 (1, 't', 1533, 'Seats',        'The number of seats.'),
17102 (1, 't', 1534, 'Shareholders', 'The number of shareholders.'),
17103 (1, 't', 1535, 'Shares of common stock', 'The number of shares of common stock.'),
17104 (1, 't', 1536, 'Shares of preferred stock', 'The number of shares of preferred stock.'),
17105 (1, 't', 1537, 'Silent partners', 'The number of silent partners.'),
17106 (1, 't', 1538, 'Subcontractors',  'The number of subcontractors.'),
17107 (1, 't', 1539, 'Subsidiaries',    'The number of subsidiaries.'),
17108 (1, 't', 1540, 'Law suits',       'The number of law suits.'),
17109 (1, 't', 1541, 'Suppliers',       'The number of suppliers.'),
17110 (1, 't', 1542, 'Teachers',        'The number of teachers.'),
17111 (1, 't', 1543, 'Technicians',     'The number of technicians.'),
17112 (1, 't', 1544, 'Trainees',        'The number of trainees.'),
17113 (1, 't', 1545, 'Union employees', 'The number of employees who are members of a labour union.'),
17114 (1, 't', 1546, 'Number of units', 'The quantity of units.'),
17115 (1, 't', 1547, 'Warehouse employees', 'The number of employees who work in a warehouse setting.'),
17116 (1, 't', 1548, 'Shareholders holding remainder of shares', 'Number of shareholders owning the remainder of shares.'),
17117 (1, 't', 1549, 'Payment orders filed', 'Number of payment orders filed.'),
17118 (1, 't', 1550, 'Uncovered cheques', 'Number of uncovered cheques.'),
17119 (1, 't', 1551, 'Auctions', 'Number of auctions.'),
17120 (1, 't', 1552, 'Units produced', 'The number of units produced.'),
17121 (1, 't', 1553, 'Added employees', 'Number of employees that were added to the workforce.'),
17122 (1, 't', 1554, 'Number of added locations', 'Number of locations that were added.'),
17123 (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.'),
17124 (1, 't', 1556, 'Number of closed locations', 'Number of locations that were closed.'),
17125 (1, 't', 1557, 'Counter clerks', 'The number of clerks that work behind a flat-topped fitment.'),
17126 (1, 't', 1558, 'Payment experiences in the last 3 months', 'The number of payment experiences received for an entity over the last 3 months.'),
17127 (1, 't', 1559, 'Payment experiences in the last 12 months', 'The number of payment experiences received for an entity over the last 12 months.'),
17128 (1, 't', 1560, 'Total number of subsidiaries not included in the financial', 'statement The total number of subsidiaries not included in the financial statement.'),
17129 (1, 't', 1561, 'Paid-in common shares', 'The number of paid-in common shares.'),
17130 (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.'),
17131 (1, 't', 1563, 'Total number of foreign subsidiaries included in financial statement', 'The total number of foreign subsidiaries included in the financial statement.'),
17132 (1, 't', 1564, 'Total number of domestic subsidiaries included in financial statement', 'The total number of domestic subsidiaries included in the financial statement.'),
17133 (1, 't', 1565, 'Total transactions', 'The total number of transactions.'),
17134 (1, 't', 1566, 'Paid-in preferred shares', 'The number of paid-in preferred shares.'),
17135 (1, 't', 1567, 'Employees', 'Code specifying the quantity of persons working for a company, whose services are used for pay.'),
17136 (1, 't', 1568, 'Active ingredient dose per unit, dispensed', 'The dosage of active ingredient per dispensed unit.'),
17137 (1, 't', 1569, 'Budget', 'Budget quantity.'),
17138 (1, 't', 1570, 'Budget, cumulative to date', 'Budget quantity, cumulative to date.'),
17139 (1, 't', 1571, 'Actual units', 'The number of actual units.'),
17140 (1, 't', 1572, 'Actual units, cumulative to date', 'The number of cumulative to date actual units.'),
17141 (1, 't', 1573, 'Earned value', 'Earned value quantity.'),
17142 (1, 't', 1574, 'Earned value, cumulative to date', 'Earned value quantity accumulated to date.'),
17143 (1, 't', 1575, 'At completion quantity, estimated', 'The estimated quantity when a project is complete.'),
17144 (1, 't', 1576, 'To complete quantity, estimated', 'The estimated quantity required to complete a project.'),
17145 (1, 't', 1577, 'Adjusted units', 'The number of adjusted units.'),
17146 (1, 't', 1578, 'Number of limited partnership shares', 'Number of shares held in a limited partnership.'),
17147 (1, 't', 1579, 'National business failure incidences', 'Number of firms in a country that discontinued with a loss to creditors.'),
17148 (1, 't', 1580, 'Industry business failure incidences', 'Number of firms in a specific industry that discontinued with a loss to creditors.'),
17149 (1, 't', 1581, 'Business class failure incidences', 'Number of firms in a specific class that discontinued with a loss to creditors.'),
17150 (1, 't', 1582, 'Mechanics', 'Number of mechanics.'),
17151 (1, 't', 1583, 'Messengers', 'Number of messengers.'),
17152 (1, 't', 1584, 'Primary managers', 'Number of primary managers.'),
17153 (1, 't', 1585, 'Secretaries', 'Number of secretaries.'),
17154 (1, 't', 1586, 'Detrimental legal filings', 'Number of detrimental legal filings.'),
17155 (1, 't', 1587, 'Branch office locations, estimated', 'Estimated number of branch office locations.'),
17156 (1, 't', 1588, 'Previous number of employees', 'The number of employees for a previous period.'),
17157 (1, 't', 1589, 'Asset seizers', 'Number of entities that seize assets of another entity.'),
17158 (1, 't', 1590, 'Out-turned quantity', 'The quantity discharged.'),
17159 (1, 't', 1591, 'Material on-board quantity, prior to loading', 'The material in vessel tanks, void spaces, and pipelines prior to loading.'),
17160 (1, 't', 1592, 'Supplier estimated previous meter reading', 'Previous meter reading estimated by the supplier.'),
17161 (1, 't', 1593, 'Supplier estimated latest meter reading',   'Latest meter reading estimated by the supplier.'),
17162 (1, 't', 1594, 'Customer estimated previous meter reading', 'Previous meter reading estimated by the customer.'),
17163 (1, 't', 1595, 'Customer estimated latest meter reading',   'Latest meter reading estimated by the customer.'),
17164 (1, 't', 1596, 'Supplier previous meter reading',           'Previous meter reading done by the supplier.'),
17165 (1, 't', 1597, 'Supplier latest meter reading',             'Latest meter reading recorded by the supplier.'),
17166 (1, 't', 1598, 'Maximum number of purchase orders allowed', 'Maximum number of purchase orders that are allowed.'),
17167 (1, 't', 1599, 'File size before compression', 'The size of a file before compression.'),
17168 (1, 't', 1600, 'File size after compression', 'The size of a file after compression.'),
17169 (1, 't', 1601, 'Securities shares', 'Number of shares of securities.'),
17170 (1, 't', 1602, 'Patients',         'Number of patients.'),
17171 (1, 't', 1603, 'Completed projects', 'Number of completed projects.'),
17172 (1, 't', 1604, 'Promoters',        'Number of entities who finance or organize an event or a production.'),
17173 (1, 't', 1605, 'Administrators',   'Number of administrators.'),
17174 (1, 't', 1606, 'Supervisors',      'Number of supervisors.'),
17175 (1, 't', 1607, 'Professionals',    'Number of professionals.'),
17176 (1, 't', 1608, 'Debt collectors',  'Number of debt collectors.'),
17177 (1, 't', 1609, 'Inspectors',       'Number of individuals who perform inspections.'),
17178 (1, 't', 1610, 'Operators',        'Number of operators.'),
17179 (1, 't', 1611, 'Trainers',         'Number of trainers.'),
17180 (1, 't', 1612, 'Active accounts',  'Number of accounts in a current or active status.'),
17181 (1, 't', 1613, 'Trademarks used',  'Number of trademarks used.'),
17182 (1, 't', 1614, 'Machines',         'Number of machines.'),
17183 (1, 't', 1615, 'Fuel pumps',       'Number of fuel pumps.'),
17184 (1, 't', 1616, 'Tables available', 'Number of tables available for use.'),
17185 (1, 't', 1617, 'Directors',        'Number of directors.'),
17186 (1, 't', 1618, 'Freelance debt collectors', 'Number of debt collectors who work on a freelance basis.'),
17187 (1, 't', 1619, 'Freelance salespersons',    'Number of salespersons who work on a freelance basis.'),
17188 (1, 't', 1620, 'Travelling employees',      'Number of travelling employees.'),
17189 (1, 't', 1621, 'Foremen', 'Number of workers with limited supervisory responsibilities.'),
17190 (1, 't', 1622, 'Production workers', 'Number of employees engaged in production.'),
17191 (1, 't', 1623, 'Employees not including owners', 'Number of employees excluding business owners.'),
17192 (1, 't', 1624, 'Beds', 'Number of beds.'),
17193 (1, 't', 1625, 'Resting quantity', 'A quantity of product that is at rest before it can be used.'),
17194 (1, 't', 1626, 'Production requirements', 'Quantity needed to meet production requirements.'),
17195 (1, 't', 1627, 'Corrected quantity', 'The quantity has been corrected.'),
17196 (1, 't', 1628, 'Operating divisions', 'Number of divisions operating.'),
17197 (1, 't', 1629, 'Quantitative incentive scheme base', 'Quantity constituting the base for the quantitative incentive scheme.'),
17198 (1, 't', 1630, 'Petitions filed', 'Number of petitions that have been filed.'),
17199 (1, 't', 1631, 'Bankruptcy petitions filed', 'Number of bankruptcy petitions that have been filed.'),
17200 (1, 't', 1632, 'Projects in process', 'Number of projects in process.'),
17201 (1, 't', 1633, 'Changes in capital structure', 'Number of modifications made to the capital structure of an entity.'),
17202 (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.'),
17203 (1, 't', 1635, 'Number of failed businesses of directors', 'The number of failed businesses with which the directors have been associated.'),
17204 (1, 't', 1636, 'Professor', 'The number of professors.'),
17205 (1, 't', 1637, 'Seller',    'The number of sellers.'),
17206 (1, 't', 1638, 'Skilled worker', 'The number of skilled workers.'),
17207 (1, 't', 1639, 'Trademark represented', 'The number of trademarks represented.'),
17208 (1, 't', 1640, 'Number of quantitative incentive scheme units', 'Number of units allocated to a quantitative incentive scheme.'),
17209 (1, 't', 1641, 'Quantity in manufacturing process', 'Quantity currently in the manufacturing process.'),
17210 (1, 't', 1642, 'Number of units in the width of a layer', 'Number of units which make up the width of a layer.'),
17211 (1, 't', 1643, 'Number of units in the depth of a layer', 'Number of units which make up the depth of a layer.'),
17212 (1, 't', 1644, 'Return to warehouse', 'A quantity of products sent back to the warehouse.'),
17213 (1, 't', 1645, 'Return to the manufacturer', 'A quantity of products sent back from the manufacturer.'),
17214 (1, 't', 1646, 'Delta quantity', 'An increment or decrement to a quantity.'),
17215 (1, 't', 1647, 'Quantity moved between outlets', 'A quantity of products moved between outlets.'),
17216 (1, 't', 1648, 'Pre-paid invoice annual consumption, estimated', 'The estimated annual consumption used for a prepayment invoice.'),
17217 (1, 't', 1649, 'Total quoted quantity', 'The sum of quoted quantities.'),
17218 (1, 't', 1650, 'Requests pertaining to entity in last 12 months', 'Number of requests received in last 12 months pertaining to the entity.'),
17219 (1, 't', 1651, 'Total inquiry matches', 'Number of instances which correspond with the inquiry.'),
17220 (1, 't', 1652, 'En route to warehouse quantity',   'A quantity of products that is en route to a warehouse.'),
17221 (1, 't', 1653, 'En route from warehouse quantity', 'A quantity of products that is en route from a warehouse.'),
17222 (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.'),
17223 (1, 't', 1655, 'Not yet ordered quantity', 'The quantity which has not yet been ordered.'),
17224 (1, 't', 1656, 'Net reserve power', 'The reserve power available for the net.'),
17225 (1, 't', 1657, 'Maximum number of units per shelf', 'Maximum number of units of a product that can be placed on a shelf.'),
17226 (1, 't', 1658, 'Stowaway', 'Number of stowaway(s) on a conveyance.'),
17227 (1, 't', 1659, 'Tug', 'The number of tugboat(s).'),
17228 (1, 't', 1660, 'Maximum quantity capability of the package', 'Maximum quantity of a product that can be contained in a package.'),
17229 (1, 't', 1661, 'Calculated', 'The calculated quantity.'),
17230 (1, 't', 1662, 'Monthly volume, estimated', 'Volume estimated for a month.'),
17231 (1, 't', 1663, 'Total number of persons', 'Quantity representing the total number of persons.'),
17232 (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.'),
17233 (1, 't', 1665, 'Deducted tariff quantity',   'Quantity deducted from tariff quantity to reckon duty/tax/fee assessment bases.'),
17234 (1, 't', 1666, 'Advised but not arrived',    'Goods are advised by the consignor or supplier, but have not yet arrived at the destination.'),
17235 (1, 't', 1667, 'Received but not available', 'Goods have been received in the arrival area but are not yet available.'),
17236 (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.'),
17237 (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.'),
17238 (1, 't', 1670, 'Chargeable number of trailers', 'The number of trailers on which charges are based.'),
17239 (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.'),
17240 (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.'),
17241 (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.'),
17242 (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.'),
17243 (1, 't', 1675, 'Agreed maximum buying quantity', 'The agreed maximum quantity of the trade item that may be purchased.'),
17244 (1, 't', 1676, 'Agreed minimum buying quantity', 'The agreed minimum quantity of the trade item that may be purchased.'),
17245 (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.'),
17246 (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.'),
17247 (1, 't', 1679, 'Marine Diesel Oil bunkers, loaded',                  'Number of Marine Diesel Oil (MDO) bunkers taken on in the port.'),
17248 (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.'),
17249 (1, 't', 1681, 'Intermediate Fuel Oil bunkers, loaded',              'Number of Intermediate Fuel Oil (IFO) bunkers taken on in the port.'),
17250 (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.'),
17251 (1, 't', 1683, 'Bunker C bunkers, loaded', 'Number of Bunker C, or Number 6 fuel oil bunkers, taken on in the port.'),
17252 (1, 't', 1684, 'Number of individual units within the smallest packaging', 'unit Total number of individual units contained within the smallest unit of packaging.'),
17253 (1, 't', 1685, 'Percentage of constituent element', 'The part of a product or material that is composed of the constituent element, as a percentage.'),
17254 (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).'),
17255 (1, 't', 1687, 'Regulated commodity count', 'The number of regulated items.'),
17256 (1, 't', 1688, 'Number of passengers, embarking', 'The number of passengers going aboard a conveyance.'),
17257 (1, 't', 1689, 'Number of passengers, disembarking', 'The number of passengers disembarking the conveyance.'),
17258 (1, 't', 1690, 'Constituent element or component quantity', 'The specific quantity of the identified constituent element.')
17259 ;
17260 -- ZZZ, 'Mutually defined', 'As agreed by the trading partners.'),
17261
17262 CREATE TABLE acq.serial_claim (
17263     id     SERIAL           PRIMARY KEY,
17264     type   INT              NOT NULL REFERENCES acq.claim_type
17265                                      DEFERRABLE INITIALLY DEFERRED,
17266     item    BIGINT          NOT NULL REFERENCES serial.item
17267                                      DEFERRABLE INITIALLY DEFERRED
17268 );
17269
17270 CREATE INDEX serial_claim_lid_idx ON acq.serial_claim( item );
17271
17272 CREATE TABLE acq.serial_claim_event (
17273     id             BIGSERIAL        PRIMARY KEY,
17274     type           INT              NOT NULL REFERENCES acq.claim_event_type
17275                                              DEFERRABLE INITIALLY DEFERRED,
17276     claim          SERIAL           NOT NULL REFERENCES acq.serial_claim
17277                                              DEFERRABLE INITIALLY DEFERRED,
17278     event_date     TIMESTAMPTZ      NOT NULL DEFAULT now(),
17279     creator        INT              NOT NULL REFERENCES actor.usr
17280                                              DEFERRABLE INITIALLY DEFERRED,
17281     note           TEXT
17282 );
17283
17284 CREATE INDEX serial_claim_event_claim_date_idx ON acq.serial_claim_event( claim, event_date );
17285
17286 ALTER TABLE asset.stat_cat ADD COLUMN required BOOL NOT NULL DEFAULT FALSE;
17287
17288 -- now what about the auditor.*_lifecycle views??
17289
17290 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17291     (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$ );
17292 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath ) VALUES
17293     (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$ );
17294 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
17295 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
17296
17297 CREATE TABLE asset.call_number_class (
17298     id             bigserial     PRIMARY KEY,
17299     name           TEXT          NOT NULL,
17300     normalizer     TEXT          NOT NULL DEFAULT 'asset.normalize_generic',
17301     field          TEXT          NOT NULL DEFAULT '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17302 );
17303
17304 COMMENT ON TABLE asset.call_number_class IS $$
17305 Defines the call number normalization database functions in the "normalizer"
17306 column and the tag/subfield combinations to use to lookup the call number in
17307 the "field" column for a given classification scheme. Tag/subfield combinations
17308 are delimited by commas.
17309 $$;
17310
17311 INSERT INTO asset.call_number_class (name, normalizer) VALUES 
17312     ('Generic', 'asset.label_normalizer_generic'),
17313     ('Dewey (DDC)', 'asset.label_normalizer_dewey'),
17314     ('Library of Congress (LC)', 'asset.label_normalizer_lc')
17315 ;
17316
17317 -- Generic fields
17318 UPDATE asset.call_number_class
17319     SET field = '050ab,055ab,060ab,070ab,080ab,082ab,086ab,088ab,090,092,096,098,099'
17320     WHERE id = 1
17321 ;
17322
17323 -- Dewey fields
17324 UPDATE asset.call_number_class
17325     SET field = '080ab,082ab'
17326     WHERE id = 2
17327 ;
17328
17329 -- LC fields
17330 UPDATE asset.call_number_class
17331     SET field = '050ab,055ab'
17332     WHERE id = 3
17333 ;
17334  
17335 ALTER TABLE asset.call_number
17336         ADD COLUMN label_class BIGINT DEFAULT 1 NOT NULL
17337                 REFERENCES asset.call_number_class(id)
17338                 DEFERRABLE INITIALLY DEFERRED;
17339
17340 ALTER TABLE asset.call_number
17341         ADD COLUMN label_sortkey TEXT;
17342
17343 CREATE INDEX asset_call_number_label_sortkey
17344         ON asset.call_number(label_sortkey);
17345
17346 ALTER TABLE auditor.asset_call_number_history
17347         ADD COLUMN label_class BIGINT;
17348
17349 ALTER TABLE auditor.asset_call_number_history
17350         ADD COLUMN label_sortkey TEXT;
17351
17352 -- Pick up the new columns in dependent views
17353
17354 DROP VIEW auditor.asset_call_number_lifecycle;
17355
17356 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17357
17358 DROP VIEW auditor.asset_call_number_lifecycle;
17359
17360 SELECT auditor.create_auditor_lifecycle( 'asset', 'call_number' );
17361
17362 DROP VIEW IF EXISTS stats.fleshed_call_number;
17363
17364 CREATE VIEW stats.fleshed_call_number AS
17365         SELECT  cn.*,
17366             CAST(cn.create_date AS DATE) AS create_date_day,
17367         CAST(cn.edit_date AS DATE) AS edit_date_day,
17368         DATE_TRUNC('hour', cn.create_date) AS create_date_hour,
17369         DATE_TRUNC('hour', cn.edit_date) AS edit_date_hour,
17370             rd.item_lang,
17371                 rd.item_type,
17372                 rd.item_form
17373         FROM    asset.call_number cn
17374                 JOIN metabib.rec_descriptor rd ON (rd.record = cn.record);
17375
17376 CREATE OR REPLACE FUNCTION asset.label_normalizer() RETURNS TRIGGER AS $func$
17377 DECLARE
17378     sortkey        TEXT := '';
17379 BEGIN
17380     sortkey := NEW.label_sortkey;
17381
17382     EXECUTE 'SELECT ' || acnc.normalizer || '(' || 
17383        quote_literal( NEW.label ) || ')'
17384        FROM asset.call_number_class acnc
17385        WHERE acnc.id = NEW.label_class
17386        INTO sortkey;
17387
17388     NEW.label_sortkey = sortkey;
17389
17390     RETURN NEW;
17391 END;
17392 $func$ LANGUAGE PLPGSQL;
17393
17394 CREATE OR REPLACE FUNCTION asset.label_normalizer_generic(TEXT) RETURNS TEXT AS $func$
17395     # Created after looking at the Koha C4::ClassSortRoutine::Generic module,
17396     # thus could probably be considered a derived work, although nothing was
17397     # directly copied - but to err on the safe side of providing attribution:
17398     # Copyright (C) 2007 LibLime
17399     # Licensed under the GPL v2 or later
17400
17401     use strict;
17402     use warnings;
17403
17404     # Converts the callnumber to uppercase
17405     # Strips spaces from start and end of the call number
17406     # Converts anything other than letters, digits, and periods into underscores
17407     # Collapses multiple underscores into a single underscore
17408     my $callnum = uc(shift);
17409     $callnum =~ s/^\s//g;
17410     $callnum =~ s/\s$//g;
17411     $callnum =~ s/[^A-Z0-9_.]/_/g;
17412     $callnum =~ s/_{2,}/_/g;
17413
17414     return $callnum;
17415 $func$ LANGUAGE PLPERLU;
17416
17417 CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
17418     # Derived from the Koha C4::ClassSortRoutine::Dewey module
17419     # Copyright (C) 2007 LibLime
17420     # Licensed under the GPL v2 or later
17421
17422     use strict;
17423     use warnings;
17424
17425     my $init = uc(shift);
17426     $init =~ s/^\s+//;
17427     $init =~ s/\s+$//;
17428     $init =~ s!/!!g;
17429     $init =~ s/^([\p{IsAlpha}]+)/$1 /;
17430     my @tokens = split /\.|\s+/, $init;
17431     my $digit_group_count = 0;
17432     for (my $i = 0; $i <= $#tokens; $i++) {
17433         if ($tokens[$i] =~ /^\d+$/) {
17434             $digit_group_count++;
17435             if (2 == $digit_group_count) {
17436                 $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
17437                 $tokens[$i] =~ tr/ /0/;
17438             }
17439         }
17440     }
17441     my $key = join("_", @tokens);
17442     $key =~ s/[^\p{IsAlnum}_]//g;
17443
17444     return $key;
17445
17446 $func$ LANGUAGE PLPERLU;
17447
17448 CREATE OR REPLACE FUNCTION asset.label_normalizer_lc(TEXT) RETURNS TEXT AS $func$
17449     use strict;
17450     use warnings;
17451
17452     # Library::CallNumber::LC is currently hosted at http://code.google.com/p/library-callnumber-lc/
17453     # The author hopes to upload it to CPAN some day, which would make our lives easier
17454     use Library::CallNumber::LC;
17455
17456     my $callnum = Library::CallNumber::LC->new(shift);
17457     return $callnum->normalize();
17458
17459 $func$ LANGUAGE PLPERLU;
17460
17461 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$
17462 DECLARE
17463     ans RECORD;
17464     trans INT;
17465 BEGIN
17466     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;
17467
17468     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
17469         RETURN QUERY
17470         SELECT  ans.depth,
17471                 ans.id,
17472                 COUNT( av.id ),
17473                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17474                 COUNT( av.id ),
17475                 trans
17476           FROM
17477                 actor.org_unit_descendants(ans.id) d
17478                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17479                 JOIN asset.copy cp ON (cp.id = av.id)
17480           GROUP BY 1,2,6;
17481
17482         IF NOT FOUND THEN
17483             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17484         END IF;
17485
17486     END LOOP;
17487
17488     RETURN;
17489 END;
17490 $f$ LANGUAGE PLPGSQL;
17491
17492 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$
17493 DECLARE
17494     ans RECORD;
17495     trans INT;
17496 BEGIN
17497     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;
17498
17499     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17500         RETURN QUERY
17501         SELECT  -1,
17502                 ans.id,
17503                 COUNT( av.id ),
17504                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17505                 COUNT( av.id ),
17506                 trans
17507           FROM
17508                 actor.org_unit_descendants(ans.id) d
17509                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17510                 JOIN asset.copy cp ON (cp.id = av.id)
17511           GROUP BY 1,2,6;
17512
17513         IF NOT FOUND THEN
17514             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17515         END IF;
17516
17517     END LOOP;
17518
17519     RETURN;
17520 END;
17521 $f$ LANGUAGE PLPGSQL;
17522
17523 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$
17524 DECLARE
17525     ans RECORD;
17526     trans INT;
17527 BEGIN
17528     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;
17529
17530     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
17531         RETURN QUERY
17532         SELECT  ans.depth,
17533                 ans.id,
17534                 COUNT( cp.id ),
17535                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17536                 COUNT( cp.id ),
17537                 trans
17538           FROM
17539                 actor.org_unit_descendants(ans.id) d
17540                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17541                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17542           GROUP BY 1,2,6;
17543
17544         IF NOT FOUND THEN
17545             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17546         END IF;
17547
17548     END LOOP;
17549
17550     RETURN;
17551 END;
17552 $f$ LANGUAGE PLPGSQL;
17553
17554 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$
17555 DECLARE
17556     ans RECORD;
17557     trans INT;
17558 BEGIN
17559     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;
17560
17561     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17562         RETURN QUERY
17563         SELECT  -1,
17564                 ans.id,
17565                 COUNT( cp.id ),
17566                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17567                 COUNT( cp.id ),
17568                 trans
17569           FROM
17570                 actor.org_unit_descendants(ans.id) d
17571                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17572                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
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.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$
17586 BEGIN
17587     IF staff IS TRUE THEN
17588         IF place > 0 THEN
17589             RETURN QUERY SELECT * FROM asset.staff_ou_record_copy_count( place, record );
17590         ELSE
17591             RETURN QUERY SELECT * FROM asset.staff_lasso_record_copy_count( -place, record );
17592         END IF;
17593     ELSE
17594         IF place > 0 THEN
17595             RETURN QUERY SELECT * FROM asset.opac_ou_record_copy_count( place, record );
17596         ELSE
17597             RETURN QUERY SELECT * FROM asset.opac_lasso_record_copy_count( -place, record );
17598         END IF;
17599     END IF;
17600
17601     RETURN;
17602 END;
17603 $f$ LANGUAGE PLPGSQL;
17604
17605 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$
17606 DECLARE
17607     ans RECORD;
17608     trans INT;
17609 BEGIN
17610     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;
17611
17612     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
17613         RETURN QUERY
17614         SELECT  ans.depth,
17615                 ans.id,
17616                 COUNT( av.id ),
17617                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17618                 COUNT( av.id ),
17619                 trans
17620           FROM
17621                 actor.org_unit_descendants(ans.id) d
17622                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17623                 JOIN asset.copy cp ON (cp.id = av.id)
17624                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
17625           GROUP BY 1,2,6;
17626
17627         IF NOT FOUND THEN
17628             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17629         END IF;
17630
17631     END LOOP;
17632
17633     RETURN;
17634 END;
17635 $f$ LANGUAGE PLPGSQL;
17636
17637 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$
17638 DECLARE
17639     ans RECORD;
17640     trans INT;
17641 BEGIN
17642     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;
17643
17644     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17645         RETURN QUERY
17646         SELECT  -1,
17647                 ans.id,
17648                 COUNT( av.id ),
17649                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17650                 COUNT( av.id ),
17651                 trans
17652           FROM
17653                 actor.org_unit_descendants(ans.id) d
17654                 JOIN asset.opac_visible_copies av ON (av.record = record AND av.circ_lib = d.id)
17655                 JOIN asset.copy cp ON (cp.id = av.id)
17656                 JOIN metabib.metarecord_source_map m ON (m.source = av.record)
17657           GROUP BY 1,2,6;
17658
17659         IF NOT FOUND THEN
17660             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17661         END IF;
17662
17663     END LOOP;
17664
17665     RETURN;
17666 END;
17667 $f$ LANGUAGE PLPGSQL;
17668
17669 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$
17670 DECLARE
17671     ans RECORD;
17672     trans INT;
17673 BEGIN
17674     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;
17675
17676     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
17677         RETURN QUERY
17678         SELECT  ans.depth,
17679                 ans.id,
17680                 COUNT( cp.id ),
17681                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17682                 COUNT( cp.id ),
17683                 trans
17684           FROM
17685                 actor.org_unit_descendants(ans.id) d
17686                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17687                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17688                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
17689           GROUP BY 1,2,6;
17690
17691         IF NOT FOUND THEN
17692             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17693         END IF;
17694
17695     END LOOP;
17696
17697     RETURN;
17698 END;
17699 $f$ LANGUAGE PLPGSQL;
17700
17701 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$
17702 DECLARE
17703     ans RECORD;
17704     trans INT;
17705 BEGIN
17706     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;
17707
17708     FOR ans IN SELECT u.org_unit AS id FROM actor.org_lasso_map AS u WHERE lasso = i_lasso LOOP
17709         RETURN QUERY
17710         SELECT  -1,
17711                 ans.id,
17712                 COUNT( cp.id ),
17713                 SUM( CASE WHEN cp.status IN (0,7,12) THEN 1 ELSE 0 END ),
17714                 COUNT( cp.id ),
17715                 trans
17716           FROM
17717                 actor.org_unit_descendants(ans.id) d
17718                 JOIN asset.copy cp ON (cp.circ_lib = d.id)
17719                 JOIN asset.call_number cn ON (cn.record = record AND cn.id = cp.call_number)
17720                 JOIN metabib.metarecord_source_map m ON (m.source = cn.record)
17721           GROUP BY 1,2,6;
17722
17723         IF NOT FOUND THEN
17724             RETURN QUERY SELECT ans.depth, ans.id, 0::BIGINT, 0::BIGINT, 0::BIGINT, trans;
17725         END IF;
17726
17727     END LOOP;
17728
17729     RETURN;
17730 END;
17731 $f$ LANGUAGE PLPGSQL;
17732
17733 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$
17734 BEGIN
17735     IF staff IS TRUE THEN
17736         IF place > 0 THEN
17737             RETURN QUERY SELECT * FROM asset.staff_ou_metarecord_copy_count( place, record );
17738         ELSE
17739             RETURN QUERY SELECT * FROM asset.staff_lasso_metarecord_copy_count( -place, record );
17740         END IF;
17741     ELSE
17742         IF place > 0 THEN
17743             RETURN QUERY SELECT * FROM asset.opac_ou_metarecord_copy_count( place, record );
17744         ELSE
17745             RETURN QUERY SELECT * FROM asset.opac_lasso_metarecord_copy_count( -place, record );
17746         END IF;
17747     END IF;
17748
17749     RETURN;
17750 END;
17751 $f$ LANGUAGE PLPGSQL;
17752
17753 -- No transaction is required
17754
17755 -- Triggers on the vandelay.queued_*_record tables delete entries from
17756 -- the associated vandelay.queued_*_record_attr tables based on the record's
17757 -- ID; create an index on that column to avoid sequential scans for each
17758 -- queued record that is deleted
17759 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
17760 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
17761
17762 -- Avoid sequential scans for queue retrieval operations by providing an
17763 -- index on the queue column
17764 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
17765 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
17766
17767 -- Start picking up call number label prefixes and suffixes
17768 -- from asset.copy_location
17769 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
17770 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
17771
17772 DROP VIEW auditor.asset_copy_lifecycle;
17773
17774 SELECT auditor.create_auditor_lifecycle( 'asset', 'copy' );
17775
17776 ALTER TABLE reporter.report RENAME COLUMN recurance TO recurrence;
17777
17778 -- Let's not break existing reports
17779 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
17780 UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
17781
17782 -- Need to recreate this view with DISTINCT calls to ARRAY_ACCUM, thus avoiding duplicated ISBN and ISSN values
17783 CREATE OR REPLACE VIEW reporter.old_super_simple_record AS
17784 SELECT  r.id,
17785     r.fingerprint,
17786     r.quality,
17787     r.tcn_source,
17788     r.tcn_value,
17789     FIRST(title.value) AS title,
17790     FIRST(author.value) AS author,
17791     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT publisher.value), ', ') AS publisher,
17792     ARRAY_TO_STRING(ARRAY_ACCUM( DISTINCT SUBSTRING(pubdate.value FROM $$\d+$$) ), ', ') AS pubdate,
17793     ARRAY_ACCUM( DISTINCT SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
17794     ARRAY_ACCUM( DISTINCT SUBSTRING(issn.value FROM $$^\S+$$) ) AS issn
17795   FROM  biblio.record_entry r
17796     LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
17797     LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag IN ('100','110','111') AND author.subfield = 'a')
17798     LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
17799     LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
17800     LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
17801     LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
17802   GROUP BY 1,2,3,4,5;
17803
17804 -- Correct the ISSN array definition for reporter.simple_record
17805
17806 CREATE OR REPLACE VIEW reporter.simple_record AS
17807 SELECT  r.id,
17808         s.metarecord,
17809         r.fingerprint,
17810         r.quality,
17811         r.tcn_source,
17812         r.tcn_value,
17813         title.value AS title,
17814         uniform_title.value AS uniform_title,
17815         author.value AS author,
17816         publisher.value AS publisher,
17817         SUBSTRING(pubdate.value FROM $$\d+$$) AS pubdate,
17818         series_title.value AS series_title,
17819         series_statement.value AS series_statement,
17820         summary.value AS summary,
17821         ARRAY_ACCUM( SUBSTRING(isbn.value FROM $$^\S+$$) ) AS isbn,
17822         ARRAY_ACCUM( REGEXP_REPLACE(issn.value, E'^\\S*(\\d{4})[-\\s](\\d{3,4}x?)', E'\\1 \\2') ) AS issn,
17823         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '650' AND subfield = 'a' AND record = r.id)) AS topic_subject,
17824         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '651' AND subfield = 'a' AND record = r.id)) AS geographic_subject,
17825         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '655' AND subfield = 'a' AND record = r.id)) AS genre,
17826         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '600' AND subfield = 'a' AND record = r.id)) AS name_subject,
17827         ARRAY((SELECT DISTINCT value FROM metabib.full_rec WHERE tag = '610' AND subfield = 'a' AND record = r.id)) AS corporate_subject,
17828         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
17829   FROM  biblio.record_entry r
17830         JOIN metabib.metarecord_source_map s ON (s.source = r.id)
17831         LEFT JOIN metabib.full_rec uniform_title ON (r.id = uniform_title.record AND uniform_title.tag = '240' AND uniform_title.subfield = 'a')
17832         LEFT JOIN metabib.full_rec title ON (r.id = title.record AND title.tag = '245' AND title.subfield = 'a')
17833         LEFT JOIN metabib.full_rec author ON (r.id = author.record AND author.tag = '100' AND author.subfield = 'a')
17834         LEFT JOIN metabib.full_rec publisher ON (r.id = publisher.record AND publisher.tag = '260' AND publisher.subfield = 'b')
17835         LEFT JOIN metabib.full_rec pubdate ON (r.id = pubdate.record AND pubdate.tag = '260' AND pubdate.subfield = 'c')
17836         LEFT JOIN metabib.full_rec isbn ON (r.id = isbn.record AND isbn.tag IN ('024', '020') AND isbn.subfield IN ('a','z'))
17837         LEFT JOIN metabib.full_rec issn ON (r.id = issn.record AND issn.tag = '022' AND issn.subfield = 'a')
17838         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')
17839         LEFT JOIN metabib.full_rec series_statement ON (r.id = series_statement.record AND series_statement.tag = '490' AND series_statement.subfield = 'a')
17840         LEFT JOIN metabib.full_rec summary ON (r.id = summary.record AND summary.tag = '520' AND summary.subfield = 'a')
17841   GROUP BY 1,2,3,4,5,6,7,8,9,10,11,12,13,14;
17842
17843 CREATE OR REPLACE FUNCTION reporter.disable_materialized_simple_record_trigger () RETURNS VOID AS $$
17844     DROP TRIGGER IF EXISTS zzz_update_materialized_simple_record_tgr ON metabib.real_full_rec;
17845 $$ LANGUAGE SQL;
17846
17847 CREATE OR REPLACE FUNCTION reporter.simple_rec_trigger () RETURNS TRIGGER AS $func$
17848 BEGIN
17849     IF TG_OP = 'DELETE' THEN
17850         PERFORM reporter.simple_rec_delete(NEW.id);
17851     ELSE
17852         PERFORM reporter.simple_rec_update(NEW.id);
17853     END IF;
17854
17855     RETURN NEW;
17856 END;
17857 $func$ LANGUAGE PLPGSQL;
17858
17859 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
17860
17861 ALTER TABLE extend_reporter.legacy_circ_count DROP CONSTRAINT legacy_circ_count_id_fkey;
17862
17863 CREATE INDEX asset_copy_note_owning_copy_idx ON asset.copy_note ( owning_copy );
17864
17865 UPDATE config.org_unit_setting_type
17866     SET view_perm = (SELECT id FROM permission.perm_list
17867         WHERE code = 'VIEW_CREDIT_CARD_PROCESSING' LIMIT 1)
17868     WHERE name LIKE 'credit.processor%' AND view_perm IS NULL;
17869
17870 UPDATE config.org_unit_setting_type
17871     SET update_perm = (SELECT id FROM permission.perm_list
17872         WHERE code = 'ADMIN_CREDIT_CARD_PROCESSING' LIMIT 1)
17873     WHERE name LIKE 'credit.processor%' AND update_perm IS NULL;
17874
17875 INSERT INTO config.org_unit_setting_type (name, label, description, datatype)
17876     VALUES (
17877         'opac.fully_compressed_serial_holdings',
17878         'OPAC: Use fully compressed serial holdings',
17879         'Show fully compressed serial holdings for all libraries at and below
17880         the current context unit',
17881         'bool'
17882     );
17883
17884 CREATE OR REPLACE FUNCTION authority.normalize_heading( TEXT ) RETURNS TEXT AS $func$
17885     use strict;
17886     use warnings;
17887
17888     use utf8;
17889     use MARC::Record;
17890     use MARC::File::XML (BinaryEncoding => 'UTF8');
17891     use UUID::Tiny ':std';
17892
17893     my $xml = shift() or return undef;
17894
17895     my $r;
17896
17897     # Prevent errors in XML parsing from blowing out ungracefully
17898     eval {
17899         $r = MARC::Record->new_from_xml( $xml );
17900         1;
17901     } or do {
17902        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
17903     };
17904
17905     if (!$r) {
17906        return 'BAD_MARCXML_' . create_uuid_as_string(UUID_MD5, $xml);
17907     }
17908
17909     # From http://www.loc.gov/standards/sourcelist/subject.html
17910     my $thes_code_map = {
17911         a => 'lcsh',
17912         b => 'lcshac',
17913         c => 'mesh',
17914         d => 'nal',
17915         k => 'cash',
17916         n => 'notapplicable',
17917         r => 'aat',
17918         s => 'sears',
17919         v => 'rvm',
17920     };
17921
17922     # Default to "No attempt to code" if the leader is horribly broken
17923     my $fixed_field = $r->field('008');
17924     my $thes_char = '|';
17925     if ($fixed_field) {
17926         $thes_char = substr($fixed_field->data(), 11, 1) || '|';
17927     }
17928
17929     my $thes_code = 'UNDEFINED';
17930
17931     if ($thes_char eq 'z') {
17932         # Grab the 040 $f per http://www.loc.gov/marc/authority/ad040.html
17933         $thes_code = $r->subfield('040', 'f') || 'UNDEFINED';
17934     } elsif ($thes_code_map->{$thes_char}) {
17935         $thes_code = $thes_code_map->{$thes_char};
17936     }
17937
17938     my $auth_txt = '';
17939     my $head = $r->field('1..');
17940     if ($head) {
17941         # Concatenate all of these subfields together, prefixed by their code
17942         # to prevent collisions along the lines of "Fiction, North Carolina"
17943         foreach my $sf ($head->subfields()) {
17944             $auth_txt .= '‡' . $sf->[0] . ' ' . $sf->[1];
17945         }
17946     }
17947
17948     # Perhaps better to parameterize the spi and pass as a parameter
17949     $auth_txt =~ s/'//go;
17950
17951     if ($auth_txt) {
17952         my $result = spi_exec_query("SELECT public.naco_normalize('$auth_txt') AS norm_text");
17953         my $norm_txt = $result->{rows}[0]->{norm_text};
17954         return $head->tag() . "_" . $thes_code . " " . $norm_txt;
17955     }
17956
17957     return 'NOHEADING_' . $thes_code . ' ' . create_uuid_as_string(UUID_MD5, $xml);
17958 $func$ LANGUAGE 'plperlu' IMMUTABLE;
17959
17960 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
17961 /**
17962 * Extract the authority heading, thesaurus, and NACO-normalized values
17963 * from an authority record. The primary purpose is to build a unique
17964 * index to defend against duplicated authority records from the same
17965 * thesaurus.
17966 */
17967 $$;
17968
17969 DROP INDEX authority.authority_record_unique_tcn;
17970 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
17971 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
17972
17973 DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
17974
17975 CREATE INDEX by_heading_and_thesaurus
17976     ON authority.record_entry (authority.normalize_heading(marc))
17977     WHERE deleted IS FALSE or deleted = FALSE
17978 ;
17979
17980 ALTER TABLE acq.provider_contact
17981         ALTER COLUMN name SET NOT NULL;
17982
17983 ALTER TABLE actor.stat_cat
17984         ADD COLUMN usr_summary BOOL NOT NULL DEFAULT FALSE;
17985
17986 -- Recreate some foreign keys that were somehow dropped, probably
17987 -- by some kind of cascade from an inherited table:
17988
17989 ALTER TABLE action.reservation_transit_copy
17990         ADD CONSTRAINT artc_tc_fkey FOREIGN KEY (target_copy)
17991                 REFERENCES booking.resource(id)
17992                 ON DELETE CASCADE
17993                 DEFERRABLE INITIALLY DEFERRED,
17994         ADD CONSTRAINT reservation_transit_copy_reservation_fkey FOREIGN KEY (reservation)
17995                 REFERENCES booking.reservation(id)
17996                 ON DELETE SET NULL
17997                 DEFERRABLE INITIALLY DEFERRED;
17998
17999 CREATE INDEX user_bucket_item_target_user_idx
18000         ON container.user_bucket_item ( target_user );
18001
18002 CREATE INDEX m_c_t_collector_idx
18003         ON money.collections_tracker ( collector );
18004
18005 CREATE INDEX aud_actor_usr_address_hist_id_idx
18006         ON auditor.actor_usr_address_history ( id );
18007
18008 CREATE INDEX aud_actor_usr_hist_id_idx
18009         ON auditor.actor_usr_history ( id );
18010
18011 CREATE INDEX aud_asset_cn_hist_creator_idx
18012         ON auditor.asset_call_number_history ( creator );
18013
18014 CREATE INDEX aud_asset_cn_hist_editor_idx
18015         ON auditor.asset_call_number_history ( editor );
18016
18017 CREATE INDEX aud_asset_cp_hist_creator_idx
18018         ON auditor.asset_copy_history ( creator );
18019
18020 CREATE INDEX aud_asset_cp_hist_editor_idx
18021         ON auditor.asset_copy_history ( editor );
18022
18023 CREATE INDEX aud_bib_rec_entry_hist_creator_idx
18024         ON auditor.biblio_record_entry_history ( creator );
18025
18026 CREATE INDEX aud_bib_rec_entry_hist_editor_idx
18027         ON auditor.biblio_record_entry_history ( editor );
18028
18029 COMMIT;
18030
18031 -- Some operations go outside of the transaction, because they may
18032 -- legitimately fail.
18033
18034 \qecho ALTERs of auditor.action_hold_request_history will fail if the table
18035 \qecho doesn't exist; ignore those errors if they occur.
18036
18037 ALTER TABLE auditor.action_hold_request_history ADD COLUMN cut_in_line BOOL;
18038
18039 ALTER TABLE auditor.action_hold_request_history
18040 ADD COLUMN mint_condition boolean NOT NULL DEFAULT TRUE;
18041
18042 ALTER TABLE auditor.action_hold_request_history
18043 ADD COLUMN shelf_expire_time TIMESTAMPTZ;
18044
18045 \qecho Outside of the transaction: adding indexes that may or may not exist.
18046 \qecho If any of these CREATE INDEX statements fails because the index already
18047 \qecho exists, ignore the failure.
18048
18049 CREATE INDEX serial_subscription_record_idx ON serial.subscription (record_entry);
18050 CREATE INDEX serial_subscription_owner_idx ON serial.subscription (owning_lib);
18051 CREATE INDEX serial_caption_and_pattern_sub_idx ON serial.caption_and_pattern (subscription);
18052 CREATE INDEX serial_distribution_sub_idx ON serial.distribution (subscription);
18053 CREATE INDEX serial_distribution_holding_lib_idx ON serial.distribution (holding_lib);
18054 CREATE INDEX serial_distribution_note_dist_idx ON serial.distribution_note (distribution);
18055 CREATE INDEX serial_stream_dist_idx ON serial.stream (distribution);
18056 CREATE INDEX serial_routing_list_user_stream_idx ON serial.routing_list_user (stream);
18057 CREATE INDEX serial_routing_list_user_reader_idx ON serial.routing_list_user (reader);
18058 CREATE INDEX serial_issuance_sub_idx ON serial.issuance (subscription);
18059 CREATE INDEX serial_issuance_caption_and_pattern_idx ON serial.issuance (caption_and_pattern);
18060 CREATE INDEX serial_issuance_date_published_idx ON serial.issuance (date_published);
18061 CREATE UNIQUE INDEX unit_barcode_key ON serial.unit (barcode) WHERE deleted = FALSE OR deleted IS FALSE;
18062 CREATE INDEX unit_cn_idx ON serial.unit (call_number);
18063 CREATE INDEX unit_avail_cn_idx ON serial.unit (call_number);
18064 CREATE INDEX unit_creator_idx  ON serial.unit ( creator );
18065 CREATE INDEX unit_editor_idx   ON serial.unit ( editor );
18066 CREATE INDEX serial_item_stream_idx ON serial.item (stream);
18067 CREATE INDEX serial_item_issuance_idx ON serial.item (issuance);
18068 CREATE INDEX serial_item_unit_idx ON serial.item (unit);
18069 CREATE INDEX serial_item_uri_idx ON serial.item (uri);
18070 CREATE INDEX serial_item_date_received_idx ON serial.item (date_received);
18071 CREATE INDEX serial_item_status_idx ON serial.item (status);
18072 CREATE INDEX serial_item_note_item_idx ON serial.item_note (item);
18073 CREATE INDEX serial_basic_summary_dist_idx ON serial.basic_summary (distribution);
18074 CREATE INDEX serial_supplement_summary_dist_idx ON serial.supplement_summary (distribution);
18075 CREATE INDEX serial_index_summary_dist_idx ON serial.index_summary (distribution);
18076
18077 CREATE INDEX actor_card_barcode_lower_idx ON actor.card (lower(barcode));
18078
18079 \qecho if the following CREATE INDEX fails, It will be necessary to do some
18080 \qecho data cleanup as described in the comments.
18081
18082 -- If the unique index fails, uncomment the following to create
18083 -- a regular index that will help find the duplicates in a hurry:
18084 --CREATE INDEX by_heading_and_thesaurus
18085 --    ON authority.record_entry (authority.normalize_heading(marc))
18086 --    WHERE deleted IS FALSE or deleted = FALSE
18087 --;
18088
18089 -- Then find the duplicates like so to get an idea of how much
18090 -- pain you're looking at to clean things up:
18091 --SELECT id, authority.normalize_heading(marc)
18092 --    FROM authority.record_entry
18093 --    WHERE authority.normalize_heading(marc) IN (
18094 --        SELECT authority.normalize_heading(marc)
18095 --        FROM authority.record_entry
18096 --        GROUP BY authority.normalize_heading(marc)
18097 --        HAVING COUNT(*) > 1
18098 --    )
18099 --;
18100
18101 -- Once you have removed the duplicates and the CREATE UNIQUE INDEX
18102 -- statement succeeds, drop the temporary index to avoid unnecessary
18103 -- duplication:
18104 -- DROP INDEX authority.by_heading_and_thesaurus;
18105
18106 \qecho Upgrade script completed.